Gestion de personnage et de pool de personnage en javascript vanilla
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213141516
  1. if( typeof characters === "undefined" )
  2. var characters = new Characters();
  3. /*characters.createSamourai( "bushi", "f", "", "sons of the mountain tribe", "mirumoto bushi", 0, 0, { "knives" : 2 }) ;
  4. characters.createSamourai( "bushi", "f", "", "sons of the mountain tribe", "mirumoto bushi", 0, 0, { "swordwanship" : 2 }) ;
  5. characters.createSamourai( "bushi", "f", "", "sons of the mountain tribe", "mirumoto bushi", 0, 0, { "crossbow" : 2 }) ;
  6. characters.createSamourai( "bushi", "f", "", "daughters of the flame", "mirumoto bushi", 0, 0, { "crossbow" : 2 }) ;
  7. */
  8. /*characters.createPeople( "f", "smith staff", "shokunin", "craftman", { "staves" : 2 });
  9. characters.createPeople( "f", "smith knives", "shokunin", "craftman", { "knives" : 2 });
  10. characters.createPeople( "f", "smith browler", "shokunin", "craftman", { "jiujtsu" : 2 });
  11. characters.createPeople( "f", "smith spear", "shokunin", "craftman", { "spear" : 2 });
  12. */
  13. /* Topaze */
  14. characters.createPeople( "f", "z", "shokunin", "craftman", { "z_fist" : 2 });