matthileo

Untitled

May 4th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.71 KB | None | 0 0
  1. !! echo "";
  2.  
  3. newline = "
  4. ";
  5.  
  6. comment = " !table create me bonus ";
  7. comment = " !table create me text ";
  8. comment = " !table create me level ";
  9. comment = " !table create me feature ";
  10. comment = " !table create me ability ";
  11. comment = " !table create me phrase ";
  12. comment = " !table create me weapon ";
  13.  
  14. user.level["warlock"]=3;
  15. user.level["rogue"]=4;
  16. user.level["total"] = user.level["warlock"] + "+" + user.level["rogue"];
  17.  
  18. user.bonus["str"] = "-1";
  19. user.bonus["con"] = 1;
  20. user.bonus["int"] = 1;
  21. user.bonus["wis"] = 0;
  22. user.bonus["cha"] = 4;
  23. user.bonus["dex"] = 4;
  24. user.bonus["death"] = 0;
  25.  
  26. user.bonus["prof"] = 3;
  27. user.bonus["skills"] = 0;
  28. user.bonus["saves"] = 1;
  29.  
  30. user.feature["sneakAttackDice"]=2;
  31. user.feature["warlockSlotLevel"]=2;
  32. user.feature["cantripDice"]=2;
  33.  
  34. user.ability["acrobatics"] = user.bonus["dex"] + "+" + user.bonus["prof"]*2;
  35. user.ability["animal"] = user.bonus["wis"];
  36. user.ability["arcana"] = user.bonus["int"];
  37. user.ability["athletics"] = user.bonus["str"] + "+" + user.bonus["prof"]*2;
  38. user.ability["deception"] = user.bonus["cha"] + "+" + user.bonus["prof"];
  39. user.ability["history"] = user.bonus["int"];
  40. user.ability["insight"] = user.bonus["wis"] + "+" + user.bonus["prof"];
  41. user.ability["intimidation"] = user.bonus["cha"];
  42. user.ability["investigation"] = user.bonus["int"] + "+" + user.bonus["prof"];
  43. user.ability["medicine"] = user.bonus["wis"];
  44. user.ability["nature"] = user.bonus["int"];
  45. user.ability["perception"] = user.bonus["wis"] + "+" + user.bonus["prof"];
  46. user.ability["performance"] = user.bonus["cha"];
  47. user.ability["persuasion"] = user.bonus["cha"] + "+" + user.bonus["prof"];
  48. user.ability["religion"] = user.bonus["int"];
  49. user.ability["sleight"] = user.bonus["dex"];
  50. user.ability["stealth"] = user.bonus["dex"] + "+" + user.bonus["prof"];
  51. user.ability["survival"] = user.bonus["wis"];
  52. user.ability["str"] = user.bonus["str"];
  53. user.ability["con"] = user.bonus["con"];
  54. user.ability["int"] = user.bonus["int"];
  55. user.ability["wis"] = user.bonus["wis"];
  56. user.ability["cha"] = user.bonus["cha"];
  57. user.ability["dex"] = user.bonus["dex"];
  58. user.ability["init"] = user.bonus["dex"] + "+" + user.bonus["cha"];
  59. user.ability["initiative"] = user.ability["init"];
  60. user.ability["thief"] = user.bonus["dex"] + "+" + user.bonus["prof"];
  61. user.ability["poison"] = user.bonus["int"];
  62.  
  63. user.text["str"] = "Strength";
  64. user.text["con"] = "Constitution";
  65. user.text["int"] = "Intelligence";
  66. user.text["wis"] = "Wisdom";
  67. user.text["cha"] = "Charisma";
  68. user.text["dex"] = "Dexterity";
  69. user.text["death"] = "Death";
  70.  
  71. user.text["prof"] = "Proficiency";
  72. user.text["skills"] = "Skill Bonus";
  73. user.text["saves"] = "Saving Throw Bonus";
  74.  
  75. user.text["acrobatics"] = "Acrobatics";
  76. user.text["animal"] = "Animal Handling";
  77. user.text["arcana"] = "Arcana";
  78. user.text["athletics"] = "Athletics";
  79. user.text["deception"] = "Deception";
  80. user.text["history"] = "History";
  81. user.text["insight"] = "Insight";
  82. user.text["intimidation"] = "Intimidation";
  83. user.text["investigation"] = "Investigation";
  84. user.text["medicine"] = "Medicine";
  85. user.text["nature"] = "Nature";
  86. user.text["perception"] = "Perception";
  87. user.text["performance"] = "Performance";
  88. user.text["persuasion"] = "Persuasion";
  89. user.text["religion"] = "Religion";
  90. user.text["sleight"] = "Sleight of Hand";
  91. user.text["stealth"] = "Stealth";
  92. user.text["survival"] = "Survival";
  93. user.text["init"] = "Initiative";
  94. user.text["initiative"] = "Initiative";
  95. user.text["thief"] = "Thieves' Tools";
  96. user.text["poison"] = "Poisoner's Kit";
  97.  
  98. user.weapon["sword dice"] = 1;
  99. user.weapon["sword size"] = 8;
  100. user.weapon["sword type"] = "Slashing";
  101. user.weapon["sword ability"] = "dex";
  102. user.weapon["sword phrase"] = "Matthileo's shadow sword slices silently though the air at ";
  103.  
  104. user.weapon["longsword dice"] = 1;
  105. user.weapon["longsword size"] = 10;
  106. user.weapon["longsword type"] = "Slashing";
  107. user.weapon["longsword ability"] = "str";
  108. user.weapon["longsword phrase"] = "Matthileo's shadow sword slices though the air at ";
  109.  
  110. user.weapon["greatsword dice"] = 2;
  111. user.weapon["greatsword size"] = 6;
  112. user.weapon["greatsword type"] = "Slashing";
  113. user.weapon["greatsword ability"] = "str";
  114. user.weapon["greatsword phrase"] = "Matthileo has trouble swinging the massive black sword at ";
  115.  
  116. user.weapon["rapier dice"] = 1;
  117. user.weapon["rapier size"] = 8;
  118. user.weapon["rapier type"] = "Slashing";
  119. user.weapon["rapier ability"] = "dex";
  120. user.weapon["rapier phrase"] = "Matthileo thrusts the tip of his shadowy sword into ";
  121.  
  122. user.weapon["shortsword dice"] = 1;
  123. user.weapon["shortsword size"] = 6;
  124. user.weapon["shortsword type"] = "Piercing";
  125. user.weapon["shortsword ability"] = "dex";
  126. user.weapon["shortsword phrase"] = "Matthileo thrusts the tip of his shadowy sword into ";
  127.  
  128. user.weapon["scimitar dice"] = 1;
  129. user.weapon["scimitar size"] = 6;
  130. user.weapon["scimitar type"] = "Slashing";
  131. user.weapon["scimitar ability"] = "dex";
  132. user.weapon["scimitar phrase"] = "Matthileo's shadow sword slices silently though the air at ";
  133.  
  134. user.weapon["dagger dice"] = 1;
  135. user.weapon["dagger size"] = 4;
  136. user.weapon["dagger type"] = "Piercing";
  137. user.weapon["dagger ability"] = "dex";
  138. user.weapon["dagger phrase"] = "Matthileo sends the point of his shadowy weapon straight at ";
  139.  
  140. user.weapon["whip dice"] = 1;
  141. user.weapon["whip size"] = 4;
  142. user.weapon["whip type"] = "Slashing";
  143. user.weapon["whip ability"] = "dex";
  144. user.weapon["whip phrase"] = "Matthileo slashes at the air, a wave of shadow lashing out at ";
  145.  
  146. user.weapon["hammer dice"] = 1;
  147. user.weapon["hammer size"] = 10;
  148. user.weapon["hammer type"] = "Bludgeoning";
  149. user.weapon["hammer ability"] = "str";
  150. user.weapon["hammer phrase"] = "Matthileo smashes his blunted sword into ";
  151.  
  152. echo "Character Matthileo has been set up..."
Add Comment
Please, Sign In to add comment