Build MVP: campaigns, characters, combat, dice, compendium
- Rules abstraction (5e + pf2e) behind one interface, fully tested - Pure combat engine: turn-order safe across add/remove/reorder/init-change - Dexie storage with real cascade deletes + Zod validation on write - Seedable dice engine with notation parser - Lazy SRD compendium (code-split), bestiary -> combat - Strict TS, 54 unit tests, Playwright e2e smoke (all green) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
[
|
||||
{
|
||||
"name": "Attack",
|
||||
"description": "The most common action to take in combat is the Attack action, whether you are swinging a sword, firing an arrow from a bow, or brawling with your fists. With this action, you make one melee or ranged attack.",
|
||||
"features": [
|
||||
"Certain features, such as the Extra Attack feature of the fighter, allow you to make more than one attack with this action."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Cast a Spell",
|
||||
"description": "Spellcasters such as wizards and clerics, as well as many monsters, have access to spells and can use them to great effect in combat. Each spell has a casting time, which specifies whether the caster must use an action, a reaction, minutes, or even hours to cast the spell.",
|
||||
"features": [
|
||||
"Casting a spell is, therefore, not necessarily an action. Most spells do have a casting time of 1 action, so a spellcaster often uses his or her action in combat to cast such a spell."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Dash",
|
||||
"description": "When you take the Dash action, you gain extra movement for the current turn. The increase equals your speed, after applying any modifiers. With a speed of 30 feet, for example, you can move up to 60 feet on your turn if you dash.",
|
||||
"features": [
|
||||
"Any increase or decrease to your speed changes this additional movement by the same amount. If your speed of 30 feet is reduced to 15 feet, for instance, you can move up to 30 feet this turn if you dash."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Disengage",
|
||||
"description": "If you take the Disengage action, your movement doesn't provoke opportunity attacks for the rest of the turn.",
|
||||
"features": []
|
||||
},
|
||||
{
|
||||
"name": "Dodge",
|
||||
"description": "When you take the Dodge action, you focus entirely on avoiding attacks. Until the start of your next turn, any attack roll made against you has disadvantage if you can see the attacker, and you make Dexterity saving throws with advantage.",
|
||||
"features": [
|
||||
"You lose this benefit if you are incapacitated or if your speed drops to 0."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Help",
|
||||
"description": "You can lend your aid to another creature in the completion of a task. When you take the Help action, the creature you aid gains advantage on the next ability check it makes to perform the task you are helping with, provided that it makes the check before the start of your next turn.",
|
||||
"features": [
|
||||
"Alternatively, you can aid a friendly creature in attacking a creature within 5 feet of you. You feint, distract the target, or in some other way team up to make your ally's attack more effective. If your ally attacks the target before your next turn, the first attack roll is made with advantage."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Hide",
|
||||
"description": "When you take the Hide action, you make a Dexterity (Stealth) check in an attempt to hide, following the rules for hiding. If you succeed, you gain certain benefits, as described in the 'Unseen Attackers and Targets' section.",
|
||||
"features": []
|
||||
},
|
||||
{
|
||||
"name": "Ready",
|
||||
"description": "Sometimes you want to get the jump on a foe or wait for a particular circumstance before you act. To do so, you can take the Ready action on your turn, which lets you act using your reaction before the start of your next turn.",
|
||||
"features": [
|
||||
"First, you decide what perceivable circumstance will trigger your reaction. Then, you choose the action you will take in response to that trigger, or you choose to move up to your speed in response to it.",
|
||||
"When the trigger occurs, you can either take your reaction right after the trigger finishes or ignore the trigger. Remember that you can take only one reaction per round.",
|
||||
"When you ready a spell, you cast it as normal but hold its energy, which you release with your reaction when the trigger occurs. To be readied, a spell must have a casting time of 1 action, and holding onto the spell's magic requires concentration."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Search",
|
||||
"description": "When you take the Search action, you devote your attention to finding something. Depending on the nature of your search, the DM might have you make a Wisdom (Perception) check or an Intelligence (Investigation) check.",
|
||||
"features": []
|
||||
},
|
||||
{
|
||||
"name": "Use an Object",
|
||||
"description": "You normally interact with an object while doing something else, such as when you draw a sword as part of an attack. When an object requires your action for its use, you take the Use an Object action.",
|
||||
"features": [
|
||||
"This action is also useful when you want to interact with more than one object on your turn."
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,119 @@
|
||||
[
|
||||
{
|
||||
"name": "Blinded",
|
||||
"description": "A blinded creature can't see and automatically fails any ability check that requires sight.",
|
||||
"effects": [
|
||||
"Attack rolls against the creature have advantage, and the creature's attack rolls have disadvantage."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Charmed",
|
||||
"description": "A charmed creature can't attack the charmer or target the charmer with harmful abilities or magical effects.",
|
||||
"effects": [
|
||||
"The charmer has advantage on any ability check to interact socially with the creature."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Deafened",
|
||||
"description": "A deafened creature can't hear and automatically fails any ability check that requires hearing.",
|
||||
"effects": []
|
||||
},
|
||||
{
|
||||
"name": "Exhaustion",
|
||||
"description": "Some special abilities and environmental hazards, such as starvation and the long-term effects of freezing or scorching temperatures, can lead to a special condition called exhaustion. Exhaustion is measured in six levels. An effect can give a creature one or more levels of exhaustion.",
|
||||
"effects": [
|
||||
"Level 1: Disadvantage on ability checks",
|
||||
"Level 2: Speed halved",
|
||||
"Level 3: Disadvantage on attack rolls and saving throws",
|
||||
"Level 4: Hit point maximum halved",
|
||||
"Level 5: Speed reduced to 0",
|
||||
"Level 6: Death"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Frightened",
|
||||
"description": "A frightened creature has disadvantage on ability checks and attack rolls while the source of its fear is within line of sight.",
|
||||
"effects": [
|
||||
"The creature can't willingly move closer to the source of its fear."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Grappled",
|
||||
"description": "A grappled creature's speed becomes 0, and it can't benefit from any bonus to its speed.",
|
||||
"effects": [
|
||||
"The condition ends if the grappler is incapacitated.",
|
||||
"The condition also ends if an effect removes the grappled creature from the reach of the grappler or grappling effect, such as when a creature is hurled away by the thunderwave spell."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Incapacitated",
|
||||
"description": "An incapacitated creature can't take actions or reactions.",
|
||||
"effects": []
|
||||
},
|
||||
{
|
||||
"name": "Invisible",
|
||||
"description": "An invisible creature is impossible to see without the aid of magic or a special sense. For the purpose of hiding, the creature is heavily obscured. The creature's location can be detected by any noise it makes or any tracks it leaves.",
|
||||
"effects": [
|
||||
"Attack rolls against the creature have disadvantage, and the creature's attack rolls have advantage."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Paralyzed",
|
||||
"description": "A paralyzed creature is incapacitated and can't move or speak.",
|
||||
"effects": [
|
||||
"The creature automatically fails Strength and Dexterity saving throws.",
|
||||
"Attack rolls against the creature have advantage.",
|
||||
"Any attack that hits the creature is a critical hit if the attacker is within 5 feet of the creature."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Petrified",
|
||||
"description": "A petrified creature is transformed, along with any nonmagical object it is wearing or carrying, into a solid inanimate substance (usually stone). Its weight increases by a factor of ten, and it ceases aging.",
|
||||
"effects": [
|
||||
"The creature is incapacitated, can't move or speak, and is unaware of its surroundings.",
|
||||
"Attack rolls against the creature have advantage.",
|
||||
"The creature automatically fails Strength and Dexterity saving throws.",
|
||||
"The creature has resistance to all damage.",
|
||||
"The creature is immune to poison and disease, although a poison or disease already in its system is suspended, not neutralized."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Poisoned",
|
||||
"description": "A poisoned creature has disadvantage on attack rolls and ability checks.",
|
||||
"effects": []
|
||||
},
|
||||
{
|
||||
"name": "Prone",
|
||||
"description": "A prone creature's only movement option is to crawl, unless it stands up and thereby ends the condition.",
|
||||
"effects": [
|
||||
"The creature has disadvantage on attack rolls.",
|
||||
"An attack roll against the creature has advantage if the attacker is within 5 feet of the creature. Otherwise, the attack roll has disadvantage."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Restrained",
|
||||
"description": "A restrained creature's speed becomes 0, and it can't benefit from any bonus to its speed.",
|
||||
"effects": [
|
||||
"Attack rolls against the creature have advantage, and the creature's attack rolls have disadvantage.",
|
||||
"The creature has disadvantage on Dexterity saving throws."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Stunned",
|
||||
"description": "A stunned creature is incapacitated, can't move, and can speak only falteringly.",
|
||||
"effects": [
|
||||
"The creature automatically fails Strength and Dexterity saving throws.",
|
||||
"Attack rolls against the creature have advantage."
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Unconscious",
|
||||
"description": "An unconscious creature is incapacitated, can't move or speak, and is unaware of its surroundings.",
|
||||
"effects": [
|
||||
"The creature drops whatever it's holding and falls prone.",
|
||||
"The creature automatically fails Strength and Dexterity saving throws.",
|
||||
"Attack rolls against the creature have advantage.",
|
||||
"Any attack that hits the creature is a critical hit if the attacker is within 5 feet of the creature."
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"armor": [
|
||||
{ "name": "Padded", "type": "Light", "ac": "11 + Dex", "dexCap": null, "stealthPenalty": true, "weight": 8, "cost": "5 gp" },
|
||||
{ "name": "Leather", "type": "Light", "ac": "11 + Dex", "dexCap": null, "stealthPenalty": false, "weight": 10, "cost": "10 gp" },
|
||||
{ "name": "Studded Leather", "type": "Light", "ac": "12 + Dex", "dexCap": null, "stealthPenalty": false, "weight": 13, "cost": "45 gp" },
|
||||
{ "name": "Hide", "type": "Medium", "ac": "12 + Dex (max 2)", "dexCap": 2, "stealthPenalty": false, "weight": 12, "cost": "10 gp" },
|
||||
{ "name": "Chain Shirt", "type": "Medium", "ac": "13 + Dex (max 2)", "dexCap": 2, "stealthPenalty": false, "weight": 20, "cost": "50 gp" },
|
||||
{ "name": "Scale Mail", "type": "Medium", "ac": "14 + Dex (max 2)", "dexCap": 2, "stealthPenalty": true, "weight": 45, "cost": "50 gp" },
|
||||
{ "name": "Breastplate", "type": "Medium", "ac": "14 + Dex (max 2)", "dexCap": 2, "stealthPenalty": false, "weight": 20, "cost": "400 gp" },
|
||||
{ "name": "Half Plate", "type": "Medium", "ac": "15 + Dex (max 2)", "dexCap": 2, "stealthPenalty": true, "weight": 40, "cost": "750 gp" },
|
||||
{ "name": "Ring Mail", "type": "Heavy", "ac": "14", "dexCap": 0, "stealthPenalty": true, "weight": 40, "cost": "30 gp" },
|
||||
{ "name": "Chain Mail", "type": "Heavy", "ac": "16", "dexCap": 0, "stealthPenalty": true, "weight": 55, "cost": "75 gp", "minStr": 13 },
|
||||
{ "name": "Splint", "type": "Heavy", "ac": "17", "dexCap": 0, "stealthPenalty": true, "weight": 60, "cost": "200 gp", "minStr": 15 },
|
||||
{ "name": "Plate", "type": "Heavy", "ac": "18", "dexCap": 0, "stealthPenalty": true, "weight": 65, "cost": "1,500 gp", "minStr": 15 },
|
||||
{ "name": "Shield", "type": "Shield", "ac": "+2", "dexCap": null, "stealthPenalty": false, "weight": 6, "cost": "10 gp" }
|
||||
],
|
||||
"weapons": [
|
||||
{ "name": "Club", "type": "Simple Melee", "damage": "1d4", "damageType": "bludgeoning", "properties": "Light", "weight": 2, "cost": "1 sp" },
|
||||
{ "name": "Dagger", "type": "Simple Melee", "damage": "1d4", "damageType": "piercing", "properties": "Finesse, light, thrown (20/60)", "weight": 1, "cost": "2 gp" },
|
||||
{ "name": "Quarterstaff", "type": "Simple Melee", "damage": "1d6", "damageType": "bludgeoning", "properties": "Versatile (1d8)", "weight": 4, "cost": "2 sp" },
|
||||
{ "name": "Shortbow", "type": "Simple Ranged", "damage": "1d6", "damageType": "piercing", "properties": "Ammunition (80/320), two-handed", "weight": 2, "cost": "25 gp" },
|
||||
{ "name": "Longsword", "type": "Martial Melee", "damage": "1d8", "damageType": "slashing", "properties": "Versatile (1d10)", "weight": 3, "cost": "15 gp" },
|
||||
{ "name": "Rapier", "type": "Martial Melee", "damage": "1d8", "damageType": "piercing", "properties": "Finesse", "weight": 2, "cost": "25 gp" },
|
||||
{ "name": "Greataxe", "type": "Martial Melee", "damage": "1d12", "damageType": "slashing", "properties": "Heavy, two-handed", "weight": 7, "cost": "30 gp" },
|
||||
{ "name": "Greatsword", "type": "Martial Melee", "damage": "2d6", "damageType": "slashing", "properties": "Heavy, two-handed", "weight": 6, "cost": "50 gp" },
|
||||
{ "name": "Longbow", "type": "Martial Ranged", "damage": "1d8", "damageType": "piercing", "properties": "Ammunition (150/600), heavy, two-handed", "weight": 2, "cost": "50 gp" },
|
||||
{ "name": "Light Crossbow", "type": "Simple Ranged", "damage": "1d8", "damageType": "piercing", "properties": "Ammunition (80/320), loading, two-handed", "weight": 5, "cost": "25 gp" }
|
||||
]
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,592 @@
|
||||
[
|
||||
{
|
||||
"name": "Goblin",
|
||||
"size": "Small",
|
||||
"type": "humanoid (goblinoid)",
|
||||
"alignment": "neutral evil",
|
||||
"ac": 15,
|
||||
"acType": "leather armor, shield",
|
||||
"hp": 7,
|
||||
"hd": "2d6",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 8, "dex": 14, "con": 10, "int": 10, "wis": 8, "cha": 8 },
|
||||
"saves": {},
|
||||
"skills": { "Stealth": 6 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 9",
|
||||
"languages": "Common, Goblin",
|
||||
"cr": "1/4",
|
||||
"xp": 50,
|
||||
"traits": [
|
||||
{ "name": "Nimble Escape", "description": "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Scimitar", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage." },
|
||||
{ "name": "Shortbow", "description": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Kobold",
|
||||
"size": "Small",
|
||||
"type": "humanoid (kobold)",
|
||||
"alignment": "lawful evil",
|
||||
"ac": 12,
|
||||
"acType": "",
|
||||
"hp": 5,
|
||||
"hd": "2d6 - 2",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 7, "dex": 15, "con": 9, "int": 8, "wis": 7, "cha": 8 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 8",
|
||||
"languages": "Common, Draconic",
|
||||
"cr": "1/8",
|
||||
"xp": 25,
|
||||
"traits": [
|
||||
{ "name": "Sunlight Sensitivity", "description": "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight." },
|
||||
{ "name": "Pack Tactics", "description": "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't incapacitated." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Dagger", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage." },
|
||||
{ "name": "Sling", "description": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Orc",
|
||||
"size": "Medium",
|
||||
"type": "humanoid (orc)",
|
||||
"alignment": "chaotic evil",
|
||||
"ac": 13,
|
||||
"acType": "hide armor",
|
||||
"hp": 15,
|
||||
"hd": "2d8 + 6",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 16, "dex": 12, "con": 16, "int": 7, "wis": 11, "cha": 10 },
|
||||
"saves": {},
|
||||
"skills": { "Intimidation": 2 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 10",
|
||||
"languages": "Common, Orc",
|
||||
"cr": "1/2",
|
||||
"xp": 100,
|
||||
"traits": [
|
||||
{ "name": "Aggressive", "description": "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Greataxe", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage." },
|
||||
{ "name": "Javelin", "description": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Skeleton",
|
||||
"size": "Medium",
|
||||
"type": "undead",
|
||||
"alignment": "lawful evil",
|
||||
"ac": 13,
|
||||
"acType": "armor scraps",
|
||||
"hp": 13,
|
||||
"hd": "2d8 + 4",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 10, "dex": 14, "con": 15, "int": 6, "wis": 8, "cha": 5 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "bludgeoning",
|
||||
"immunities": "poison",
|
||||
"conditionImmunities": "exhaustion, poisoned",
|
||||
"senses": "darkvision 60 ft., passive Perception 9",
|
||||
"languages": "understands all languages it knew in life but can't speak",
|
||||
"cr": "1/4",
|
||||
"xp": 50,
|
||||
"traits": [],
|
||||
"actions": [
|
||||
{ "name": "Shortsword", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage." },
|
||||
{ "name": "Shortbow", "description": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Zombie",
|
||||
"size": "Medium",
|
||||
"type": "undead",
|
||||
"alignment": "neutral evil",
|
||||
"ac": 8,
|
||||
"acType": "",
|
||||
"hp": 22,
|
||||
"hd": "3d8 + 9",
|
||||
"speed": "20 ft.",
|
||||
"abilities": { "str": 13, "dex": 6, "con": 16, "int": 3, "wis": 6, "cha": 5 },
|
||||
"saves": { "Wis": 0 },
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "poison",
|
||||
"conditionImmunities": "poisoned",
|
||||
"senses": "darkvision 60 ft., passive Perception 8",
|
||||
"languages": "understands all languages it knew in life but can't speak",
|
||||
"cr": "1/4",
|
||||
"xp": 50,
|
||||
"traits": [
|
||||
{ "name": "Undead Fortitude", "description": "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Slam", "description": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Giant Spider",
|
||||
"size": "Large",
|
||||
"type": "beast",
|
||||
"alignment": "unaligned",
|
||||
"ac": 14,
|
||||
"acType": "natural armor",
|
||||
"hp": 26,
|
||||
"hd": "4d10 + 4",
|
||||
"speed": "30 ft., climb 30 ft.",
|
||||
"abilities": { "str": 14, "dex": 16, "con": 12, "int": 2, "wis": 11, "cha": 4 },
|
||||
"saves": {},
|
||||
"skills": { "Stealth": 7 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "blindsight 10 ft., darkvision 60 ft., passive Perception 10",
|
||||
"languages": "—",
|
||||
"cr": "1",
|
||||
"xp": 200,
|
||||
"traits": [
|
||||
{ "name": "Spider Climb", "description": "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." },
|
||||
{ "name": "Web Sense", "description": "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." },
|
||||
{ "name": "Web Walker", "description": "The spider ignores movement restrictions caused by webbing." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Bite", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 7 (1d8 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 9 (2d8) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way." },
|
||||
{ "name": "Web (Recharge 5-6)", "description": "Ranged Weapon Attack: +5 to hit, range 30/60 ft., one creature. Hit: The target is restrained by webbing. As an action, the restrained target can make a DC 12 Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Owlbear",
|
||||
"size": "Large",
|
||||
"type": "monstrosity",
|
||||
"alignment": "unaligned",
|
||||
"ac": 13,
|
||||
"acType": "natural armor",
|
||||
"hp": 59,
|
||||
"hd": "7d10 + 21",
|
||||
"speed": "40 ft.",
|
||||
"abilities": { "str": 20, "dex": 12, "con": 17, "int": 3, "wis": 12, "cha": 7 },
|
||||
"saves": {},
|
||||
"skills": { "Perception": 3 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 13",
|
||||
"languages": "—",
|
||||
"cr": "3",
|
||||
"xp": 700,
|
||||
"traits": [
|
||||
{ "name": "Keen Sight and Smell", "description": "The owlbear has advantage on Wisdom (Perception) checks that rely on sight or smell." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Multiattack", "description": "The owlbear makes two attacks: one with its beak and one with its claws." },
|
||||
{ "name": "Beak", "description": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage." },
|
||||
{ "name": "Claws", "description": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Bugbear",
|
||||
"size": "Medium",
|
||||
"type": "humanoid (goblinoid)",
|
||||
"alignment": "chaotic evil",
|
||||
"ac": 16,
|
||||
"acType": "hide armor, shield",
|
||||
"hp": 27,
|
||||
"hd": "5d8 + 5",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 15, "dex": 14, "con": 13, "int": 8, "wis": 11, "cha": 9 },
|
||||
"saves": {},
|
||||
"skills": { "Stealth": 6, "Survival": 2 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 10",
|
||||
"languages": "Common, Goblin",
|
||||
"cr": "1",
|
||||
"xp": 200,
|
||||
"traits": [
|
||||
{ "name": "Brute", "description": "A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack)." },
|
||||
{ "name": "Surprise Attack", "description": "If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 (2d6) damage from the attack." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Morningstar", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage." },
|
||||
{ "name": "Javelin", "description": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee, or 5 (1d6 + 2) piercing damage at range." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Hobgoblin",
|
||||
"size": "Medium",
|
||||
"type": "humanoid (goblinoid)",
|
||||
"alignment": "lawful evil",
|
||||
"ac": 18,
|
||||
"acType": "chain mail, shield",
|
||||
"hp": 11,
|
||||
"hd": "2d8 + 2",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 13, "dex": 12, "con": 12, "int": 10, "wis": 10, "cha": 9 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 10",
|
||||
"languages": "Common, Goblin",
|
||||
"cr": "1/2",
|
||||
"xp": 100,
|
||||
"traits": [
|
||||
{ "name": "Martial Advantage", "description": "Once per turn, the hobgoblin can deal an extra 7 (2d6) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't incapacitated." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Longsword", "description": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands." },
|
||||
{ "name": "Longbow", "description": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Ogre",
|
||||
"size": "Large",
|
||||
"type": "giant",
|
||||
"alignment": "chaotic evil",
|
||||
"ac": 11,
|
||||
"acType": "hide armor",
|
||||
"hp": 59,
|
||||
"hd": "7d10 + 21",
|
||||
"speed": "40 ft.",
|
||||
"abilities": { "str": 19, "dex": 8, "con": 16, "int": 5, "wis": 7, "cha": 7 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 8",
|
||||
"languages": "Common, Giant",
|
||||
"cr": "2",
|
||||
"xp": 450,
|
||||
"traits": [],
|
||||
"actions": [
|
||||
{ "name": "Greatclub", "description": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage." },
|
||||
{ "name": "Javelin", "description": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Ghoul",
|
||||
"size": "Medium",
|
||||
"type": "undead",
|
||||
"alignment": "chaotic evil",
|
||||
"ac": 12,
|
||||
"acType": "",
|
||||
"hp": 22,
|
||||
"hd": "5d8",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 13, "dex": 15, "con": 10, "int": 7, "wis": 10, "cha": 6 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "poison",
|
||||
"conditionImmunities": "charmed, exhaustion, poisoned",
|
||||
"senses": "darkvision 60 ft., passive Perception 10",
|
||||
"languages": "Common",
|
||||
"cr": "1",
|
||||
"xp": 200,
|
||||
"traits": [],
|
||||
"actions": [
|
||||
{ "name": "Bite", "description": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage." },
|
||||
{ "name": "Claws", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Wight",
|
||||
"size": "Medium",
|
||||
"type": "undead",
|
||||
"alignment": "neutral evil",
|
||||
"ac": 14,
|
||||
"acType": "studded leather",
|
||||
"hp": 45,
|
||||
"hd": "6d8 + 18",
|
||||
"speed": "30 ft.",
|
||||
"abilities": { "str": 15, "dex": 14, "con": 16, "int": 10, "wis": 13, "cha": 15 },
|
||||
"saves": {},
|
||||
"skills": { "Perception": 3, "Stealth": 4 },
|
||||
"resistances": "necrotic; bludgeoning, piercing, and slashing from nonmagical attacks not made with silvered weapons",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "poison",
|
||||
"conditionImmunities": "exhaustion, poisoned",
|
||||
"senses": "darkvision 60 ft., passive Perception 13",
|
||||
"languages": "the languages it knew in life",
|
||||
"cr": "3",
|
||||
"xp": 700,
|
||||
"traits": [
|
||||
{ "name": "Sunlight Sensitivity", "description": "While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Multiattack", "description": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack." },
|
||||
{ "name": "Life Drain", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." },
|
||||
{ "name": "Longsword", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands." },
|
||||
{ "name": "Longbow", "description": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Mimic",
|
||||
"size": "Medium",
|
||||
"type": "monstrosity (shapechanger)",
|
||||
"alignment": "neutral",
|
||||
"ac": 12,
|
||||
"acType": "natural armor",
|
||||
"hp": 58,
|
||||
"hd": "9d8 + 18",
|
||||
"speed": "15 ft.",
|
||||
"abilities": { "str": 17, "dex": 12, "con": 15, "int": 5, "wis": 13, "cha": 8 },
|
||||
"saves": {},
|
||||
"skills": { "Stealth": 5 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "acid",
|
||||
"conditionImmunities": "prone",
|
||||
"senses": "darkvision 60 ft., passive Perception 11",
|
||||
"languages": "—",
|
||||
"cr": "2",
|
||||
"xp": 450,
|
||||
"traits": [
|
||||
{ "name": "Shapechanger", "description": "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." },
|
||||
{ "name": "Adhesive (Object Form Only)", "description": "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also grappled by it (escape DC 13). Ability checks made to escape this grapple have disadvantage." },
|
||||
{ "name": "False Appearance (Object Form Only)", "description": "While the mimic remains motionless, it is indistinguishable from an ordinary object." },
|
||||
{ "name": "Grappler", "description": "The mimic has advantage on attack rolls against any creature grappled by it." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Pseudopod", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." },
|
||||
{ "name": "Bite", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Griffon",
|
||||
"size": "Large",
|
||||
"type": "monstrosity",
|
||||
"alignment": "unaligned",
|
||||
"ac": 12,
|
||||
"acType": "",
|
||||
"hp": 59,
|
||||
"hd": "7d10 + 21",
|
||||
"speed": "30 ft., fly 80 ft.",
|
||||
"abilities": { "str": 18, "dex": 15, "con": 16, "int": 2, "wis": 13, "cha": 8 },
|
||||
"saves": {},
|
||||
"skills": { "Perception": 5 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 15",
|
||||
"languages": "—",
|
||||
"cr": "2",
|
||||
"xp": 450,
|
||||
"traits": [
|
||||
{ "name": "Keen Sight", "description": "The griffon has advantage on Wisdom (Perception) checks that rely on sight." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Multiattack", "description": "The griffon makes two attacks: one with its beak and one with its claws." },
|
||||
{ "name": "Beak", "description": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage." },
|
||||
{ "name": "Claws", "description": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Hippogriff",
|
||||
"size": "Large",
|
||||
"type": "monstrosity",
|
||||
"alignment": "unaligned",
|
||||
"ac": 11,
|
||||
"acType": "",
|
||||
"hp": 19,
|
||||
"hd": "3d10 + 3",
|
||||
"speed": "40 ft., fly 60 ft.",
|
||||
"abilities": { "str": 17, "dex": 13, "con": 13, "int": 2, "wis": 12, "cha": 8 },
|
||||
"saves": {},
|
||||
"skills": { "Perception": 5 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "passive Perception 15",
|
||||
"languages": "—",
|
||||
"cr": "1",
|
||||
"xp": 200,
|
||||
"traits": [
|
||||
{ "name": "Keen Sight", "description": "The hippogriff has advantage on Wisdom (Perception) checks that rely on sight." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Multiattack", "description": "The hippogriff makes two attacks: one with its beak and one with its claws." },
|
||||
{ "name": "Beak", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage." },
|
||||
{ "name": "Claws", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Giant Eagle",
|
||||
"size": "Large",
|
||||
"type": "beast",
|
||||
"alignment": "neutral good",
|
||||
"ac": 13,
|
||||
"acType": "",
|
||||
"hp": 26,
|
||||
"hd": "4d10 + 4",
|
||||
"speed": "10 ft., fly 80 ft.",
|
||||
"abilities": { "str": 16, "dex": 17, "con": 13, "int": 8, "wis": 14, "cha": 10 },
|
||||
"saves": {},
|
||||
"skills": { "Perception": 4 },
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "passive Perception 14",
|
||||
"languages": "Giant Eagle, understands Common and Auran but can't speak them",
|
||||
"cr": "1",
|
||||
"xp": 200,
|
||||
"traits": [
|
||||
{ "name": "Keen Sight", "description": "The eagle has advantage on Wisdom (Perception) checks that rely on sight." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Multiattack", "description": "The eagle makes two attacks: one with its beak and one with its talons." },
|
||||
{ "name": "Beak", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage." },
|
||||
{ "name": "Talons", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Animated Armor",
|
||||
"size": "Medium",
|
||||
"type": "construct",
|
||||
"alignment": "unaligned",
|
||||
"ac": 18,
|
||||
"acType": "natural armor",
|
||||
"hp": 33,
|
||||
"hd": "6d8 + 6",
|
||||
"speed": "25 ft.",
|
||||
"abilities": { "str": 14, "dex": 11, "con": 13, "int": 1, "wis": 3, "cha": 1 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "poison, psychic",
|
||||
"conditionImmunities": "blinded, charmed, deafened, exhaustion, frightened, paralyzed, petrified, poisoned",
|
||||
"senses": "blindsight 60 ft. (blind beyond this radius), passive Perception 6",
|
||||
"languages": "—",
|
||||
"cr": "1",
|
||||
"xp": 200,
|
||||
"traits": [
|
||||
{ "name": "Antimagic Susceptibility", "description": "The armor is incapacitated while in the area of an antimagic field. If targeted by dispel magic, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute." },
|
||||
{ "name": "False Appearance", "description": "While the armor remains motionless, it is indistinguishable from a normal suit of armor." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Multiattack", "description": "The armor makes two melee attacks." },
|
||||
{ "name": "Slam", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Basilisk",
|
||||
"size": "Medium",
|
||||
"type": "monstrosity",
|
||||
"alignment": "unaligned",
|
||||
"ac": 15,
|
||||
"acType": "natural armor",
|
||||
"hp": 52,
|
||||
"hd": "8d8 + 16",
|
||||
"speed": "20 ft.",
|
||||
"abilities": { "str": 16, "dex": 8, "con": 15, "int": 2, "wis": 8, "cha": 7 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "",
|
||||
"conditionImmunities": "",
|
||||
"senses": "darkvision 60 ft., passive Perception 9",
|
||||
"languages": "—",
|
||||
"cr": "3",
|
||||
"xp": 700,
|
||||
"traits": [
|
||||
{ "name": "Petrifying Gaze", "description": "If a creature starts its turn within 30 feet of the basilisk and the two of them can see each other, the basilisk can force the creature to make a DC 12 Constitution saving throw if the basilisk isn't incapacitated. On a failed save, the creature magically begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified until freed by the greater restoration spell or other magic." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Bite", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Ochre Jelly",
|
||||
"size": "Large",
|
||||
"type": "ooze",
|
||||
"alignment": "unaligned",
|
||||
"ac": 8,
|
||||
"acType": "",
|
||||
"hp": 45,
|
||||
"hd": "6d10 + 12",
|
||||
"speed": "10 ft., climb 10 ft.",
|
||||
"abilities": { "str": 15, "dex": 6, "con": 14, "int": 2, "wis": 6, "cha": 1 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "acid",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "lightning, slashing",
|
||||
"conditionImmunities": "blinded, charmed, deafened, exhaustion, frightened, prone",
|
||||
"senses": "blindsight 60 ft. (blind beyond this radius), passive Perception 8",
|
||||
"languages": "—",
|
||||
"cr": "2",
|
||||
"xp": 450,
|
||||
"traits": [
|
||||
{ "name": "Amorphous", "description": "The jelly can move through a space as narrow as 1 inch wide without squeezing." },
|
||||
{ "name": "Spider Climb", "description": "The jelly can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Pseudopod", "description": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage." }
|
||||
],
|
||||
"reactions": [
|
||||
{ "name": "Split", "description": "When a jelly that is Medium or larger is subjected to lightning or slashing damage, it splits into two new jellies if it has at least 10 hit points. Each new jelly has hit points equal to half the original jelly's, rounded down. New jellies are one size smaller than the original jelly." }
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Rug of Smothering",
|
||||
"size": "Large",
|
||||
"type": "construct",
|
||||
"alignment": "unaligned",
|
||||
"ac": 12,
|
||||
"acType": "",
|
||||
"hp": 33,
|
||||
"hd": "6d10",
|
||||
"speed": "10 ft.",
|
||||
"abilities": { "str": 17, "dex": 14, "con": 10, "int": 1, "wis": 3, "cha": 1 },
|
||||
"saves": {},
|
||||
"skills": {},
|
||||
"resistances": "",
|
||||
"vulnerabilities": "",
|
||||
"immunities": "poison, psychic",
|
||||
"conditionImmunities": "blinded, charmed, deafened, frightened, paralyzed, petrified, poisoned",
|
||||
"senses": "blindsight 60 ft. (blind beyond this radius), passive Perception 6",
|
||||
"languages": "—",
|
||||
"cr": "2",
|
||||
"xp": 450,
|
||||
"traits": [
|
||||
{ "name": "Antimagic Susceptibility", "description": "The rug is incapacitated while in the area of an antimagic field. If targeted by dispel magic, the rug must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute." },
|
||||
{ "name": "Damage Transfer", "description": "While it is grappling a creature, the rug takes only half the damage dealt to it, and the creature grappled by the rug takes the other half." },
|
||||
{ "name": "False Appearance", "description": "While the rug remains motionless, it is indistinguishable from a normal rug." }
|
||||
],
|
||||
"actions": [
|
||||
{ "name": "Smother", "description": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage." }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"renaissance bullet": {
|
||||
"name": "Bullets, Renaissance",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"weight": 0
|
||||
},
|
||||
"modern bullet": {
|
||||
"name": "Bullets, Modern",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"weight": 0
|
||||
},
|
||||
"energy cell": {
|
||||
"name": "Energy Cell",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
},
|
||||
{
|
||||
"source": "QftIS",
|
||||
"page": 192
|
||||
}
|
||||
],
|
||||
"weight": 0
|
||||
},
|
||||
"bomb": {
|
||||
"name": "Bomb",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 267
|
||||
}
|
||||
],
|
||||
"weight": 1
|
||||
},
|
||||
"dynamite stick": {
|
||||
"name": "Dynamite stick",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"weight": 1
|
||||
},
|
||||
"grenade": {
|
||||
"name": "Grenade",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"weight": 1
|
||||
},
|
||||
"oversized arrow": {
|
||||
"name": "Oversized Arrows",
|
||||
"source": [
|
||||
{
|
||||
"source": "WDH",
|
||||
"page": 201
|
||||
}
|
||||
],
|
||||
"weight": 0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,874 @@
|
||||
{
|
||||
"charlatan": {
|
||||
"name": "Charlatan",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 128
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"criminal": {
|
||||
"name": "Criminal",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 129
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"entertainer": {
|
||||
"name": "Entertainer",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 130
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"folk hero": {
|
||||
"name": "Folk Hero",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 131
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"guild artisan": {
|
||||
"name": "Guild Artisan",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 132
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"hermit": {
|
||||
"name": "Hermit",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 134
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"noble": {
|
||||
"name": "Noble",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 135
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"outlander": {
|
||||
"name": "Outlander",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 136
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"sage": {
|
||||
"name": "Sage",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 137
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"sailor": {
|
||||
"name": "Sailor",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 139
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"soldier": {
|
||||
"name": "Soldier",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 140
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"urchin": {
|
||||
"name": "Urchin",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 141
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"caravan specialist": {
|
||||
"name": "Caravan Specialist",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:EE",
|
||||
"page": 2
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"earthspur miner": {
|
||||
"name": "Earthspur Miner",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:EE",
|
||||
"page": 3
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"harborfolk": {
|
||||
"name": "Harborfolk",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:EE",
|
||||
"page": 4
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"mulmaster aristocrat": {
|
||||
"name": "Mulmaster Aristocrat",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:EE",
|
||||
"page": 5
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"phlan refugee": {
|
||||
"name": "Phlan Refugee",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:EE",
|
||||
"page": 6
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"cormanthor refugee": {
|
||||
"name": "Cormanthor Refugee",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:RoD",
|
||||
"page": 5
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"gate urchin": {
|
||||
"name": "Gate Urchin",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:RoD",
|
||||
"page": 6
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"hillsfar merchant": {
|
||||
"name": "Hillsfar Merchant",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:RoD",
|
||||
"page": 7
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"hillsfar smuggler": {
|
||||
"name": "Hillsfar Smuggler",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:RoD",
|
||||
"page": 8
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"secret identity": {
|
||||
"name": "Secret Identity",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:RoD",
|
||||
"page": 9
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"shade fanatic": {
|
||||
"name": "Shade Fanatic",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:RoD",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"trade sheriff": {
|
||||
"name": "Trade Sheriff",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:RoD",
|
||||
"page": 11
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"far traveler": {
|
||||
"name": "Far Traveler",
|
||||
"source": [
|
||||
{
|
||||
"source": "S",
|
||||
"page": 148
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"haunted one": {
|
||||
"name": "Haunted One",
|
||||
"source": [
|
||||
{
|
||||
"source": "CoS",
|
||||
"page": 209
|
||||
},
|
||||
{
|
||||
"source": "VRGtR",
|
||||
"page": 34
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"black fist double agent": {
|
||||
"name": "Black Fist Double Agent",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:CoS",
|
||||
"page": 2
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"dragon casualty": {
|
||||
"name": "Dragon Casualty",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:CoS",
|
||||
"page": 3
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"iron route bandit": {
|
||||
"name": "Iron Route Bandit",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:CoS",
|
||||
"page": 5
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"phlan insurgent": {
|
||||
"name": "Phlan Insurgent",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:CoS",
|
||||
"page": 6
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"stojanow prisoner": {
|
||||
"name": "Stojanow Prisoner",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:CoS",
|
||||
"page": 8
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"ticklebelly nomad": {
|
||||
"name": "Ticklebelly Nomad",
|
||||
"source": [
|
||||
{
|
||||
"source": "AL:CoS",
|
||||
"page": 9
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"anthropologist": {
|
||||
"name": "Anthropologist",
|
||||
"source": [
|
||||
{
|
||||
"source": "ToA",
|
||||
"page": 191
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"archaeologist": {
|
||||
"name": "Archaeologist",
|
||||
"source": [
|
||||
{
|
||||
"source": "ToA",
|
||||
"page": 192
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"azorius functionary": {
|
||||
"name": "Azorius Functionary",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 33
|
||||
}
|
||||
]
|
||||
},
|
||||
"boros legionnaire": {
|
||||
"name": "Boros Legionnaire",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 40
|
||||
}
|
||||
]
|
||||
},
|
||||
"dimir operative": {
|
||||
"name": "Dimir Operative",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 46
|
||||
}
|
||||
]
|
||||
},
|
||||
"golgari agent": {
|
||||
"name": "Golgari Agent",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 53
|
||||
}
|
||||
]
|
||||
},
|
||||
"gruul anarch": {
|
||||
"name": "Gruul Anarch",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 60
|
||||
}
|
||||
]
|
||||
},
|
||||
"izzet engineer": {
|
||||
"name": "Izzet Engineer",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 66
|
||||
}
|
||||
]
|
||||
},
|
||||
"orzhov representative": {
|
||||
"name": "Orzhov Representative",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 72
|
||||
}
|
||||
]
|
||||
},
|
||||
"rakdos cultist": {
|
||||
"name": "Rakdos Cultist",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 79
|
||||
}
|
||||
]
|
||||
},
|
||||
"selesnya initiate": {
|
||||
"name": "Selesnya Initiate",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 86
|
||||
}
|
||||
]
|
||||
},
|
||||
"simic scientist": {
|
||||
"name": "Simic Scientist",
|
||||
"source": [
|
||||
{
|
||||
"source": "G",
|
||||
"page": 93
|
||||
}
|
||||
]
|
||||
},
|
||||
"fisher": {
|
||||
"name": "Fisher",
|
||||
"source": [
|
||||
{
|
||||
"source": "GoS",
|
||||
"page": 29
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"marine": {
|
||||
"name": "Marine",
|
||||
"source": [
|
||||
{
|
||||
"source": "GoS",
|
||||
"page": 31
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"shipwright": {
|
||||
"name": "Shipwright",
|
||||
"source": [
|
||||
{
|
||||
"source": "GoS",
|
||||
"page": 33
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"smuggler": {
|
||||
"name": "Smuggler",
|
||||
"source": [
|
||||
{
|
||||
"source": "GoS",
|
||||
"page": 34
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"celebrity adventurer's scion": {
|
||||
"name": "Celebrity Adventurer",
|
||||
"source": [
|
||||
{
|
||||
"source": "AcqInc",
|
||||
"page": 48
|
||||
}
|
||||
]
|
||||
},
|
||||
"failed merchant": {
|
||||
"name": "Failed Merchant",
|
||||
"source": [
|
||||
{
|
||||
"source": "AcqInc",
|
||||
"page": 49
|
||||
}
|
||||
]
|
||||
},
|
||||
"gambler": {
|
||||
"name": "Gambler",
|
||||
"source": [
|
||||
{
|
||||
"source": "AcqInc",
|
||||
"page": 49
|
||||
}
|
||||
]
|
||||
},
|
||||
"plaintiff": {
|
||||
"name": "Plaintiff",
|
||||
"source": [
|
||||
{
|
||||
"source": "AcqInc",
|
||||
"page": 50
|
||||
}
|
||||
]
|
||||
},
|
||||
"rival intern": {
|
||||
"name": "Rival Intern",
|
||||
"source": [
|
||||
{
|
||||
"source": "AcqInc",
|
||||
"page": 51
|
||||
}
|
||||
]
|
||||
},
|
||||
"faceless": {
|
||||
"name": "Faceless",
|
||||
"source": [
|
||||
{
|
||||
"source": "DiA",
|
||||
"page": 203
|
||||
}
|
||||
]
|
||||
},
|
||||
"house agent": {
|
||||
"name": "Agent of House Cannith",
|
||||
"source": [
|
||||
{
|
||||
"source": "E:RLW",
|
||||
"page": 53
|
||||
},
|
||||
{
|
||||
"source": "WGtE",
|
||||
"page": 94
|
||||
}
|
||||
]
|
||||
},
|
||||
"grinner": {
|
||||
"name": "Grinner",
|
||||
"source": [
|
||||
{
|
||||
"source": "W",
|
||||
"page": 200
|
||||
}
|
||||
]
|
||||
},
|
||||
"volstrucker agent": {
|
||||
"name": "Volstrucker Agent",
|
||||
"source": [
|
||||
{
|
||||
"source": "W",
|
||||
"page": 202
|
||||
}
|
||||
]
|
||||
},
|
||||
"athlete": {
|
||||
"name": "Athlete",
|
||||
"source": [
|
||||
{
|
||||
"source": "MOT",
|
||||
"page": 31
|
||||
}
|
||||
]
|
||||
},
|
||||
"investigator-vrgtr": {
|
||||
"name": "Investigator (VRGtR)",
|
||||
"source": [
|
||||
{
|
||||
"source": "VRGtR",
|
||||
"page": 35
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"feylost": {
|
||||
"name": "Feylost",
|
||||
"source": [
|
||||
{
|
||||
"source": "WBtW",
|
||||
"page": 9
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"witchlight hand": {
|
||||
"name": "Witchlight Hand",
|
||||
"source": [
|
||||
{
|
||||
"source": "WBtW",
|
||||
"page": 11
|
||||
},
|
||||
{
|
||||
"source": "ALbackground",
|
||||
"page": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"lorehold student": {
|
||||
"name": "Lorehold Student",
|
||||
"source": [
|
||||
{
|
||||
"source": "SCC",
|
||||
"page": 31
|
||||
}
|
||||
]
|
||||
},
|
||||
"prismari student": {
|
||||
"name": "Prismari Student",
|
||||
"source": [
|
||||
{
|
||||
"source": "SCC",
|
||||
"page": 32
|
||||
}
|
||||
]
|
||||
},
|
||||
"quandrix student": {
|
||||
"name": "Quandrix Student",
|
||||
"source": [
|
||||
{
|
||||
"source": "SCC",
|
||||
"page": 33
|
||||
}
|
||||
]
|
||||
},
|
||||
"silverquill student": {
|
||||
"name": "Silverquill Student",
|
||||
"source": [
|
||||
{
|
||||
"source": "SCC",
|
||||
"page": 35
|
||||
}
|
||||
]
|
||||
},
|
||||
"witherbloom student": {
|
||||
"name": "Witherbloom Student",
|
||||
"source": [
|
||||
{
|
||||
"source": "SCC",
|
||||
"page": 36
|
||||
}
|
||||
]
|
||||
},
|
||||
"astral drifter": {
|
||||
"name": "Astral Drifter",
|
||||
"source": [
|
||||
{
|
||||
"source": "S:AiS",
|
||||
"page": 7
|
||||
}
|
||||
]
|
||||
},
|
||||
"wildspacer": {
|
||||
"name": "Wildspacer",
|
||||
"source": [
|
||||
{
|
||||
"source": "S:AiS",
|
||||
"page": 8
|
||||
}
|
||||
]
|
||||
},
|
||||
"knight of solamnia": {
|
||||
"name": "Knight of Solamnia",
|
||||
"source": [
|
||||
{
|
||||
"source": "D:SotDQ",
|
||||
"page": 0
|
||||
},
|
||||
{
|
||||
"source": "UA:HoKR",
|
||||
"page": 2
|
||||
}
|
||||
]
|
||||
},
|
||||
"mage of high sorcery": {
|
||||
"name": "Mage of High Sorcery",
|
||||
"source": [
|
||||
{
|
||||
"source": "D:SotDQ",
|
||||
"page": 0
|
||||
},
|
||||
{
|
||||
"source": "UA:HoKR",
|
||||
"page": 3
|
||||
},
|
||||
{
|
||||
"source": "UA:HoK",
|
||||
"page": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
"giant foundling": {
|
||||
"name": "Giant Foundling",
|
||||
"source": [
|
||||
{
|
||||
"source": "GotG",
|
||||
"page": 12
|
||||
}
|
||||
]
|
||||
},
|
||||
"rune carver": {
|
||||
"name": "Rune Carver",
|
||||
"source": [
|
||||
{
|
||||
"source": "GotG",
|
||||
"page": 14
|
||||
}
|
||||
]
|
||||
},
|
||||
"gate warden": {
|
||||
"name": "Gate Warden",
|
||||
"source": [
|
||||
{
|
||||
"source": "P:AitM",
|
||||
"page": 7
|
||||
},
|
||||
{
|
||||
"source": "UA:WotM",
|
||||
"page": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
"planar philosopher": {
|
||||
"name": "Planar Philosopher",
|
||||
"source": [
|
||||
{
|
||||
"source": "P:AitM",
|
||||
"page": 8
|
||||
}
|
||||
]
|
||||
},
|
||||
"rewarded": {
|
||||
"name": "Rewarded",
|
||||
"source": [
|
||||
{
|
||||
"source": "BoMT",
|
||||
"page": 57
|
||||
}
|
||||
]
|
||||
},
|
||||
"ruined": {
|
||||
"name": "Ruined",
|
||||
"source": [
|
||||
{
|
||||
"source": "BoMT",
|
||||
"page": 58
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"sidekick-expert-tcoe": {
|
||||
"name": "Expert (sidekick)",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 143
|
||||
}
|
||||
]
|
||||
},
|
||||
"sidekick-spellcaster-tcoe": {
|
||||
"name": "Spellcaster (sidekick)",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 144
|
||||
}
|
||||
]
|
||||
},
|
||||
"sidekick-warrior-tcoe": {
|
||||
"name": "Warrior (sidekick)",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 146
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"undead_thrall": {
|
||||
"name": "Undead Thralls",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 119
|
||||
}
|
||||
],
|
||||
"description": "add my wizard level to their hit point maximum and add my proficiency bonus to their weapon damage rolls."
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"rain catcher": {
|
||||
"name": "Rain catcher [1 gp]",
|
||||
"source": [
|
||||
{
|
||||
"source": "ToA",
|
||||
"page": 32
|
||||
}
|
||||
],
|
||||
"weight": 5
|
||||
},
|
||||
"insect repellent salve": {
|
||||
"name": "Salve (vial) [5 sp]",
|
||||
"type": "insect repellent",
|
||||
"source": [
|
||||
{
|
||||
"source": "ToA",
|
||||
"page": 32
|
||||
}
|
||||
]
|
||||
},
|
||||
"insect repellent incense": {
|
||||
"name": "Incense (block) [1 gp]",
|
||||
"type": "insect repellent",
|
||||
"source": [
|
||||
{
|
||||
"source": "ToA",
|
||||
"page": 32
|
||||
}
|
||||
]
|
||||
},
|
||||
"cold weather": {
|
||||
"name": "Cold Weather [10 gp]",
|
||||
"type": "clothes",
|
||||
"source": [
|
||||
{
|
||||
"source": "RotF",
|
||||
"page": 20
|
||||
}
|
||||
],
|
||||
"weight": 5
|
||||
},
|
||||
"crampons (2)": {
|
||||
"name": "Crampons (2) [2 gp]",
|
||||
"source": [
|
||||
{
|
||||
"source": "RotF",
|
||||
"page": 20
|
||||
}
|
||||
],
|
||||
"weight": 0
|
||||
},
|
||||
"snowshoes": {
|
||||
"name": "Snowshoes [2 gp]",
|
||||
"source": [
|
||||
{
|
||||
"source": "RotF",
|
||||
"page": 20
|
||||
}
|
||||
],
|
||||
"weight": 4
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"LMoP": {
|
||||
"name": "Lost Mines of Phandelver [items]"
|
||||
},
|
||||
"PotA": {
|
||||
"name": "Princes of the Apocalypse [items]"
|
||||
},
|
||||
"AL:EE": {
|
||||
"name": "Elemental Evil Backgrounds [Mulmaster]"
|
||||
},
|
||||
"AL:RoD": {
|
||||
"name": "Rage of Demons Backgrounds [Hillsfar]"
|
||||
},
|
||||
"AL:CoS": {
|
||||
"name": "Curse of Strahd Backgrounds"
|
||||
},
|
||||
"OGA": {
|
||||
"name": "One Grung Above"
|
||||
},
|
||||
"WDH": {
|
||||
"name": "Waterdeep: Dragon Heist [items]"
|
||||
},
|
||||
"LLoK": {
|
||||
"name": "Lost Laboratory of Kwalish [items, spells]"
|
||||
},
|
||||
"WDotMM": {
|
||||
"name": "Waterdeep: Dungeon of the Mad Mage [items]"
|
||||
},
|
||||
"GoS": {
|
||||
"name": "Ghosts of Saltmarsh [backgrounds, beasts, items]"
|
||||
},
|
||||
"AcqInc": {
|
||||
"name": "Acquisitions Incorporated"
|
||||
},
|
||||
"DiA": {
|
||||
"name": "Baldur"
|
||||
},
|
||||
"AwM": {
|
||||
"name": "Adventure with Muk"
|
||||
},
|
||||
"E:RLW": {
|
||||
"name": "Eberron: Rising from the Last War"
|
||||
},
|
||||
"RotF": {
|
||||
"name": "Icewind Dale: Rime of the Frostmaiden [creatures, items, spells]"
|
||||
},
|
||||
"S:AiS": {
|
||||
"name": "Spelljammer: Adventures in Space"
|
||||
},
|
||||
"D:SotDQ": {
|
||||
"name": "Dragonlance: Shadow of the Dragon Queen"
|
||||
},
|
||||
"KftGV": {
|
||||
"name": "Keys from the Golden Vault [items]"
|
||||
},
|
||||
"GotG": {
|
||||
"name": "Bigby Presents: Glory of the Giants"
|
||||
},
|
||||
"PaBTSO": {
|
||||
"name": "Phandelver and Below: The Shattered Obelisk [items]"
|
||||
},
|
||||
"P:AitM": {
|
||||
"name": "Planescape: Adventures in the Multiverse"
|
||||
},
|
||||
"CoA": {
|
||||
"name": "Chains of Asmodeus"
|
||||
},
|
||||
"BoMT": {
|
||||
"name": "The Book of Many Things"
|
||||
},
|
||||
"VEoR": {
|
||||
"name": "Vecna: Eve of Ruin"
|
||||
},
|
||||
"QftIS": {
|
||||
"name": "Quests from the Infinite Staircase"
|
||||
},
|
||||
"ALPGs9": {
|
||||
"name": "AL Player"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,457 @@
|
||||
{
|
||||
"thorn whip": {
|
||||
"name": "Thorn Whip",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "P",
|
||||
"page": 282
|
||||
}
|
||||
],
|
||||
"description": "Melee spell attack, pull target up to 10 ft closer"
|
||||
},
|
||||
"pistol": {
|
||||
"name": "Pistol",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, loading",
|
||||
"weight": 3
|
||||
},
|
||||
"musket": {
|
||||
"name": "Musket",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, loading, two-handed",
|
||||
"weight": 10
|
||||
},
|
||||
"pistol automatic": {
|
||||
"name": "Automatic pistol",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, reload (15 shots)",
|
||||
"weight": 3
|
||||
},
|
||||
"revolver": {
|
||||
"name": "Revolver",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, reload (6 shots)",
|
||||
"weight": 3
|
||||
},
|
||||
"rifle hunting": {
|
||||
"name": "Hunting rifle",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, reload (5 shots), two-handed",
|
||||
"weight": 8
|
||||
},
|
||||
"rifle automatic": {
|
||||
"name": "Automatic rifle",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, burst fire, reload (30 shots), two-handed",
|
||||
"weight": 8
|
||||
},
|
||||
"shotgun": {
|
||||
"name": "Shotgun",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, reload (2 shots), two-handed",
|
||||
"weight": 7
|
||||
},
|
||||
"laser pistol": {
|
||||
"name": "Laser pistol",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, reload (50 shots), two-handed",
|
||||
"weight": 2
|
||||
},
|
||||
"antimatter rifle": {
|
||||
"name": "Antimatter rifle",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, reload (2 shots), two-handed",
|
||||
"weight": 10
|
||||
},
|
||||
"laser rifle": {
|
||||
"name": "Laser rifle",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, reload (30 shots), two-handed",
|
||||
"weight": 7
|
||||
},
|
||||
"bomb, renaissance": {
|
||||
"name": "Bomb, renaissance",
|
||||
"type": "Explosive",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 267
|
||||
}
|
||||
],
|
||||
"description": "Dex save for all within 5-ft radius",
|
||||
"weight": 1
|
||||
},
|
||||
"dynamite stick": {
|
||||
"name": "Dynamite stick",
|
||||
"type": "Explosive",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "All within 5-ft radius, Dex save halves; +1d6 damage \\u0026 +5 ft radius per extra stick used (max 10d6/20 ft)",
|
||||
"weight": 1
|
||||
},
|
||||
"grenade, fragmentation": {
|
||||
"name": "Fragmentation Grenade",
|
||||
"type": "Explosive",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "All within 20-ft radius, Dex save halves",
|
||||
"weight": 1
|
||||
},
|
||||
"create bonfire": {
|
||||
"name": "Create Bonfire",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 152
|
||||
},
|
||||
{
|
||||
"source": "E",
|
||||
"page": 16
|
||||
}
|
||||
],
|
||||
"description": "5-ft cube; Dex save at casting or when moved into, success - no damage; Conc, 1 min"
|
||||
},
|
||||
"frostbite": {
|
||||
"name": "Frostbite",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 156
|
||||
},
|
||||
{
|
||||
"source": "E",
|
||||
"page": 18
|
||||
}
|
||||
],
|
||||
"description": "Con save, success - no damage, fail - also disadv. on next weapon attack roll in next turn; 1 creature"
|
||||
},
|
||||
"magic stone": {
|
||||
"name": "Magic Stone",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 160
|
||||
},
|
||||
{
|
||||
"source": "E",
|
||||
"page": 20
|
||||
}
|
||||
],
|
||||
"description": "Produces 3 stones that each can be thrown (60 ft) or hurled with a sling (120 ft) as a spell attack"
|
||||
},
|
||||
"thunderclap": {
|
||||
"name": "Thunderclap",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 168
|
||||
},
|
||||
{
|
||||
"source": "E",
|
||||
"page": 22
|
||||
}
|
||||
],
|
||||
"description": "Con save, success - no damage; all creatures in area; audible in 100 ft"
|
||||
},
|
||||
"booming blade": {
|
||||
"name": "Booming Blade",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 106
|
||||
},
|
||||
{
|
||||
"source": "S",
|
||||
"page": 142
|
||||
}
|
||||
],
|
||||
"description": "First damage added to the attack; second to the target if it moves next round"
|
||||
},
|
||||
"green-flame blade": {
|
||||
"name": "Green-Flame Blade",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 107
|
||||
},
|
||||
{
|
||||
"source": "S",
|
||||
"page": 143
|
||||
}
|
||||
],
|
||||
"description": "First damage added to the attack; second to a target within 5 ft"
|
||||
},
|
||||
"lightning lure": {
|
||||
"name": "Lightning Lure",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 107
|
||||
},
|
||||
{
|
||||
"source": "S",
|
||||
"page": 143
|
||||
}
|
||||
],
|
||||
"description": "Str save; success - nothing; fail - pulled 10 ft closer to me, only take damage if end within 5 ft of me"
|
||||
},
|
||||
"sword burst": {
|
||||
"name": "Sword Burst",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 115
|
||||
},
|
||||
{
|
||||
"source": "S",
|
||||
"page": 143
|
||||
}
|
||||
],
|
||||
"description": "Dex save, success - no damage; all creatures in range"
|
||||
},
|
||||
"yklwa": {
|
||||
"name": "Yklwa",
|
||||
"type": "Simple",
|
||||
"source": [
|
||||
{
|
||||
"source": "ToA",
|
||||
"page": 32
|
||||
}
|
||||
],
|
||||
"description": "Thrown",
|
||||
"weight": 3
|
||||
},
|
||||
"shadow blade": {
|
||||
"name": "Shadow Blade",
|
||||
"type": "Simple",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 164
|
||||
}
|
||||
],
|
||||
"description": "Finesse, light, thrown; +1d8 at SL3/5/7; Adv. if target in dim light/darkness"
|
||||
},
|
||||
"infestation": {
|
||||
"name": "Infestation",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 158
|
||||
}
|
||||
],
|
||||
"description": "Con save, success - no damage, fail - target also moved 5 ft in random direction"
|
||||
},
|
||||
"primal savagery": {
|
||||
"name": "Primal Savagery",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 169
|
||||
}
|
||||
]
|
||||
},
|
||||
"toll the dead": {
|
||||
"name": "Toll the Dead",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 169
|
||||
},
|
||||
{
|
||||
"source": "UA:SS",
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"description": "Wis save, success - no damage; If target is at full HP, d8 instead of d12 damage"
|
||||
},
|
||||
"word of radiance": {
|
||||
"name": "Word of Radiance",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "X",
|
||||
"page": 171
|
||||
}
|
||||
],
|
||||
"description": "Con save, success - no damage; Only chosen creatures I can see are affected"
|
||||
},
|
||||
"oversized longbow": {
|
||||
"name": "Oversized Longbow",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "WDH",
|
||||
"page": 201
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, heavy, two-handed; Damage uses Str; Requires Medium size and Str 18",
|
||||
"weight": 2
|
||||
},
|
||||
"double-bladed scimitar": {
|
||||
"name": "Double-bladed scimitar",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "E:RLW",
|
||||
"page": 22
|
||||
},
|
||||
{
|
||||
"source": "WGtE",
|
||||
"page": 74
|
||||
}
|
||||
],
|
||||
"description": "Two-handed; With Attack action, one attack as bonus action for 1d4",
|
||||
"weight": 6
|
||||
},
|
||||
"sapping sting": {
|
||||
"name": "Sapping Sting",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "W",
|
||||
"page": 189
|
||||
}
|
||||
],
|
||||
"description": "Con save, success - no damage, fail - also fall prone"
|
||||
},
|
||||
"mind sliver": {
|
||||
"name": "Mind Sliver",
|
||||
"type": "Cantrip",
|
||||
"source": [
|
||||
{
|
||||
"source": "T",
|
||||
"page": 108
|
||||
},
|
||||
{
|
||||
"source": "UA:SnW",
|
||||
"page": 4
|
||||
},
|
||||
{
|
||||
"source": "UA:FRnW",
|
||||
"page": 7
|
||||
},
|
||||
{
|
||||
"source": "UA:POR",
|
||||
"page": 7
|
||||
}
|
||||
],
|
||||
"description": "1 creature Int save, success - no damage, fail - also -1d4 on first save before my next turn ends"
|
||||
},
|
||||
"hoopak, melee": {
|
||||
"name": "Hoopak, melee",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D:SotDQ",
|
||||
"page": 0
|
||||
}
|
||||
],
|
||||
"description": "Finesse, two-handed; Can be used ranged (40/160 ft) with ammo, for 1d4 bludgeoning damage",
|
||||
"weight": 2
|
||||
},
|
||||
"hoopak, ranged": {
|
||||
"name": "Hoopak, ranged",
|
||||
"type": "Martial",
|
||||
"source": [
|
||||
{
|
||||
"source": "D:SotDQ",
|
||||
"page": 0
|
||||
}
|
||||
],
|
||||
"description": "Ammunition, finesse, two-handed; Can be used in melee without ammo, for 1d6 piercing damage",
|
||||
"weight": 2
|
||||
},
|
||||
"grenade, concussion": {
|
||||
"name": "Concussion Grenade",
|
||||
"type": "Explosive",
|
||||
"source": [
|
||||
{
|
||||
"source": "D",
|
||||
"page": 268
|
||||
}
|
||||
],
|
||||
"description": "All within 20-ft radius, Dex save halves",
|
||||
"weight": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"travelPace": [
|
||||
{ "pace": "Fast", "perMinute": "400 feet", "perHour": "4 miles", "perDay": "30 miles", "effect": "-5 penalty to passive Wisdom (Perception) scores" },
|
||||
{ "pace": "Normal", "perMinute": "300 feet", "perHour": "3 miles", "perDay": "24 miles", "effect": "—" },
|
||||
{ "pace": "Slow", "perMinute": "200 feet", "perHour": "2 miles", "perDay": "18 miles", "effect": "Able to use stealth" }
|
||||
],
|
||||
"cover": [
|
||||
{ "type": "Half Cover", "acBonus": "+2", "dexSaveBonus": "+2", "description": "A target has half cover if an obstacle blocks at least half of its body. The obstacle might be a low wall, a large piece of furniture, a narrow tree trunk, or a creature, whether that creature is an enemy or a friend." },
|
||||
{ "type": "Three-Quarters Cover", "acBonus": "+5", "dexSaveBonus": "+5", "description": "A target has three-quarters cover if about three-quarters of it is covered by an obstacle. The obstacle might be a portcullis, an arrow slit, or a thick tree trunk." },
|
||||
{ "type": "Total Cover", "acBonus": "—", "dexSaveBonus": "—", "description": "A target has total cover if it is completely concealed by an obstacle. A target with total cover can't be targeted directly by an attack or a spell, although some spells can reach such a target by including it in an area of effect." }
|
||||
],
|
||||
"lightAndVision": [
|
||||
{ "type": "Bright Light", "description": "Lets most creatures see normally. Even gloomy days provide bright light, as do torches, lanterns, fires, and other sources of illumination within a specific radius." },
|
||||
{ "type": "Dim Light", "description": "Also called shadows, creates a lightly obscured area. An area of dim light is usually a boundary between a source of bright light, such as a torch, and surrounding darkness. Creatures have disadvantage on Wisdom (Perception) checks that rely on sight." },
|
||||
{ "type": "Darkness", "description": "Creates a heavily obscured area. Characters face darkness outdoors at night (even most moonlit nights), within the confines of an unlit dungeon or a subterranean vault, or in an area of magical darkness. A creature effectively suffers from the blinded condition when trying to see something in that area." },
|
||||
{ "type": "Darkvision", "description": "Many creatures in fantasy gaming worlds, especially those that dwell underground, have darkvision. Within a specified range, a creature with darkvision can see in darkness as if the darkness were dim light, so areas of darkness are only lightly obscured as far as that creature is concerned. However, the creature can't discern color in darkness, only shades of gray." },
|
||||
{ "type": "Truesight", "description": "A creature with truesight can, out to a specific range, see in normal and magical darkness, see invisible creatures and objects, automatically detect visual illusions and succeed on saving throws against them, and perceive the original form of a shapechanger or a creature that is transformed by magic. Furthermore, the creature can see into the Ethereal Plane." }
|
||||
],
|
||||
"abilityScores": [
|
||||
{ "score": 1, "modifier": -5 },
|
||||
{ "score": "2-3", "modifier": -4 },
|
||||
{ "score": "4-5", "modifier": -3 },
|
||||
{ "score": "6-7", "modifier": -2 },
|
||||
{ "score": "8-9", "modifier": -1 },
|
||||
{ "score": "10-11", "modifier": 0 },
|
||||
{ "score": "12-13", "modifier": 1 },
|
||||
{ "score": "14-15", "modifier": 2 },
|
||||
{ "score": "16-17", "modifier": 3 },
|
||||
{ "score": "18-19", "modifier": 4 },
|
||||
{ "score": "20-21", "modifier": 5 },
|
||||
{ "score": "22-23", "modifier": 6 },
|
||||
{ "score": "24-25", "modifier": 7 },
|
||||
{ "score": "26-27", "modifier": 8 },
|
||||
{ "score": "28-29", "modifier": 9 },
|
||||
{ "score": 30, "modifier": 10 }
|
||||
],
|
||||
"proficiencyBonus": [
|
||||
{ "level": "1-4", "bonus": 2 },
|
||||
{ "level": "5-8", "bonus": 3 },
|
||||
{ "level": "9-12", "bonus": 4 },
|
||||
{ "level": "13-16", "bonus": 5 },
|
||||
{ "level": "17-20", "bonus": 6 }
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,22 @@
|
||||
[
|
||||
{ "name": "Magic Missile", "level": 1, "school": "Evocation", "castingTime": "1 action", "range": "120 feet", "components": "V, S", "duration": "Instantaneous", "description": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4+1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.", "higherLevels": "When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st." },
|
||||
{ "name": "Cure Wounds", "level": 1, "school": "Evocation", "castingTime": "1 action", "range": "Touch", "components": "V, S", "duration": "Instantaneous", "description": "A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", "higherLevels": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st." },
|
||||
{ "name": "Shield", "level": 1, "school": "Abjuration", "castingTime": "1 reaction (taken when hit by an attack or targeted by magic missile)", "range": "Self", "components": "V, S", "duration": "1 round", "description": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile." },
|
||||
{ "name": "Mage Armor", "level": 1, "school": "Abjuration", "castingTime": "1 action", "range": "Touch", "components": "V, S, M (a piece of cured leather)", "duration": "8 hours", "description": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action." },
|
||||
{ "name": "Burning Hands", "level": 1, "school": "Evocation", "castingTime": "1 action", "range": "Self (15-foot cone)", "components": "V, S", "duration": "Instantaneous", "description": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one. The fire ignites any flammable objects in the area that aren't being worn or carried.", "higherLevels": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st." },
|
||||
{ "name": "Sleep", "level": 1, "school": "Enchantment", "castingTime": "1 action", "range": "90 feet", "components": "V, S, M (a pinch of fine sand, rose petals, or a cricket)", "duration": "1 minute", "description": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points. Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake.", "higherLevels": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st." },
|
||||
{ "name": "Invisibility", "level": 2, "school": "Illusion", "castingTime": "1 action", "range": "Touch", "components": "V, S, M (an eyelash encased in gum arabic)", "duration": "Concentration, up to 1 hour", "description": "A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.", "higherLevels": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd." },
|
||||
{ "name": "Misty Step", "level": 2, "school": "Conjuration", "castingTime": "1 bonus action", "range": "Self", "components": "V", "duration": "Instantaneous", "description": "Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see." },
|
||||
{ "name": "Spiritual Weapon", "level": 2, "school": "Evocation", "castingTime": "1 bonus action", "range": "60 feet", "components": "V, S", "duration": "1 minute", "description": "You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier. As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it.", "higherLevels": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above 2nd." },
|
||||
{ "name": "Lesser Restoration", "level": 2, "school": "Abjuration", "castingTime": "1 action", "range": "Touch", "components": "V, S", "duration": "Instantaneous", "description": "You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned." },
|
||||
{ "name": "Fireball", "level": 3, "school": "Evocation", "castingTime": "1 action", "range": "150 feet", "components": "V, S, M (a tiny ball of bat guano and sulfur)", "duration": "Instantaneous", "description": "A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a Dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.", "higherLevels": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd." },
|
||||
{ "name": "Counterspell", "level": 3, "school": "Abjuration", "castingTime": "1 reaction (taken when you see a creature within 60 feet casting a spell)", "range": "60 feet", "components": "S", "duration": "Instantaneous", "description": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.", "higherLevels": "When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used." },
|
||||
{ "name": "Fly", "level": 3, "school": "Transmutation", "castingTime": "1 action", "range": "Touch", "components": "V, S, M (a wing feather from any bird)", "duration": "Concentration, up to 10 minutes", "description": "You touch a willing creature. The target gains a flying speed of 60 feet for the duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.", "higherLevels": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd." },
|
||||
{ "name": "Lightning Bolt", "level": 3, "school": "Evocation", "castingTime": "1 action", "range": "Self (100-foot line)", "components": "V, S, M (a bit of fur and a rod of amber, crystal, or glass)", "duration": "Instantaneous", "description": "A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a Dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one.", "higherLevels": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd." },
|
||||
{ "name": "Haste", "level": 3, "school": "Transmutation", "castingTime": "1 action", "range": "30 feet", "components": "V, S, M (a shaving of licorice root)", "duration": "Concentration, up to 1 minute", "description": "Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity saving throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action. When the spell ends, the target can't move or take actions until after its next turn, as a wave of lethargy sweeps over it." },
|
||||
{ "name": "Dispel Magic", "level": 3, "school": "Abjuration", "castingTime": "1 action", "range": "120 feet", "components": "V, S", "duration": "Instantaneous", "description": "Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.", "higherLevels": "When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used." },
|
||||
{ "name": "Bless", "level": 1, "school": "Enchantment", "castingTime": "1 action", "range": "30 feet", "components": "V, S, M (a sprinkling of holy water)", "duration": "Concentration, up to 1 minute", "description": "You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw.", "higherLevels": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st." },
|
||||
{ "name": "Polymorph", "level": 4, "school": "Transmutation", "castingTime": "1 action", "range": "60 feet", "components": "V, S, M (a caterpillar cocoon)", "duration": "Concentration, up to 1 hour", "description": "This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a Wisdom saving throw to avoid the effect. The transformation lasts for the duration, or until the target drops to 0 hit points or dies. The new form can be any beast whose challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the chosen beast. It retains its alignment and personality." },
|
||||
{ "name": "Dimension Door", "level": 4, "school": "Conjuration", "castingTime": "1 action", "range": "500 feet", "components": "V", "duration": "Instantaneous", "description": "You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction. You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell." },
|
||||
{ "name": "Cone of Cold", "level": 5, "school": "Evocation", "castingTime": "1 action", "range": "Self (60-foot cone)", "components": "V, S, M (a small crystal or glass cone)", "duration": "Instantaneous", "description": "A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a Constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one. A creature killed by this spell becomes a frozen statue until it thaws.", "higherLevels": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th." }
|
||||
]
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,618 @@
|
||||
[
|
||||
{
|
||||
"name": "Battleaxe",
|
||||
"slug": "battleaxe",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "10 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "slashing",
|
||||
"weight": "4 lb.",
|
||||
"properties": [
|
||||
"versatile (1d10)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Blowgun",
|
||||
"slug": "blowgun",
|
||||
"category": "Martial Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "10 gp",
|
||||
"damage_dice": "1",
|
||||
"damage_type": "piercing",
|
||||
"weight": "1 lb.",
|
||||
"properties": [
|
||||
"ammunition (range 25/100)",
|
||||
"loading"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Club",
|
||||
"slug": "club",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "1 sp",
|
||||
"damage_dice": "1d4",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"light"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Crossbow, hand",
|
||||
"slug": "crossbow-hand",
|
||||
"category": "Martial Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "75 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "piercing",
|
||||
"weight": "3 lb.",
|
||||
"properties": [
|
||||
"ammunition (range 30/120)",
|
||||
"light",
|
||||
"loading"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Crossbow, heavy",
|
||||
"slug": "crossbow-heavy",
|
||||
"category": "Martial Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "50 gp",
|
||||
"damage_dice": "1d10",
|
||||
"damage_type": "piercing",
|
||||
"weight": "18 lb.",
|
||||
"properties": [
|
||||
"ammunition (range 100/400)",
|
||||
"heavy",
|
||||
"loading",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Crossbow, light",
|
||||
"slug": "crossbow-light",
|
||||
"category": "Simple Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "25 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "piercing",
|
||||
"weight": "5 lb.",
|
||||
"properties": [
|
||||
"ammunition (range 80/320)",
|
||||
"loading",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Dagger",
|
||||
"slug": "dagger",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "2 gp",
|
||||
"damage_dice": "1d4",
|
||||
"damage_type": "piercing",
|
||||
"weight": "1 lb.",
|
||||
"properties": [
|
||||
"finesse",
|
||||
"light",
|
||||
"thrown (range 20/60)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Dart",
|
||||
"slug": "dart",
|
||||
"category": "Simple Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "5 cp",
|
||||
"damage_dice": "1d4",
|
||||
"damage_type": "piercing",
|
||||
"weight": "1/4 lb.",
|
||||
"properties": [
|
||||
"finesse",
|
||||
"thrown (range 20/60)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Flail",
|
||||
"slug": "flail",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "10 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "2 lb.",
|
||||
"properties": []
|
||||
},
|
||||
{
|
||||
"name": "Glaive",
|
||||
"slug": "glaive",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "20 gp",
|
||||
"damage_dice": "1d10",
|
||||
"damage_type": "slashing",
|
||||
"weight": "6 lb.",
|
||||
"properties": [
|
||||
"heavy",
|
||||
"reach",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Greataxe",
|
||||
"slug": "greataxe",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "30 gp",
|
||||
"damage_dice": "1d12",
|
||||
"damage_type": "slashing",
|
||||
"weight": "7 lb.",
|
||||
"properties": [
|
||||
"heavy",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Greatclub",
|
||||
"slug": "greatclub",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "2 sp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "10 lb.",
|
||||
"properties": [
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Greatsword",
|
||||
"slug": "greatsword",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "50 gp",
|
||||
"damage_dice": "2d6",
|
||||
"damage_type": "slashing",
|
||||
"weight": "6 lb.",
|
||||
"properties": [
|
||||
"heavy",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Halberd",
|
||||
"slug": "halberd",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "20 gp",
|
||||
"damage_dice": "1d10",
|
||||
"damage_type": "slashing",
|
||||
"weight": "6 lb.",
|
||||
"properties": [
|
||||
"heavy",
|
||||
"reach",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Handaxe",
|
||||
"slug": "handaxe",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "5 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "slashing",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"light",
|
||||
"thrown (range 20/60)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Javelin",
|
||||
"slug": "javelin",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "5 sp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "piercing",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"thrown (range 30/120)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Lance",
|
||||
"slug": "lance",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "10 gp",
|
||||
"damage_dice": "1d12",
|
||||
"damage_type": "piercing",
|
||||
"weight": "6 lb.",
|
||||
"properties": [
|
||||
"reach",
|
||||
"special"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Light hammer",
|
||||
"slug": "light-hammer",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "2 gp",
|
||||
"damage_dice": "1d4",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"light",
|
||||
"thrown (range 20/60)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Longbow",
|
||||
"slug": "longbow",
|
||||
"category": "Martial Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "50 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "piercing",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"ammunition (range 150/600)",
|
||||
"heavy",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Longsword",
|
||||
"slug": "longsword",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "15 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "slashing",
|
||||
"weight": "3 lb.",
|
||||
"properties": [
|
||||
"versatile (1d10)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Mace",
|
||||
"slug": "mace",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "5 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "4 lb.",
|
||||
"properties": []
|
||||
},
|
||||
{
|
||||
"name": "Maul",
|
||||
"slug": "maul",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "10 gp",
|
||||
"damage_dice": "2d6",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "10 lb.",
|
||||
"properties": [
|
||||
"heavy",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Morningstar",
|
||||
"slug": "morningstar",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "15 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "piercing",
|
||||
"weight": "4 lb.",
|
||||
"properties": null
|
||||
},
|
||||
{
|
||||
"name": "Net",
|
||||
"slug": "net",
|
||||
"category": "Martial Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "1 gp",
|
||||
"damage_dice": "0",
|
||||
"damage_type": "",
|
||||
"weight": "3 lb.",
|
||||
"properties": [
|
||||
"special",
|
||||
"thrown (range 5/15)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Pike",
|
||||
"slug": "pike",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "5 gp",
|
||||
"damage_dice": "1d10",
|
||||
"damage_type": "piercing",
|
||||
"weight": "18 lb.",
|
||||
"properties": [
|
||||
"heavy",
|
||||
"reach",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Quarterstaff",
|
||||
"slug": "quarterstaff",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "2 sp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "4 lb.",
|
||||
"properties": [
|
||||
"versatile (1d8)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Rapier",
|
||||
"slug": "rapier",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "25 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "piercing",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"finesse"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Scimitar",
|
||||
"slug": "scimitar",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "25 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "slashing",
|
||||
"weight": "3 lb.",
|
||||
"properties": [
|
||||
"finesse",
|
||||
"light"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Shortbow",
|
||||
"slug": "shortbow",
|
||||
"category": "Simple Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "25 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "piercing",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"ammunition (range 80/320)",
|
||||
"two-handed"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Shortsword",
|
||||
"slug": "shortsword",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "10 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "piercing",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"finesse",
|
||||
"light"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Sickle",
|
||||
"slug": "sickle",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "1 gp",
|
||||
"damage_dice": "1d4",
|
||||
"damage_type": "slashing",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"light"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Sling",
|
||||
"slug": "sling",
|
||||
"category": "Simple Ranged Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "1 sp",
|
||||
"damage_dice": "1d4",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "0 lb.",
|
||||
"properties": [
|
||||
"ammunition (range 30/120)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Spear",
|
||||
"slug": "spear",
|
||||
"category": "Simple Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "1 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "piercing",
|
||||
"weight": "3 lb.",
|
||||
"properties": [
|
||||
"thrown (range 20/60)",
|
||||
"versatile (1d8)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Trident",
|
||||
"slug": "trident",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "5 gp",
|
||||
"damage_dice": "1d6",
|
||||
"damage_type": "piercing",
|
||||
"weight": "4 lb.",
|
||||
"properties": [
|
||||
"thrown (range 20/60)",
|
||||
"versatile (1d8)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "War pick",
|
||||
"slug": "war-pick",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "5 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "piercing",
|
||||
"weight": "2 lb.",
|
||||
"properties": []
|
||||
},
|
||||
{
|
||||
"name": "Warhammer",
|
||||
"slug": "warhammer",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "15 gp",
|
||||
"damage_dice": "1d8",
|
||||
"damage_type": "bludgeoning",
|
||||
"weight": "2 lb.",
|
||||
"properties": [
|
||||
"versatile (1d10)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Whip",
|
||||
"slug": "whip",
|
||||
"category": "Martial Melee Weapons",
|
||||
"document__slug": "wotc-srd",
|
||||
"document__title": "5e Core Rules",
|
||||
"document__license_url": "http://open5e.com/legal",
|
||||
"document__url": "http://dnd.wizards.com/articles/features/systems-reference-document-srd",
|
||||
"cost": "2 gp",
|
||||
"damage_dice": "1d4",
|
||||
"damage_type": "slashing",
|
||||
"weight": "3 lb.",
|
||||
"properties": [
|
||||
"finesse",
|
||||
"reach"
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user