暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

card_data_example.js 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. var card_data = [
  2. {
  3. "count": 1,
  4. "color": "maroon",
  5. "title": "Burning Hands",
  6. "icon": "custom-spell-1",
  7. "icon_back": "custom-class-arcane",
  8. "contents": [
  9. "subtitle | 1st level evocation",
  10. "rule",
  11. "property | Casting time | 1 action",
  12. "property | Range | Self (15ft cone)",
  13. "property | Components | V,S",
  14. "rule",
  15. "fill-2",
  16. "text | Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes <b>3d6 fire damage</b> on a failed save, or half as much damage on a successful one.",
  17. "text | The fire ignites any flammable objects in the area that aren’t being worn or carried.",
  18. "fill-3",
  19. "section | At higher levels",
  20. "text | +1d6 damage for each slot above 1st"
  21. ]
  22. },
  23. {
  24. "count": 1,
  25. "color": "indigo",
  26. "title": "Cunning Action",
  27. "icon": "custom-spell",
  28. "icon_back": "custom-class-rogue",
  29. "contents": [
  30. "subtitle | Rogue feature",
  31. "rule",
  32. "fill-2",
  33. "text | You can take a <b>bonus action on each of your turns</b> in combat. This action can be used only to take the <b>Dash, Disengage, or Hide</b> action.",
  34. "fill-3",
  35. "section | Fast hands (Thief 3rd)",
  36. "text | You can also use the bonus action to make a Dexterity (<b>Sleight of Hand</b>) check, use your thieves’ tools to <b>disarm a trap</b> or <b>open a lock</b>, or take the <b>Use an Object</b> action.",
  37. ]
  38. },
  39. {
  40. "count": 1,
  41. "color": "dimgray",
  42. "title": "Full Plate",
  43. "icon": "custom-armor-heavy",
  44. "contents": [
  45. "subtitle | Heavy armor (1500gp)",
  46. "rule",
  47. "property | AC | 18",
  48. "property | Strength required | 15",
  49. "property | Stealth | Disadvantage",
  50. "rule",
  51. "fill-2",
  52. "description | Heavy | Unless you have the required strength, your speed is reduced by 10 feet.",
  53. "description | Stealth | You have disadvantage on Dexterity (Stealth) checks.",
  54. "fill-3"
  55. ]
  56. },
  57. {
  58. "count": 1,
  59. "color": "dimgray",
  60. "title": "Dagger",
  61. "icon": "custom-swordarrow",
  62. "contents": [
  63. "subtitle | Simple melee weapon (2gp)",
  64. "rule",
  65. "property | Damage | 1d4 piercing",
  66. "property | Modifier | Strength or Dexterity",
  67. "property | Properties | Light, Finesse, Thrown (20/60)",
  68. "rule",
  69. "fill-2",
  70. "description | Finesse | Use your choice of Strength or Dexterity modifier for attack and damage.",
  71. "description | Light | When you attack while dual wielding light weapons, you may use a bonus action to attack with your off hand.",
  72. "description | Thrown | You can throw the weapon to make a ranged attack with the given range.",
  73. "fill-3"
  74. ]
  75. },
  76. {
  77. "count": 1,
  78. "color": "dimgray",
  79. "title": "Shortsword",
  80. "icon": "custom-swords",
  81. "contents": [
  82. "subtitle | Simple melee weapon (10gp)",
  83. "rule",
  84. "property | Damage | 1d6 piercing",
  85. "property | Modifier | Strength or Dexterity",
  86. "property | Properties | Light, Finesse",
  87. "rule",
  88. "fill-2",
  89. "description | Finesse | Use your choice of Strength or Dexterity modifier for attack and damage.",
  90. "description | Light | When you attack while dual wielding light weapons, you may use a bonus action to attack with your off hand.",
  91. "fill-3"
  92. ]
  93. },
  94. {
  95. "count": 1,
  96. "color": "dimgray",
  97. "title": "Wand of Magic Missiles",
  98. "icon": "custom-wand",
  99. "contents": [
  100. "subtitle | Wondrous item",
  101. "rule",
  102. "property | Maximum charges | 7",
  103. "property | Recharge | 1d6+1 each day",
  104. "property | Depletion | If you expend the last charge, roll a d20. On a 1, the item is destroyed.",
  105. "rule",
  106. "fill-2",
  107. "description | Spells | You can use your action to cast the following spells:",
  108. "text | - magic missile, 1st level (1 charge)",
  109. "text | - magic missile, 2nd level (2 charges)",
  110. "text | - magic missile, 3rd level (3 charges)",
  111. "fill-3"
  112. ]
  113. },
  114. {
  115. "count": 2,
  116. "color": "dimgray",
  117. "title": "Potion of Healing",
  118. "icon": "custom-potion",
  119. "contents": [
  120. "subtitle | Potion (50gp)",
  121. "rule",
  122. "property | Use time | 1 action",
  123. "property | Hit points restored | 2d4+2",
  124. "rule",
  125. "fill-2",
  126. "text | When you drink this potion, you regain 2d4+2 hitpoints.",
  127. "text | Drinking or administering a potion takes 1 action.",
  128. "fill-3"
  129. ]
  130. }
  131. ];