diff --git a/packs/_source/armor/heavy-armor.json b/packs/_source/armor/heavy-armor.json index 0cf1779..bba646a 100644 --- a/packs/_source/armor/heavy-armor.json +++ b/packs/_source/armor/heavy-armor.json @@ -11,7 +11,7 @@ "hindersDodge": true, "preventsRage": true, "slots": 3, - "value": 2000, + "value": 20000, "equipped": false, "magicBonus": 0, "properties": [], diff --git a/packs/_source/armor/heavy-barding.json b/packs/_source/armor/heavy-barding.json index eef0f11..534cd5f 100644 --- a/packs/_source/armor/heavy-barding.json +++ b/packs/_source/armor/heavy-barding.json @@ -11,7 +11,7 @@ "hindersDodge": false, "preventsRage": false, "slots": 3, - "value": 2500, + "value": 25000, "equipped": false, "magicBonus": 0, "properties": ["barding"], diff --git a/packs/_source/armor/light-armor.json b/packs/_source/armor/light-armor.json index c4b15f8..471dcbe 100644 --- a/packs/_source/armor/light-armor.json +++ b/packs/_source/armor/light-armor.json @@ -11,7 +11,7 @@ "hindersDodge": false, "preventsRage": false, "slots": 2, - "value": 500, + "value": 5000, "equipped": false, "magicBonus": 0, "properties": [], diff --git a/packs/_source/armor/light-barding.json b/packs/_source/armor/light-barding.json index 8a639ad..dbe92c4 100644 --- a/packs/_source/armor/light-barding.json +++ b/packs/_source/armor/light-barding.json @@ -11,7 +11,7 @@ "hindersDodge": false, "preventsRage": false, "slots": 2, - "value": 1000, + "value": 10000, "equipped": false, "magicBonus": 0, "properties": ["barding"], diff --git a/packs/_source/armor/medium-armor.json b/packs/_source/armor/medium-armor.json index f7d7818..535741f 100644 --- a/packs/_source/armor/medium-armor.json +++ b/packs/_source/armor/medium-armor.json @@ -11,7 +11,7 @@ "hindersDodge": false, "preventsRage": false, "slots": 2, - "value": 1000, + "value": 10000, "equipped": false, "magicBonus": 0, "properties": [], diff --git a/packs/_source/equipment/EQUIPMENT_GENERATION_SUMMARY.md b/packs/_source/equipment/EQUIPMENT_GENERATION_SUMMARY.md new file mode 100644 index 0000000..84497e2 --- /dev/null +++ b/packs/_source/equipment/EQUIPMENT_GENERATION_SUMMARY.md @@ -0,0 +1,143 @@ +# Equipment Compendium Generation Summary + +## Generation Date + +2025-12-16 + +## Total Items Generated + +**368 equipment JSON files** + +### Breakdown by Category + +#### Adventuring Gear (286 items) + +- **Alchemy & Medicine**: 26 items (tools, containers, medical supplies) +- **Beasts & Husbandry**: 25 items (animals, mounts, feed, barding) +- **Astronomy & Navigation**: 8 items (astrolabe, compass, spyglass, etc.) +- **Books & Magic**: 21 items (including Spellbook with canCastThrough=true, Trinket) +- **Clothing, Hygiene, & Textiles**: 43 items (all types of clothing and fabric) +- **Containers & Packs**: 1 item (Backpack with containerCapacity=2) +- **Cooking & Food**: 36 items (tools, ingredients, rations, meals) +- **Games & Toys**: 16 items (cards, dice, toys) +- **Gems & Jewelry**: 18 items (gems, ingots, jewelry) +- **Hardware**: 32 items (tools, ropes, chains, locks) +- **Liquor & Spirits**: 18 items (ale, beer, wine, liquor variants) +- **Musical Instruments**: 13 items (accordion, lute, drum, etc.) +- **Outdoors**: 20 items (camping gear, tents, torches) +- **Tools**: 9 items (tool sets for various trades) +- **Trade Goods**: 2 items (personal seal, merchant's scale) + +#### Alchemical Items (82 items) + +- **Acids**: 4 items (basic, defoliator, green slime, oxidizing) +- **Concoctions**: 17 items (adhesive, gravebane, instant rope, etc.) +- **Explosives**: 5 items (alchemist's fire, thunderstone, etc.) +- **Oils**: 7 items (basic, anointing, bladefire, ghostflame, etc.) +- **Poisons**: 3 items (basic, deadly nightshade, truth serum) +- **Potions**: 37 items (healing I-III, mana I-III, anger I-III, resistance, etc.) +- **Torches & Light Sources**: 9 items (candles, sunrod, special torches) + +## Technical Specifications + +### Value Conversion + +All values correctly converted to copper: + +- 1g = 1000 copper +- 1s = 10 copper +- 1c = 1 copper + +### Special Properties Applied + +#### Trinkets + +- Spellbook: `isTrinket: true, canCastThrough: true` +- Trinket: `isTrinket: true` + +#### Containers + +- Backpack: `containerCapacity: 2, slots: 1` +- Various containers: Properly noted capacities in descriptions + +#### Consumables + +All consumable items have: + +- `consumable: true` +- `uses.max: 1` (or appropriate number) +- `uses.autoDestroy: true` + +### Category Distribution + +- **consumable**: 149 items (potions, food, oils, acids, etc.) +- **gear**: 159 items (general adventuring equipment) +- **tool**: 11 items (crafting tool sets) +- **container**: 25 items (backpack, jars, vials, chests) +- **treasure**: 7 items (gems, ingots) +- **misc**: 17 items (animals, services) + +### Tags Applied + +Comprehensive tagging for filtering and search: + +- `alchemy` - all alchemical items +- `potion` - healing, mana, resistance potions +- `poison` - poisonous substances +- `oil` - weapon oils +- `explosive` - alchemist's fire, thunderstone +- `acid` - corrosive substances +- `light` - torches, candles, lanterns +- `food` - rations, meals, ingredients +- `drink` - ale, beer, wine, liquor +- `clothing` - all wearable items +- `instrument` - musical instruments +- `camping` - outdoor/survival gear +- `tool` - tool sets and implements +- `container` - storage items +- `mount` - animals for riding +- `holy` - holy water, anointing oil +- `magic` - spellbooks, enchanted items +- `climbing` - rope, pitons, grappling hooks +- `navigation` - compass, astrolabe + +## File Naming Convention + +All files use kebab-case: + +- `potion-healing-i.json` +- `alchemists-fire.json` +- `oil-wyrmwound.json` +- `clothes-winter-set.json` + +## ID Convention + +All items use camelCase IDs prefixed with `vagabondEquip`: + +- `vagabondEquipPotionhealingi` +- `vagabondEquipAlchemistsfire` +- `vagabondEquipOilwyrmwound` + +## Source Data + +Generated from NoteDiscovery notes: + +- `gaming/vagabond-rpg/gear-adventuring.md` +- `gaming/vagabond-rpg/gear-alchemical.md` + +## Validation + +All JSON files: + +- Valid JSON format +- Match EquipmentData.mjs schema +- Include all required fields +- Set `reviewed: false` for manual review +- Include proper `_key` for Foundry compendium + +## Notes + +- All items ready for import into Foundry VTT +- Icons default to `icons/svg/item-bag.svg` (can be customized later) +- Descriptions include game mechanics where available +- Some alchemical item descriptions were incomplete in source data diff --git a/packs/_source/equipment/accordion.json b/packs/_source/equipment/accordion.json new file mode 100644 index 0000000..91f62ef --- /dev/null +++ b/packs/_source/equipment/accordion.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAccordion", + "name": "Accordion", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 50000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAccordion", + "reviewed": true +} diff --git a/packs/_source/equipment/acid-basic.json b/packs/_source/equipment/acid-basic.json new file mode 100644 index 0000000..f1f5ee5 --- /dev/null +++ b/packs/_source/equipment/acid-basic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAcidbasic", + "name": "Acid, basic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "
Corrosive liquid that eats away at matter. A Target hit with it takes d6 damage and is Burning (Cd4).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "acid"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAcidbasic", + "reviewed": true +} diff --git a/packs/_source/equipment/acid-defoliator.json b/packs/_source/equipment/acid-defoliator.json new file mode 100644 index 0000000..7594b49 --- /dev/null +++ b/packs/_source/equipment/acid-defoliator.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAciddefoliator", + "name": "Acid, defoliator", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Vile blighting acid. A hit Target takes d6 damage, plus Burning (Cd6) if made of wood or plants. If the Target is a point, all natural plants Close to it immediately die.
If the Target is a non-Relic, the acid destroys a 1-foot circle of it down 1-inch deep.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "acid"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAciddefoliator", + "reviewed": true +} diff --git a/packs/_source/equipment/acid-green-slime.json b/packs/_source/equipment/acid-green-slime.json new file mode 100644 index 0000000..cae2f19 --- /dev/null +++ b/packs/_source/equipment/acid-green-slime.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAcidgreenslime", + "name": "Acid, green slime", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Contains a green slime.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "acid"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAcidgreenslime", + "reviewed": true +} diff --git a/packs/_source/equipment/acid-oxidizing.json b/packs/_source/equipment/acid-oxidizing.json new file mode 100644 index 0000000..5864361 --- /dev/null +++ b/packs/_source/equipment/acid-oxidizing.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAcidoxidizing", + "name": "Acid, oxidizing", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Rapidly rusting acid. A hit Target takes d6 damage, plus Burning (Cd6) if made of metal.
If the Target is a non-Relic, the acid destroys a 1-foot circle of it down 1-inch deep.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "acid"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAcidoxidizing", + "reviewed": true +} diff --git a/packs/_source/equipment/adhesive.json b/packs/_source/equipment/adhesive.json new file mode 100644 index 0000000..88afc9f --- /dev/null +++ b/packs/_source/equipment/adhesive.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAdhesive", + "name": "Adhesive", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A sticky substance used to adhere materials together. The adhesive can be used on an unsecured Object weighing 10 pounds or less to bond it to anything weighing 10 pounds or more, securing it.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAdhesive", + "reviewed": true +} diff --git a/packs/_source/equipment/air-bladder.json b/packs/_source/equipment/air-bladder.json new file mode 100644 index 0000000..a76d441 --- /dev/null +++ b/packs/_source/equipment/air-bladder.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAirbladder", + "name": "Air bladder", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAirbladder", + "reviewed": true +} diff --git a/packs/_source/equipment/alchemists-fire.json b/packs/_source/equipment/alchemists-fire.json new file mode 100644 index 0000000..c43c1fc --- /dev/null +++ b/packs/_source/equipment/alchemists-fire.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAlchemistsfire", + "name": "Alchemist's fire", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A flammable, tar-like fluid that ignites when exposed to oxygen, dealing 2d6 damage and Burning (Cd6) a hit Target.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "explosive"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAlchemistsfire", + "reviewed": true +} diff --git a/packs/_source/equipment/alchemy-tools.json b/packs/_source/equipment/alchemy-tools.json new file mode 100644 index 0000000..6ef2f3e --- /dev/null +++ b/packs/_source/equipment/alchemy-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAlchemytools", + "name": "Alchemy Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool", "alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAlchemytools", + "reviewed": true +} diff --git a/packs/_source/equipment/alecider-barrel-large.json b/packs/_source/equipment/alecider-barrel-large.json new file mode 100644 index 0000000..cf5b2f6 --- /dev/null +++ b/packs/_source/equipment/alecider-barrel-large.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAleciderbarrellarge", + "name": "Ale/Cider, barrel large", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 4000, + "consumable": true, + "uses": { + "value": 0, + "max": 16, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAleciderbarrellarge", + "reviewed": true +} diff --git a/packs/_source/equipment/alecider-barrel-small.json b/packs/_source/equipment/alecider-barrel-small.json new file mode 100644 index 0000000..cb8be74 --- /dev/null +++ b/packs/_source/equipment/alecider-barrel-small.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAleciderbarrelsmall", + "name": "Ale/Cider, barrel small", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": true, + "uses": { + "value": 0, + "max": 8, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAleciderbarrelsmall", + "reviewed": true +} diff --git a/packs/_source/equipment/alecider-gallon.json b/packs/_source/equipment/alecider-gallon.json new file mode 100644 index 0000000..66f951d --- /dev/null +++ b/packs/_source/equipment/alecider-gallon.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAlecidergallon", + "name": "Ale/Cider, gallon", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": true, + "uses": { + "value": 0, + "max": 8, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAlecidergallon", + "reviewed": true +} diff --git a/packs/_source/equipment/alecider-keg.json b/packs/_source/equipment/alecider-keg.json new file mode 100644 index 0000000..f41bc67 --- /dev/null +++ b/packs/_source/equipment/alecider-keg.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAleciderkeg", + "name": "Ale/Cider, keg", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 15000, + "consumable": true, + "uses": { + "value": 0, + "max": 8, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAleciderkeg", + "reviewed": true +} diff --git a/packs/_source/equipment/alecider-mug.json b/packs/_source/equipment/alecider-mug.json new file mode 100644 index 0000000..6be1f1c --- /dev/null +++ b/packs/_source/equipment/alecider-mug.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAlecidermug", + "name": "Ale/Cider, mug", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAlecidermug", + "reviewed": true +} diff --git a/packs/_source/equipment/alembic.json b/packs/_source/equipment/alembic.json new file mode 100644 index 0000000..e9befcb --- /dev/null +++ b/packs/_source/equipment/alembic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAlembic", + "name": "Alembic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 12000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAlembic", + "reviewed": true +} diff --git a/packs/_source/equipment/alkahest.json b/packs/_source/equipment/alkahest.json new file mode 100644 index 0000000..c4df21b --- /dev/null +++ b/packs/_source/equipment/alkahest.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAlkahest", + "name": "Alkahest", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "When poured on or within an Alchemical Item, the item is reduced back to its raw materials after 1 minute.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAlkahest", + "reviewed": true +} diff --git a/packs/_source/equipment/amuletnecklace.json b/packs/_source/equipment/amuletnecklace.json new file mode 100644 index 0000000..caadeb5 --- /dev/null +++ b/packs/_source/equipment/amuletnecklace.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAmuletnecklace", + "name": "Amulet/necklace", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAmuletnecklace", + "reviewed": true +} diff --git a/packs/_source/equipment/animal-feed-per-day.json b/packs/_source/equipment/animal-feed-per-day.json new file mode 100644 index 0000000..d3da8d4 --- /dev/null +++ b/packs/_source/equipment/animal-feed-per-day.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAnimalfeedperday", + "name": "Animal feed (per Day)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAnimalfeedperday", + "reviewed": true +} diff --git a/packs/_source/equipment/antitoxin.json b/packs/_source/equipment/antitoxin.json new file mode 100644 index 0000000..24696ce --- /dev/null +++ b/packs/_source/equipment/antitoxin.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAntitoxin", + "name": "Antitoxin", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Removes the Sickened Status from the consumer.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAntitoxin", + "reviewed": true +} diff --git a/packs/_source/equipment/astrolabe.json b/packs/_source/equipment/astrolabe.json new file mode 100644 index 0000000..ebff9eb --- /dev/null +++ b/packs/_source/equipment/astrolabe.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipAstrolabe", + "name": "Astrolabe", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool", "navigation"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipAstrolabe", + "reviewed": true +} diff --git a/packs/_source/equipment/backpack.json b/packs/_source/equipment/backpack.json new file mode 100644 index 0000000..14adccf --- /dev/null +++ b/packs/_source/equipment/backpack.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBackpack", + "name": "Backpack", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants +2 Slots, occupies 1 Slot (0 while worn). Can only benefit from one at a time.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 2, + "tags": ["container", "camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBackpack", + "reviewed": true +} diff --git a/packs/_source/equipment/bagpipes.json b/packs/_source/equipment/bagpipes.json new file mode 100644 index 0000000..777403f --- /dev/null +++ b/packs/_source/equipment/bagpipes.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBagpipes", + "name": "Bagpipes", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBagpipes", + "reviewed": true +} diff --git a/packs/_source/equipment/ball-bearings-bag.json b/packs/_source/equipment/ball-bearings-bag.json new file mode 100644 index 0000000..c8cc634 --- /dev/null +++ b/packs/_source/equipment/ball-bearings-bag.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBallbearingsbag", + "name": "Ball bearings, bag", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBallbearingsbag", + "reviewed": true +} diff --git a/packs/_source/equipment/barding-heavy.json b/packs/_source/equipment/barding-heavy.json new file mode 100644 index 0000000..ae219e2 --- /dev/null +++ b/packs/_source/equipment/barding-heavy.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBardingheavy", + "name": "Barding, heavy", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 3, + "slotsPerItem": false, + "value": 25000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["armor", "mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBardingheavy", + "reviewed": true +} diff --git a/packs/_source/equipment/barding-light.json b/packs/_source/equipment/barding-light.json new file mode 100644 index 0000000..49ffcc5 --- /dev/null +++ b/packs/_source/equipment/barding-light.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBardinglight", + "name": "Barding, light", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["armor", "mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBardinglight", + "reviewed": true +} diff --git a/packs/_source/equipment/barrette.json b/packs/_source/equipment/barrette.json new file mode 100644 index 0000000..7728ec1 --- /dev/null +++ b/packs/_source/equipment/barrette.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBarrette", + "name": "Barrette", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBarrette", + "reviewed": true +} diff --git a/packs/_source/equipment/basket.json b/packs/_source/equipment/basket.json new file mode 100644 index 0000000..52614ab --- /dev/null +++ b/packs/_source/equipment/basket.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBasket", + "name": "Basket", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 400, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBasket", + "reviewed": true +} diff --git a/packs/_source/equipment/bedroll.json b/packs/_source/equipment/bedroll.json new file mode 100644 index 0000000..beda844 --- /dev/null +++ b/packs/_source/equipment/bedroll.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBedroll", + "name": "Bedroll", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBedroll", + "reviewed": true +} diff --git a/packs/_source/equipment/beer-gallon.json b/packs/_source/equipment/beer-gallon.json new file mode 100644 index 0000000..4f2c6cd --- /dev/null +++ b/packs/_source/equipment/beer-gallon.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBeergallon", + "name": "Beer, gallon", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": true, + "uses": { + "value": 0, + "max": 8, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBeergallon", + "reviewed": true +} diff --git a/packs/_source/equipment/beer-keg.json b/packs/_source/equipment/beer-keg.json new file mode 100644 index 0000000..deffe9b --- /dev/null +++ b/packs/_source/equipment/beer-keg.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBeerkeg", + "name": "Beer, keg", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 15000, + "consumable": true, + "uses": { + "value": 0, + "max": 8, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBeerkeg", + "reviewed": true +} diff --git a/packs/_source/equipment/beer-mug.json b/packs/_source/equipment/beer-mug.json new file mode 100644 index 0000000..a14cdb1 --- /dev/null +++ b/packs/_source/equipment/beer-mug.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBeermug", + "name": "Beer, mug", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBeermug", + "reviewed": true +} diff --git a/packs/_source/equipment/bell-handheld.json b/packs/_source/equipment/bell-handheld.json new file mode 100644 index 0000000..6f828ea --- /dev/null +++ b/packs/_source/equipment/bell-handheld.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBellhandheld", + "name": "Bell, handheld", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBellhandheld", + "reviewed": true +} diff --git a/packs/_source/equipment/bellows.json b/packs/_source/equipment/bellows.json new file mode 100644 index 0000000..3ff6325 --- /dev/null +++ b/packs/_source/equipment/bellows.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBellows", + "name": "Bellows", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBellows", + "reviewed": true +} diff --git a/packs/_source/equipment/belt-buckle-decorative.json b/packs/_source/equipment/belt-buckle-decorative.json new file mode 100644 index 0000000..4bd898b --- /dev/null +++ b/packs/_source/equipment/belt-buckle-decorative.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBeltbuckledecorative", + "name": "Belt buckle, decorative", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBeltbuckledecorative", + "reviewed": true +} diff --git a/packs/_source/equipment/belt.json b/packs/_source/equipment/belt.json new file mode 100644 index 0000000..f150444 --- /dev/null +++ b/packs/_source/equipment/belt.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBelt", + "name": "Belt", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBelt", + "reviewed": true +} diff --git a/packs/_source/equipment/blacksmithing-tools.json b/packs/_source/equipment/blacksmithing-tools.json new file mode 100644 index 0000000..bd36516 --- /dev/null +++ b/packs/_source/equipment/blacksmithing-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBlacksmithingtools", + "name": "Blacksmithing Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBlacksmithingtools", + "reviewed": true +} diff --git a/packs/_source/equipment/blanket.json b/packs/_source/equipment/blanket.json new file mode 100644 index 0000000..58d1725 --- /dev/null +++ b/packs/_source/equipment/blanket.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBlanket", + "name": "Blanket", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 400, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBlanket", + "reviewed": true +} diff --git a/packs/_source/equipment/block-and-tackle.json b/packs/_source/equipment/block-and-tackle.json new file mode 100644 index 0000000..69359ef --- /dev/null +++ b/packs/_source/equipment/block-and-tackle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBlockandtackle", + "name": "Block and tackle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBlockandtackle", + "reviewed": true +} diff --git a/packs/_source/equipment/book-blank.json b/packs/_source/equipment/book-blank.json new file mode 100644 index 0000000..7dfdb4d --- /dev/null +++ b/packs/_source/equipment/book-blank.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBookblank", + "name": "Book, blank", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBookblank", + "reviewed": true +} diff --git a/packs/_source/equipment/book-sheet-music.json b/packs/_source/equipment/book-sheet-music.json new file mode 100644 index 0000000..a09a6c1 --- /dev/null +++ b/packs/_source/equipment/book-sheet-music.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBooksheetmusic", + "name": "Book, sheet music", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBooksheetmusic", + "reviewed": true +} diff --git a/packs/_source/equipment/book.json b/packs/_source/equipment/book.json new file mode 100644 index 0000000..8514914 --- /dev/null +++ b/packs/_source/equipment/book.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBook", + "name": "Book", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBook", + "reviewed": true +} diff --git a/packs/_source/equipment/boots.json b/packs/_source/equipment/boots.json new file mode 100644 index 0000000..b73b395 --- /dev/null +++ b/packs/_source/equipment/boots.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBoots", + "name": "Boots", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBoots", + "reviewed": true +} diff --git a/packs/_source/equipment/bottle-glass.json b/packs/_source/equipment/bottle-glass.json new file mode 100644 index 0000000..c0171ad --- /dev/null +++ b/packs/_source/equipment/bottle-glass.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBottleglass", + "name": "Bottle, glass", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1\u00bd pints.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBottleglass", + "reviewed": true +} diff --git a/packs/_source/equipment/bracelet-gold.json b/packs/_source/equipment/bracelet-gold.json new file mode 100644 index 0000000..e9a4e2b --- /dev/null +++ b/packs/_source/equipment/bracelet-gold.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBraceletgold", + "name": "Bracelet, gold", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 25000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBraceletgold", + "reviewed": true +} diff --git a/packs/_source/equipment/bracelet-silver.json b/packs/_source/equipment/bracelet-silver.json new file mode 100644 index 0000000..1691832 --- /dev/null +++ b/packs/_source/equipment/bracelet-silver.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBraceletsilver", + "name": "Bracelet, silver", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBraceletsilver", + "reviewed": true +} diff --git a/packs/_source/equipment/brazier.json b/packs/_source/equipment/brazier.json new file mode 100644 index 0000000..fa4a843 --- /dev/null +++ b/packs/_source/equipment/brazier.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBrazier", + "name": "Brazier", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBrazier", + "reviewed": true +} diff --git a/packs/_source/equipment/bread-loaf-of.json b/packs/_source/equipment/bread-loaf-of.json new file mode 100644 index 0000000..dda2913 --- /dev/null +++ b/packs/_source/equipment/bread-loaf-of.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBreadloafof", + "name": "Bread, loaf of", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBreadloafof", + "reviewed": true +} diff --git a/packs/_source/equipment/brewing-tools.json b/packs/_source/equipment/brewing-tools.json new file mode 100644 index 0000000..6f0ea7d --- /dev/null +++ b/packs/_source/equipment/brewing-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBrewingtools", + "name": "Brewing Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBrewingtools", + "reviewed": true +} diff --git a/packs/_source/equipment/bucket.json b/packs/_source/equipment/bucket.json new file mode 100644 index 0000000..7fc026d --- /dev/null +++ b/packs/_source/equipment/bucket.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipBucket", + "name": "Bucket", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 gallon.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipBucket", + "reviewed": true +} diff --git a/packs/_source/equipment/caftan.json b/packs/_source/equipment/caftan.json new file mode 100644 index 0000000..31a08ef --- /dev/null +++ b/packs/_source/equipment/caftan.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCaftan", + "name": "Caftan", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCaftan", + "reviewed": true +} diff --git a/packs/_source/equipment/caltrops-bag-of-10.json b/packs/_source/equipment/caltrops-bag-of-10.json new file mode 100644 index 0000000..e54c804 --- /dev/null +++ b/packs/_source/equipment/caltrops-bag-of-10.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCaltropsbagof10", + "name": "Caltrops, bag of 10", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 400, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCaltropsbagof10", + "reviewed": true +} diff --git a/packs/_source/equipment/camel.json b/packs/_source/equipment/camel.json new file mode 100644 index 0000000..656baf3 --- /dev/null +++ b/packs/_source/equipment/camel.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCamel", + "name": "Camel", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A beast of burden suitable for desert travel.
", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCamel", + "reviewed": true +} diff --git a/packs/_source/equipment/can-opener.json b/packs/_source/equipment/can-opener.json new file mode 100644 index 0000000..d10a4b5 --- /dev/null +++ b/packs/_source/equipment/can-opener.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCanopener", + "name": "Can opener", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCanopener", + "reviewed": true +} diff --git a/packs/_source/equipment/candle-basic.json b/packs/_source/equipment/candle-basic.json new file mode 100644 index 0000000..a79593a --- /dev/null +++ b/packs/_source/equipment/candle-basic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCandlebasic", + "name": "Candle, basic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Sheds light out to Close for 1 hour.
", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCandlebasic", + "reviewed": true +} diff --git a/packs/_source/equipment/candle-calming.json b/packs/_source/equipment/candle-calming.json new file mode 100644 index 0000000..099be1c --- /dev/null +++ b/packs/_source/equipment/candle-calming.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCandlecalming", + "name": "Candle, calming", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Sheds light out to Close. The air in the Light is filled with a fresh, crisp odor. Those in its Light gain Favor on Saves against Berserk or Frightened.
", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 25000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCandlecalming", + "reviewed": true +} diff --git a/packs/_source/equipment/candle-insectbane.json b/packs/_source/equipment/candle-insectbane.json new file mode 100644 index 0000000..917ead1 --- /dev/null +++ b/packs/_source/equipment/candle-insectbane.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCandleinsectbane", + "name": "Candle, insectbane", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Sheds light out to Close for up to 1 hour while burning. Insects act as Frightened while within the light it sheds.
", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCandleinsectbane", + "reviewed": true +} diff --git a/packs/_source/equipment/candle-mold.json b/packs/_source/equipment/candle-mold.json new file mode 100644 index 0000000..3ba1177 --- /dev/null +++ b/packs/_source/equipment/candle-mold.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCandlemold", + "name": "Candle mold", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCandlemold", + "reviewed": true +} diff --git a/packs/_source/equipment/candle-restful.json b/packs/_source/equipment/candle-restful.json new file mode 100644 index 0000000..345cf20 --- /dev/null +++ b/packs/_source/equipment/candle-restful.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCandlerestful", + "name": "Candle, restful", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Sheds light out to Close for up to 1 hour while burning and fills the air within Near with a cozy odor. Once per Shift, a Being that takes a Breather in this area gains Favor on its next Will Save that Shift.
", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 25000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCandlerestful", + "reviewed": true +} diff --git a/packs/_source/equipment/candle.json b/packs/_source/equipment/candle.json new file mode 100644 index 0000000..079665b --- /dev/null +++ b/packs/_source/equipment/candle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCandle", + "name": "Candle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Sheds light out to Close for 1 hour.
", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 500, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCandle", + "reviewed": true +} diff --git a/packs/_source/equipment/cape.json b/packs/_source/equipment/cape.json new file mode 100644 index 0000000..5753ac5 --- /dev/null +++ b/packs/_source/equipment/cape.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCape", + "name": "Cape", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 800, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCape", + "reviewed": true +} diff --git a/packs/_source/equipment/cards-deck-marked.json b/packs/_source/equipment/cards-deck-marked.json new file mode 100644 index 0000000..7c2f51e --- /dev/null +++ b/packs/_source/equipment/cards-deck-marked.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCardsdeckmarked", + "name": "Cards, deck marked", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCardsdeckmarked", + "reviewed": true +} diff --git a/packs/_source/equipment/cards-deck-playing.json b/packs/_source/equipment/cards-deck-playing.json new file mode 100644 index 0000000..a04e463 --- /dev/null +++ b/packs/_source/equipment/cards-deck-playing.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCardsdeckplaying", + "name": "Cards, deck playing", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCardsdeckplaying", + "reviewed": true +} diff --git a/packs/_source/equipment/cards-deck-tarot.json b/packs/_source/equipment/cards-deck-tarot.json new file mode 100644 index 0000000..cf4e6ee --- /dev/null +++ b/packs/_source/equipment/cards-deck-tarot.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCardsdecktarot", + "name": "Cards, deck tarot", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCardsdecktarot", + "reviewed": true +} diff --git a/packs/_source/equipment/case-mapscroll.json b/packs/_source/equipment/case-mapscroll.json new file mode 100644 index 0000000..0ee0a85 --- /dev/null +++ b/packs/_source/equipment/case-mapscroll.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCasemapscroll", + "name": "Case, map/scroll", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCasemapscroll", + "reviewed": true +} diff --git a/packs/_source/equipment/cat.json b/packs/_source/equipment/cat.json new file mode 100644 index 0000000..7ed4cda --- /dev/null +++ b/packs/_source/equipment/cat.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCat", + "name": "Cat", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCat", + "reviewed": true +} diff --git a/packs/_source/equipment/cattle-bison.json b/packs/_source/equipment/cattle-bison.json new file mode 100644 index 0000000..ffc186a --- /dev/null +++ b/packs/_source/equipment/cattle-bison.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCattlebison", + "name": "Cattle - Bison", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 250000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCattlebison", + "reviewed": true +} diff --git a/packs/_source/equipment/cattle-bull.json b/packs/_source/equipment/cattle-bull.json new file mode 100644 index 0000000..1797079 --- /dev/null +++ b/packs/_source/equipment/cattle-bull.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCattlebull", + "name": "Cattle - Bull", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 600000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCattlebull", + "reviewed": true +} diff --git a/packs/_source/equipment/cattle-cow.json b/packs/_source/equipment/cattle-cow.json new file mode 100644 index 0000000..c3c4299 --- /dev/null +++ b/packs/_source/equipment/cattle-cow.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCattlecow", + "name": "Cattle - Cow", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 90000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCattlecow", + "reviewed": true +} diff --git a/packs/_source/equipment/cattle-ox.json b/packs/_source/equipment/cattle-ox.json new file mode 100644 index 0000000..085a4ab --- /dev/null +++ b/packs/_source/equipment/cattle-ox.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCattleox", + "name": "Cattle - Ox", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 50000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCattleox", + "reviewed": true +} diff --git a/packs/_source/equipment/cauldron.json b/packs/_source/equipment/cauldron.json new file mode 100644 index 0000000..291d41d --- /dev/null +++ b/packs/_source/equipment/cauldron.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCauldron", + "name": "Cauldron", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 30 gallons.
", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container", "alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCauldron", + "reviewed": true +} diff --git a/packs/_source/equipment/censer.json b/packs/_source/equipment/censer.json new file mode 100644 index 0000000..6c1ac4f --- /dev/null +++ b/packs/_source/equipment/censer.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCenser", + "name": "Censer", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCenser", + "reviewed": true +} diff --git a/packs/_source/equipment/chain-10-feet.json b/packs/_source/equipment/chain-10-feet.json new file mode 100644 index 0000000..670c778 --- /dev/null +++ b/packs/_source/equipment/chain-10-feet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipChain10feet", + "name": "Chain (10 feet)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipChain10feet", + "reviewed": true +} diff --git a/packs/_source/equipment/chalk-bag-of.json b/packs/_source/equipment/chalk-bag-of.json new file mode 100644 index 0000000..333bb8e --- /dev/null +++ b/packs/_source/equipment/chalk-bag-of.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipChalkbagof", + "name": "Chalk, bag of", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipChalkbagof", + "reviewed": true +} diff --git a/packs/_source/equipment/chalk-piece-of.json b/packs/_source/equipment/chalk-piece-of.json new file mode 100644 index 0000000..d1e6b7c --- /dev/null +++ b/packs/_source/equipment/chalk-piece-of.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipChalkpieceof", + "name": "Chalk, piece of", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipChalkpieceof", + "reviewed": true +} diff --git a/packs/_source/equipment/chest.json b/packs/_source/equipment/chest.json new file mode 100644 index 0000000..b7b202f --- /dev/null +++ b/packs/_source/equipment/chest.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipChest", + "name": "Chest", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipChest", + "reviewed": true +} diff --git a/packs/_source/equipment/chisel.json b/packs/_source/equipment/chisel.json new file mode 100644 index 0000000..43454f9 --- /dev/null +++ b/packs/_source/equipment/chisel.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipChisel", + "name": "Chisel", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipChisel", + "reviewed": true +} diff --git a/packs/_source/equipment/circlet-brass.json b/packs/_source/equipment/circlet-brass.json new file mode 100644 index 0000000..c682c57 --- /dev/null +++ b/packs/_source/equipment/circlet-brass.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCircletbrass", + "name": "Circlet, brass", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCircletbrass", + "reviewed": true +} diff --git a/packs/_source/equipment/circlet-gold.json b/packs/_source/equipment/circlet-gold.json new file mode 100644 index 0000000..98dd71f --- /dev/null +++ b/packs/_source/equipment/circlet-gold.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCircletgold", + "name": "Circlet, gold", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 15000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCircletgold", + "reviewed": true +} diff --git a/packs/_source/equipment/circlet-silver.json b/packs/_source/equipment/circlet-silver.json new file mode 100644 index 0000000..6f60bc1 --- /dev/null +++ b/packs/_source/equipment/circlet-silver.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCircletsilver", + "name": "Circlet, silver", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCircletsilver", + "reviewed": true +} diff --git a/packs/_source/equipment/clearbreath.json b/packs/_source/equipment/clearbreath.json new file mode 100644 index 0000000..1a203bb --- /dev/null +++ b/packs/_source/equipment/clearbreath.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipClearbreath", + "name": "Clearbreath", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Gray, smokey vapors that temporarily dull one's sense of smell when inhaled. A Being that inhales the clearbreath gains Favor on Saves against foul smells and gases for 1 hour.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipClearbreath", + "reviewed": true +} diff --git a/packs/_source/equipment/cloak.json b/packs/_source/equipment/cloak.json new file mode 100644 index 0000000..635b5b2 --- /dev/null +++ b/packs/_source/equipment/cloak.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCloak", + "name": "Cloak", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCloak", + "reviewed": true +} diff --git a/packs/_source/equipment/clothes-casual.json b/packs/_source/equipment/clothes-casual.json new file mode 100644 index 0000000..62e36f3 --- /dev/null +++ b/packs/_source/equipment/clothes-casual.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipClothescasual", + "name": "Clothes, casual", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipClothescasual", + "reviewed": true +} diff --git a/packs/_source/equipment/clothes-formal.json b/packs/_source/equipment/clothes-formal.json new file mode 100644 index 0000000..018334b --- /dev/null +++ b/packs/_source/equipment/clothes-formal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipClothesformal", + "name": "Clothes, formal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 15000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipClothesformal", + "reviewed": true +} diff --git a/packs/_source/equipment/clothes-winter-set.json b/packs/_source/equipment/clothes-winter-set.json new file mode 100644 index 0000000..bb2cd07 --- /dev/null +++ b/packs/_source/equipment/clothes-winter-set.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipClotheswinterset", + "name": "Clothes, winter set", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipClotheswinterset", + "reviewed": true +} diff --git a/packs/_source/equipment/coffee-grounds-1-lb-bag.json b/packs/_source/equipment/coffee-grounds-1-lb-bag.json new file mode 100644 index 0000000..e50d6c5 --- /dev/null +++ b/packs/_source/equipment/coffee-grounds-1-lb-bag.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCoffeegrounds1lbbag", + "name": "Coffee grounds (1 lb. bag)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCoffeegrounds1lbbag", + "reviewed": true +} diff --git a/packs/_source/equipment/compass.json b/packs/_source/equipment/compass.json new file mode 100644 index 0000000..c91333c --- /dev/null +++ b/packs/_source/equipment/compass.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCompass", + "name": "Compass", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool", "navigation"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCompass", + "reviewed": true +} diff --git a/packs/_source/equipment/concertina.json b/packs/_source/equipment/concertina.json new file mode 100644 index 0000000..dea1c66 --- /dev/null +++ b/packs/_source/equipment/concertina.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipConcertina", + "name": "Concertina", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipConcertina", + "reviewed": true +} diff --git a/packs/_source/equipment/cooking-tools.json b/packs/_source/equipment/cooking-tools.json new file mode 100644 index 0000000..949db17 --- /dev/null +++ b/packs/_source/equipment/cooking-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCookingtools", + "name": "Cooking Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCookingtools", + "reviewed": true +} diff --git a/packs/_source/equipment/costume.json b/packs/_source/equipment/costume.json new file mode 100644 index 0000000..a49367f --- /dev/null +++ b/packs/_source/equipment/costume.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCostume", + "name": "Costume", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCostume", + "reviewed": true +} diff --git a/packs/_source/equipment/cowl.json b/packs/_source/equipment/cowl.json new file mode 100644 index 0000000..ad7de3a --- /dev/null +++ b/packs/_source/equipment/cowl.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCowl", + "name": "Cowl", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCowl", + "reviewed": true +} diff --git a/packs/_source/equipment/crowbar.json b/packs/_source/equipment/crowbar.json new file mode 100644 index 0000000..9e4805b --- /dev/null +++ b/packs/_source/equipment/crowbar.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCrowbar", + "name": "Crowbar", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCrowbar", + "reviewed": true +} diff --git a/packs/_source/equipment/crucible.json b/packs/_source/equipment/crucible.json new file mode 100644 index 0000000..9e7c1a5 --- /dev/null +++ b/packs/_source/equipment/crucible.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipCrucible", + "name": "Crucible", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipCrucible", + "reviewed": true +} diff --git a/packs/_source/equipment/darksight-powder.json b/packs/_source/equipment/darksight-powder.json new file mode 100644 index 0000000..643e186 --- /dev/null +++ b/packs/_source/equipment/darksight-powder.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDarksightpowder", + "name": "Darksight powder", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Can't be seen with normal vision or beyond Close. When viewed with Darksight, the powder glows. A vial contains enough powder to write a short sentence (10 words or less).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDarksightpowder", + "reviewed": true +} diff --git a/packs/_source/equipment/dice-set-loaded.json b/packs/_source/equipment/dice-set-loaded.json new file mode 100644 index 0000000..227cded --- /dev/null +++ b/packs/_source/equipment/dice-set-loaded.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDicesetloaded", + "name": "Dice set, loaded", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDicesetloaded", + "reviewed": true +} diff --git a/packs/_source/equipment/dice-set.json b/packs/_source/equipment/dice-set.json new file mode 100644 index 0000000..369c952 --- /dev/null +++ b/packs/_source/equipment/dice-set.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDiceset", + "name": "Dice set", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDiceset", + "reviewed": true +} diff --git a/packs/_source/equipment/dog-common.json b/packs/_source/equipment/dog-common.json new file mode 100644 index 0000000..f02bdc9 --- /dev/null +++ b/packs/_source/equipment/dog-common.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDogcommon", + "name": "Dog, common", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDogcommon", + "reviewed": true +} diff --git a/packs/_source/equipment/dog-warhound.json b/packs/_source/equipment/dog-warhound.json new file mode 100644 index 0000000..64b872e --- /dev/null +++ b/packs/_source/equipment/dog-warhound.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDogwarhound", + "name": "Dog, warhound", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDogwarhound", + "reviewed": true +} diff --git a/packs/_source/equipment/doll.json b/packs/_source/equipment/doll.json new file mode 100644 index 0000000..4627872 --- /dev/null +++ b/packs/_source/equipment/doll.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDoll", + "name": "Doll", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDoll", + "reviewed": true +} diff --git a/packs/_source/equipment/doublet.json b/packs/_source/equipment/doublet.json new file mode 100644 index 0000000..1c89679 --- /dev/null +++ b/packs/_source/equipment/doublet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDoublet", + "name": "Doublet", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDoublet", + "reviewed": true +} diff --git a/packs/_source/equipment/dress-casual.json b/packs/_source/equipment/dress-casual.json new file mode 100644 index 0000000..758ca6c --- /dev/null +++ b/packs/_source/equipment/dress-casual.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDresscasual", + "name": "Dress, casual", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDresscasual", + "reviewed": true +} diff --git a/packs/_source/equipment/dress-formal.json b/packs/_source/equipment/dress-formal.json new file mode 100644 index 0000000..0ebce74 --- /dev/null +++ b/packs/_source/equipment/dress-formal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDressformal", + "name": "Dress, formal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDressformal", + "reviewed": true +} diff --git a/packs/_source/equipment/drill-hand.json b/packs/_source/equipment/drill-hand.json new file mode 100644 index 0000000..b5f57df --- /dev/null +++ b/packs/_source/equipment/drill-hand.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDrillhand", + "name": "Drill, hand", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDrillhand", + "reviewed": true +} diff --git a/packs/_source/equipment/drum.json b/packs/_source/equipment/drum.json new file mode 100644 index 0000000..e94bda9 --- /dev/null +++ b/packs/_source/equipment/drum.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDrum", + "name": "Drum", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 2500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDrum", + "reviewed": true +} diff --git a/packs/_source/equipment/dwarfblind-stone.json b/packs/_source/equipment/dwarfblind-stone.json new file mode 100644 index 0000000..204a8ca --- /dev/null +++ b/packs/_source/equipment/dwarfblind-stone.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipDwarfblindstone", + "name": "Dwarfblind stone", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Treated stones with a purple sheen. A hit Target with Darksight is Blinded (Cd6).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "explosive"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipDwarfblindstone", + "reviewed": true +} diff --git a/packs/_source/equipment/earplugs.json b/packs/_source/equipment/earplugs.json new file mode 100644 index 0000000..15547d1 --- /dev/null +++ b/packs/_source/equipment/earplugs.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipEarplugs", + "name": "Earplugs", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipEarplugs", + "reviewed": true +} diff --git a/packs/_source/equipment/earring.json b/packs/_source/equipment/earring.json new file mode 100644 index 0000000..0905609 --- /dev/null +++ b/packs/_source/equipment/earring.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipEarring", + "name": "Earring", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipEarring", + "reviewed": true +} diff --git a/packs/_source/equipment/egg-dozen.json b/packs/_source/equipment/egg-dozen.json new file mode 100644 index 0000000..0b87272 --- /dev/null +++ b/packs/_source/equipment/egg-dozen.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipEggdozen", + "name": "Egg, dozen", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": true, + "uses": { + "value": 0, + "max": 12, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipEggdozen", + "reviewed": true +} diff --git a/packs/_source/equipment/elephant.json b/packs/_source/equipment/elephant.json new file mode 100644 index 0000000..cf13a00 --- /dev/null +++ b/packs/_source/equipment/elephant.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipElephant", + "name": "Elephant", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 200000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal", "mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipElephant", + "reviewed": true +} diff --git a/packs/_source/equipment/fabric-fine-1-sq-yd.json b/packs/_source/equipment/fabric-fine-1-sq-yd.json new file mode 100644 index 0000000..a5f2f18 --- /dev/null +++ b/packs/_source/equipment/fabric-fine-1-sq-yd.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFabricfine1sqyd", + "name": "Fabric, fine (1 sq. yd.)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFabricfine1sqyd", + "reviewed": true +} diff --git a/packs/_source/equipment/fabric-plain-1-sq-yd.json b/packs/_source/equipment/fabric-plain-1-sq-yd.json new file mode 100644 index 0000000..61c0ce2 --- /dev/null +++ b/packs/_source/equipment/fabric-plain-1-sq-yd.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFabricplain1sqyd", + "name": "Fabric, plain (1 sq. yd.)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFabricplain1sqyd", + "reviewed": true +} diff --git a/packs/_source/equipment/firecracker.json b/packs/_source/equipment/firecracker.json new file mode 100644 index 0000000..4489cf1 --- /dev/null +++ b/packs/_source/equipment/firecracker.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFirecracker", + "name": "Firecracker", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFirecracker", + "reviewed": true +} diff --git a/packs/_source/equipment/fishing-rod.json b/packs/_source/equipment/fishing-rod.json new file mode 100644 index 0000000..e46cd32 --- /dev/null +++ b/packs/_source/equipment/fishing-rod.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFishingrod", + "name": "Fishing rod", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 3000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFishingrod", + "reviewed": true +} diff --git a/packs/_source/equipment/fishing-tackle.json b/packs/_source/equipment/fishing-tackle.json new file mode 100644 index 0000000..97ef1c8 --- /dev/null +++ b/packs/_source/equipment/fishing-tackle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFishingtackle", + "name": "Fishing tackle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFishingtackle", + "reviewed": true +} diff --git a/packs/_source/equipment/flask.json b/packs/_source/equipment/flask.json new file mode 100644 index 0000000..cbc825f --- /dev/null +++ b/packs/_source/equipment/flask.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFlask", + "name": "Flask", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 pint.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFlask", + "reviewed": true +} diff --git a/packs/_source/equipment/flint-steel.json b/packs/_source/equipment/flint-steel.json new file mode 100644 index 0000000..a1b9f67 --- /dev/null +++ b/packs/_source/equipment/flint-steel.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFlintsteel", + "name": "Flint & steel", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 400, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFlintsteel", + "reviewed": true +} diff --git a/packs/_source/equipment/flour-1-lb-bag.json b/packs/_source/equipment/flour-1-lb-bag.json new file mode 100644 index 0000000..2d87282 --- /dev/null +++ b/packs/_source/equipment/flour-1-lb-bag.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFlour1lbbag", + "name": "Flour (1 lb. bag)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFlour1lbbag", + "reviewed": true +} diff --git a/packs/_source/equipment/flute.json b/packs/_source/equipment/flute.json new file mode 100644 index 0000000..3ae2996 --- /dev/null +++ b/packs/_source/equipment/flute.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFlute", + "name": "Flute", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFlute", + "reviewed": true +} diff --git a/packs/_source/equipment/fowl-chicken-hen.json b/packs/_source/equipment/fowl-chicken-hen.json new file mode 100644 index 0000000..7da418d --- /dev/null +++ b/packs/_source/equipment/fowl-chicken-hen.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFowlchickenhen", + "name": "Fowl - Chicken, hen", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal", "food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFowlchickenhen", + "reviewed": true +} diff --git a/packs/_source/equipment/fowl-chicken-rooster.json b/packs/_source/equipment/fowl-chicken-rooster.json new file mode 100644 index 0000000..d0d094a --- /dev/null +++ b/packs/_source/equipment/fowl-chicken-rooster.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFowlchickenrooster", + "name": "Fowl - Chicken, rooster", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFowlchickenrooster", + "reviewed": true +} diff --git a/packs/_source/equipment/fowl-duck.json b/packs/_source/equipment/fowl-duck.json new file mode 100644 index 0000000..a6a5a42 --- /dev/null +++ b/packs/_source/equipment/fowl-duck.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFowlduck", + "name": "Fowl - Duck", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal", "food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFowlduck", + "reviewed": true +} diff --git a/packs/_source/equipment/frigid-azote.json b/packs/_source/equipment/frigid-azote.json new file mode 100644 index 0000000..be0c450 --- /dev/null +++ b/packs/_source/equipment/frigid-azote.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFrigidazote", + "name": "Frigid azote", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A liquid that rapidly freezes when exposed to oxygen. A Target who is hit with this Item takes d6 damage and its Speed is halved until the end of its next Turn.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "explosive"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFrigidazote", + "reviewed": true +} diff --git a/packs/_source/equipment/frock.json b/packs/_source/equipment/frock.json new file mode 100644 index 0000000..6f4097a --- /dev/null +++ b/packs/_source/equipment/frock.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipFrock", + "name": "Frock", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipFrock", + "reviewed": true +} diff --git a/packs/_source/equipment/game-set.json b/packs/_source/equipment/game-set.json new file mode 100644 index 0000000..956bb46 --- /dev/null +++ b/packs/_source/equipment/game-set.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGameset", + "name": "Game set", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGameset", + "reviewed": true +} diff --git a/packs/_source/equipment/gem-common.json b/packs/_source/equipment/gem-common.json new file mode 100644 index 0000000..d20c412 --- /dev/null +++ b/packs/_source/equipment/gem-common.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGemcommon", + "name": "Gem, common", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "treasure", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGemcommon", + "reviewed": true +} diff --git a/packs/_source/equipment/gem-rare.json b/packs/_source/equipment/gem-rare.json new file mode 100644 index 0000000..bc2f418 --- /dev/null +++ b/packs/_source/equipment/gem-rare.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGemrare", + "name": "Gem, rare", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 500000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "treasure", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGemrare", + "reviewed": true +} diff --git a/packs/_source/equipment/gem-uncommon.json b/packs/_source/equipment/gem-uncommon.json new file mode 100644 index 0000000..dc55ce7 --- /dev/null +++ b/packs/_source/equipment/gem-uncommon.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGemuncommon", + "name": "Gem, uncommon", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 50000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "treasure", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGemuncommon", + "reviewed": true +} diff --git a/packs/_source/equipment/gem-very-rare.json b/packs/_source/equipment/gem-very-rare.json new file mode 100644 index 0000000..ff48cb2 --- /dev/null +++ b/packs/_source/equipment/gem-very-rare.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGemveryrare", + "name": "Gem, very rare", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 1000000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "treasure", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGemveryrare", + "reviewed": true +} diff --git a/packs/_source/equipment/girdle.json b/packs/_source/equipment/girdle.json new file mode 100644 index 0000000..cc27745 --- /dev/null +++ b/packs/_source/equipment/girdle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGirdle", + "name": "Girdle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 700, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGirdle", + "reviewed": true +} diff --git a/packs/_source/equipment/glass-cutter.json b/packs/_source/equipment/glass-cutter.json new file mode 100644 index 0000000..8c5c161 --- /dev/null +++ b/packs/_source/equipment/glass-cutter.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGlasscutter", + "name": "Glass cutter", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGlasscutter", + "reviewed": true +} diff --git a/packs/_source/equipment/glass-tubing-1-foot.json b/packs/_source/equipment/glass-tubing-1-foot.json new file mode 100644 index 0000000..3fd0070 --- /dev/null +++ b/packs/_source/equipment/glass-tubing-1-foot.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGlasstubing1foot", + "name": "Glass, tubing (1-foot)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGlasstubing1foot", + "reviewed": true +} diff --git a/packs/_source/equipment/gloves.json b/packs/_source/equipment/gloves.json new file mode 100644 index 0000000..c86db67 --- /dev/null +++ b/packs/_source/equipment/gloves.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGloves", + "name": "Gloves", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGloves", + "reviewed": true +} diff --git a/packs/_source/equipment/graduate.json b/packs/_source/equipment/graduate.json new file mode 100644 index 0000000..ba1f1b1 --- /dev/null +++ b/packs/_source/equipment/graduate.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGraduate", + "name": "Graduate", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds \u00bc pint.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container", "alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGraduate", + "reviewed": true +} diff --git a/packs/_source/equipment/grappling-hook.json b/packs/_source/equipment/grappling-hook.json new file mode 100644 index 0000000..2f6535d --- /dev/null +++ b/packs/_source/equipment/grappling-hook.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGrapplinghook", + "name": "Grappling hook", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["climbing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGrapplinghook", + "reviewed": true +} diff --git a/packs/_source/equipment/gravebane.json b/packs/_source/equipment/gravebane.json new file mode 100644 index 0000000..d484944 --- /dev/null +++ b/packs/_source/equipment/gravebane.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipGravebane", + "name": "Gravebane", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "This thick white liquid evaporates almost instantly upon contact with air, creating a thin, nearly invisible smoke. The smoke is nearly odorless and has no effect on most Beings. Undead, however, are repulsed by it.
Once used, the smoke fills the area out to Near for 1 minute, or until disbursed by strong wind. Undead are Dazed while in the smoke, ignoring Immunities.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipGravebane", + "reviewed": true +} diff --git a/packs/_source/equipment/hammer-sledge.json b/packs/_source/equipment/hammer-sledge.json new file mode 100644 index 0000000..c698a51 --- /dev/null +++ b/packs/_source/equipment/hammer-sledge.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHammersledge", + "name": "Hammer, sledge", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHammersledge", + "reviewed": true +} diff --git a/packs/_source/equipment/hammer.json b/packs/_source/equipment/hammer.json new file mode 100644 index 0000000..4262aa6 --- /dev/null +++ b/packs/_source/equipment/hammer.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHammer", + "name": "Hammer", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHammer", + "reviewed": true +} diff --git a/packs/_source/equipment/hammock.json b/packs/_source/equipment/hammock.json new file mode 100644 index 0000000..d1a916f --- /dev/null +++ b/packs/_source/equipment/hammock.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHammock", + "name": "Hammock", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHammock", + "reviewed": true +} diff --git a/packs/_source/equipment/harp.json b/packs/_source/equipment/harp.json new file mode 100644 index 0000000..72a3e7b --- /dev/null +++ b/packs/_source/equipment/harp.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHarp", + "name": "Harp", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 50000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHarp", + "reviewed": true +} diff --git a/packs/_source/equipment/heat-mat.json b/packs/_source/equipment/heat-mat.json new file mode 100644 index 0000000..f469083 --- /dev/null +++ b/packs/_source/equipment/heat-mat.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHeatmat", + "name": "Heat mat", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 25000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHeatmat", + "reviewed": true +} diff --git a/packs/_source/equipment/heatsuit-outfit.json b/packs/_source/equipment/heatsuit-outfit.json new file mode 100644 index 0000000..732c238 --- /dev/null +++ b/packs/_source/equipment/heatsuit-outfit.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHeatsuitoutfit", + "name": "Heatsuit outfit", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHeatsuitoutfit", + "reviewed": true +} diff --git a/packs/_source/equipment/herbalism-tools.json b/packs/_source/equipment/herbalism-tools.json new file mode 100644 index 0000000..4079220 --- /dev/null +++ b/packs/_source/equipment/herbalism-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHerbalismtools", + "name": "Herbalism Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHerbalismtools", + "reviewed": true +} diff --git a/packs/_source/equipment/holy-water.json b/packs/_source/equipment/holy-water.json new file mode 100644 index 0000000..c012fcc --- /dev/null +++ b/packs/_source/equipment/holy-water.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHolywater", + "name": "Holy water", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Used in sacred rituals, and is known to be caustic to unholy Beings. Undead and Hellspawn hit with it take d6 damage and are Burning (Cd4).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["holy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHolywater", + "reviewed": true +} diff --git a/packs/_source/equipment/homunculus-soup.json b/packs/_source/equipment/homunculus-soup.json new file mode 100644 index 0000000..3efd4cc --- /dev/null +++ b/packs/_source/equipment/homunculus-soup.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHomunculussoup", + "name": "Homunculus soup", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A special mixture of clay, ash, mandrake root, and the alchemist's own blood. This soup creates a homunculus under the alchemist's control, and it uses their Craft Skill for any Checks it makes. If another homunculus is created from the same alchemist's blood, the oldest homunculus dies.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 75000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHomunculussoup", + "reviewed": true +} diff --git a/packs/_source/equipment/horse-draft.json b/packs/_source/equipment/horse-draft.json new file mode 100644 index 0000000..b579b2e --- /dev/null +++ b/packs/_source/equipment/horse-draft.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHorsedraft", + "name": "Horse, draft", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 40000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHorsedraft", + "reviewed": true +} diff --git a/packs/_source/equipment/horse-pony.json b/packs/_source/equipment/horse-pony.json new file mode 100644 index 0000000..5cc36e3 --- /dev/null +++ b/packs/_source/equipment/horse-pony.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHorsepony", + "name": "Horse, pony", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 35000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHorsepony", + "reviewed": true +} diff --git a/packs/_source/equipment/horse-riding.json b/packs/_source/equipment/horse-riding.json new file mode 100644 index 0000000..368f397 --- /dev/null +++ b/packs/_source/equipment/horse-riding.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHorseriding", + "name": "Horse, riding", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 75000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHorseriding", + "reviewed": true +} diff --git a/packs/_source/equipment/horse-warhorse.json b/packs/_source/equipment/horse-warhorse.json new file mode 100644 index 0000000..1df0c7c --- /dev/null +++ b/packs/_source/equipment/horse-warhorse.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHorsewarhorse", + "name": "Horse, warhorse", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 250000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHorsewarhorse", + "reviewed": true +} diff --git a/packs/_source/equipment/hourglass-hour.json b/packs/_source/equipment/hourglass-hour.json new file mode 100644 index 0000000..bceb72c --- /dev/null +++ b/packs/_source/equipment/hourglass-hour.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHourglasshour", + "name": "Hourglass, hour", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHourglasshour", + "reviewed": true +} diff --git a/packs/_source/equipment/hunting-horn.json b/packs/_source/equipment/hunting-horn.json new file mode 100644 index 0000000..c44b2c6 --- /dev/null +++ b/packs/_source/equipment/hunting-horn.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHuntinghorn", + "name": "Hunting horn", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHuntinghorn", + "reviewed": true +} diff --git a/packs/_source/equipment/hunting-trap.json b/packs/_source/equipment/hunting-trap.json new file mode 100644 index 0000000..c6fb49b --- /dev/null +++ b/packs/_source/equipment/hunting-trap.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHuntingtrap", + "name": "Hunting trap", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 7000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHuntingtrap", + "reviewed": true +} diff --git a/packs/_source/equipment/hurdy-gurdy.json b/packs/_source/equipment/hurdy-gurdy.json new file mode 100644 index 0000000..5d96ef2 --- /dev/null +++ b/packs/_source/equipment/hurdy-gurdy.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipHurdygurdy", + "name": "Hurdy gurdy", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 100000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipHurdygurdy", + "reviewed": true +} diff --git a/packs/_source/equipment/ice-skin.json b/packs/_source/equipment/ice-skin.json new file mode 100644 index 0000000..3bcb14a --- /dev/null +++ b/packs/_source/equipment/ice-skin.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipIceskin", + "name": "Ice skin", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "One dose can cover a Medium or smaller Being for a Shift. During that Shift, that Being is protected against Bitter Cold.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipIceskin", + "reviewed": true +} diff --git a/packs/_source/equipment/incense-stick.json b/packs/_source/equipment/incense-stick.json new file mode 100644 index 0000000..cb4e2f1 --- /dev/null +++ b/packs/_source/equipment/incense-stick.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipIncensestick", + "name": "Incense (stick)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 50, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipIncensestick", + "reviewed": true +} diff --git a/packs/_source/equipment/ingot-copper.json b/packs/_source/equipment/ingot-copper.json new file mode 100644 index 0000000..72f3f81 --- /dev/null +++ b/packs/_source/equipment/ingot-copper.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipIngotcopper", + "name": "Ingot, copper", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "treasure", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipIngotcopper", + "reviewed": true +} diff --git a/packs/_source/equipment/ingot-gold.json b/packs/_source/equipment/ingot-gold.json new file mode 100644 index 0000000..4bfbb36 --- /dev/null +++ b/packs/_source/equipment/ingot-gold.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipIngotgold", + "name": "Ingot, gold", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "treasure", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipIngotgold", + "reviewed": true +} diff --git a/packs/_source/equipment/ingot-silver.json b/packs/_source/equipment/ingot-silver.json new file mode 100644 index 0000000..c2cd1ff --- /dev/null +++ b/packs/_source/equipment/ingot-silver.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipIngotsilver", + "name": "Ingot, silver", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "treasure", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipIngotsilver", + "reviewed": true +} diff --git a/packs/_source/equipment/ink-enchanted-1-oz.json b/packs/_source/equipment/ink-enchanted-1-oz.json new file mode 100644 index 0000000..2ec03d1 --- /dev/null +++ b/packs/_source/equipment/ink-enchanted-1-oz.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipInkenchanted1oz", + "name": "Ink, enchanted (1 oz)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["magic"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipInkenchanted1oz", + "reviewed": true +} diff --git a/packs/_source/equipment/ink-writing-1-oz.json b/packs/_source/equipment/ink-writing-1-oz.json new file mode 100644 index 0000000..922ee5a --- /dev/null +++ b/packs/_source/equipment/ink-writing-1-oz.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipInkwriting1oz", + "name": "Ink, writing (1 oz)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipInkwriting1oz", + "reviewed": true +} diff --git a/packs/_source/equipment/insect-repellent.json b/packs/_source/equipment/insect-repellent.json new file mode 100644 index 0000000..e1635c4 --- /dev/null +++ b/packs/_source/equipment/insect-repellent.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipInsectrepellent", + "name": "Insect repellent", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Covers a Medium or Smaller Being for a Shift, during which, insects Near it act as Frightened.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipInsectrepellent", + "reviewed": true +} diff --git a/packs/_source/equipment/instant-rope.json b/packs/_source/equipment/instant-rope.json new file mode 100644 index 0000000..6bd60e2 --- /dev/null +++ b/packs/_source/equipment/instant-rope.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipInstantrope", + "name": "Instant rope", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "When poured, the viscous gray liquid in this flask instantly forms into a 50-foot-long rope for 1 minute before crumbling to dust.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipInstantrope", + "reviewed": true +} diff --git a/packs/_source/equipment/instant-wall.json b/packs/_source/equipment/instant-wall.json new file mode 100644 index 0000000..b22b78f --- /dev/null +++ b/packs/_source/equipment/instant-wall.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipInstantwall", + "name": "Instant wall", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Creates a wall that is 10 feet in length and height, and 1 foot in width. The wall appears in the orientation of the user's choice. It has 20 HP and Armor: 2. The wall crumbles to dust after 1 minute or if it is destroyed.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipInstantwall", + "reviewed": true +} diff --git a/packs/_source/equipment/iron-pan.json b/packs/_source/equipment/iron-pan.json new file mode 100644 index 0000000..cd69fd1 --- /dev/null +++ b/packs/_source/equipment/iron-pan.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipIronpan", + "name": "Iron pan", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 800, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipIronpan", + "reviewed": true +} diff --git a/packs/_source/equipment/iron-pot.json b/packs/_source/equipment/iron-pot.json new file mode 100644 index 0000000..11f2b6d --- /dev/null +++ b/packs/_source/equipment/iron-pot.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipIronpot", + "name": "Iron pot", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipIronpot", + "reviewed": true +} diff --git a/packs/_source/equipment/jar-clay.json b/packs/_source/equipment/jar-clay.json new file mode 100644 index 0000000..113f7bf --- /dev/null +++ b/packs/_source/equipment/jar-clay.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipJarclay", + "name": "Jar, clay", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 pint.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipJarclay", + "reviewed": true +} diff --git a/packs/_source/equipment/jar-glass.json b/packs/_source/equipment/jar-glass.json new file mode 100644 index 0000000..34ae290 --- /dev/null +++ b/packs/_source/equipment/jar-glass.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipJarglass", + "name": "Jar, glass", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 pint.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipJarglass", + "reviewed": true +} diff --git a/packs/_source/equipment/jar-metal.json b/packs/_source/equipment/jar-metal.json new file mode 100644 index 0000000..7071ea6 --- /dev/null +++ b/packs/_source/equipment/jar-metal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipJarmetal", + "name": "Jar, metal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 pint.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipJarmetal", + "reviewed": true +} diff --git a/packs/_source/equipment/jeweler-tools.json b/packs/_source/equipment/jeweler-tools.json new file mode 100644 index 0000000..ab59961 --- /dev/null +++ b/packs/_source/equipment/jeweler-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipJewelertools", + "name": "Jeweler Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipJewelertools", + "reviewed": true +} diff --git a/packs/_source/equipment/jug-clay.json b/packs/_source/equipment/jug-clay.json new file mode 100644 index 0000000..b0f9f28 --- /dev/null +++ b/packs/_source/equipment/jug-clay.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipJugclay", + "name": "Jug, clay", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 gallon.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipJugclay", + "reviewed": true +} diff --git a/packs/_source/equipment/juggling-balls-set-of-3.json b/packs/_source/equipment/juggling-balls-set-of-3.json new file mode 100644 index 0000000..2b6fb6d --- /dev/null +++ b/packs/_source/equipment/juggling-balls-set-of-3.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipJugglingballssetof3", + "name": "Juggling balls, set of 3", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipJugglingballssetof3", + "reviewed": true +} diff --git a/packs/_source/equipment/kettle.json b/packs/_source/equipment/kettle.json new file mode 100644 index 0000000..9bd6baf --- /dev/null +++ b/packs/_source/equipment/kettle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipKettle", + "name": "Kettle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 800, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipKettle", + "reviewed": true +} diff --git a/packs/_source/equipment/kicksack.json b/packs/_source/equipment/kicksack.json new file mode 100644 index 0000000..89f3d96 --- /dev/null +++ b/packs/_source/equipment/kicksack.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipKicksack", + "name": "Kicksack", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipKicksack", + "reviewed": true +} diff --git a/packs/_source/equipment/ladder-10-foot.json b/packs/_source/equipment/ladder-10-foot.json new file mode 100644 index 0000000..bd8c18a --- /dev/null +++ b/packs/_source/equipment/ladder-10-foot.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLadder10foot", + "name": "Ladder (10-foot)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLadder10foot", + "reviewed": true +} diff --git a/packs/_source/equipment/lamp.json b/packs/_source/equipment/lamp.json new file mode 100644 index 0000000..4690e98 --- /dev/null +++ b/packs/_source/equipment/lamp.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLamp", + "name": "Lamp", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLamp", + "reviewed": true +} diff --git a/packs/_source/equipment/lantern-bullseye.json b/packs/_source/equipment/lantern-bullseye.json new file mode 100644 index 0000000..1c1481e --- /dev/null +++ b/packs/_source/equipment/lantern-bullseye.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLanternbullseye", + "name": "Lantern, bullseye", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLanternbullseye", + "reviewed": true +} diff --git a/packs/_source/equipment/lantern-hooded.json b/packs/_source/equipment/lantern-hooded.json new file mode 100644 index 0000000..356df73 --- /dev/null +++ b/packs/_source/equipment/lantern-hooded.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLanternhooded", + "name": "Lantern, hooded", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLanternhooded", + "reviewed": true +} diff --git a/packs/_source/equipment/leatherworking-tools.json b/packs/_source/equipment/leatherworking-tools.json new file mode 100644 index 0000000..a0e68b9 --- /dev/null +++ b/packs/_source/equipment/leatherworking-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLeatherworkingtools", + "name": "Leatherworking Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLeatherworkingtools", + "reviewed": true +} diff --git a/packs/_source/equipment/leggings.json b/packs/_source/equipment/leggings.json new file mode 100644 index 0000000..88c8d06 --- /dev/null +++ b/packs/_source/equipment/leggings.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLeggings", + "name": "Leggings", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLeggings", + "reviewed": true +} diff --git a/packs/_source/equipment/levin-shell.json b/packs/_source/equipment/levin-shell.json new file mode 100644 index 0000000..687a9dd --- /dev/null +++ b/packs/_source/equipment/levin-shell.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLevinshell", + "name": "Levin shell", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "An unstable mass of electric energy that sparks when exposed to oxygen. A Target hit with this Item takes d6 damage and any other Close Beings take half. A Being that takes this damage is Dazed until the end of its next Turn.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "explosive"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLevinshell", + "reviewed": true +} diff --git a/packs/_source/equipment/liquor-barrel.json b/packs/_source/equipment/liquor-barrel.json new file mode 100644 index 0000000..36a84a3 --- /dev/null +++ b/packs/_source/equipment/liquor-barrel.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLiquorbarrel", + "name": "Liquor, barrel", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 15000, + "consumable": true, + "uses": { + "value": 0, + "max": 16, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLiquorbarrel", + "reviewed": true +} diff --git a/packs/_source/equipment/liquor-bottle.json b/packs/_source/equipment/liquor-bottle.json new file mode 100644 index 0000000..8e9b838 --- /dev/null +++ b/packs/_source/equipment/liquor-bottle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLiquorbottle", + "name": "Liquor, bottle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": true, + "uses": { + "value": 0, + "max": 4, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLiquorbottle", + "reviewed": true +} diff --git a/packs/_source/equipment/liquor-shot-of.json b/packs/_source/equipment/liquor-shot-of.json new file mode 100644 index 0000000..4de3a58 --- /dev/null +++ b/packs/_source/equipment/liquor-shot-of.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLiquorshotof", + "name": "Liquor, shot of", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 200, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLiquorshotof", + "reviewed": true +} diff --git a/packs/_source/equipment/liquor-tankard.json b/packs/_source/equipment/liquor-tankard.json new file mode 100644 index 0000000..7355b95 --- /dev/null +++ b/packs/_source/equipment/liquor-tankard.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLiquortankard", + "name": "Liquor, tankard", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLiquortankard", + "reviewed": true +} diff --git a/packs/_source/equipment/locket.json b/packs/_source/equipment/locket.json new file mode 100644 index 0000000..1980ada --- /dev/null +++ b/packs/_source/equipment/locket.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLocket", + "name": "Locket", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 25000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLocket", + "reviewed": true +} diff --git a/packs/_source/equipment/lockpick.json b/packs/_source/equipment/lockpick.json new file mode 100644 index 0000000..a52a925 --- /dev/null +++ b/packs/_source/equipment/lockpick.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLockpick", + "name": "Lockpick", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLockpick", + "reviewed": true +} diff --git a/packs/_source/equipment/lute.json b/packs/_source/equipment/lute.json new file mode 100644 index 0000000..d687553 --- /dev/null +++ b/packs/_source/equipment/lute.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLute", + "name": "Lute", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 12000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLute", + "reviewed": true +} diff --git a/packs/_source/equipment/lyre.json b/packs/_source/equipment/lyre.json new file mode 100644 index 0000000..ab926ec --- /dev/null +++ b/packs/_source/equipment/lyre.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipLyre", + "name": "Lyre", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipLyre", + "reviewed": true +} diff --git a/packs/_source/equipment/magnet-small.json b/packs/_source/equipment/magnet-small.json new file mode 100644 index 0000000..b7c0bc5 --- /dev/null +++ b/packs/_source/equipment/magnet-small.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMagnetsmall", + "name": "Magnet, small", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMagnetsmall", + "reviewed": true +} diff --git a/packs/_source/equipment/magnifying-glass.json b/packs/_source/equipment/magnifying-glass.json new file mode 100644 index 0000000..8a54671 --- /dev/null +++ b/packs/_source/equipment/magnifying-glass.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMagnifyingglass", + "name": "Magnifying glass", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMagnifyingglass", + "reviewed": true +} diff --git a/packs/_source/equipment/makeup-kit.json b/packs/_source/equipment/makeup-kit.json new file mode 100644 index 0000000..c6cce20 --- /dev/null +++ b/packs/_source/equipment/makeup-kit.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMakeupkit", + "name": "Makeup kit", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMakeupkit", + "reviewed": true +} diff --git a/packs/_source/equipment/manacles.json b/packs/_source/equipment/manacles.json new file mode 100644 index 0000000..4df6842 --- /dev/null +++ b/packs/_source/equipment/manacles.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipManacles", + "name": "Manacles", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipManacles", + "reviewed": true +} diff --git a/packs/_source/equipment/mantle.json b/packs/_source/equipment/mantle.json new file mode 100644 index 0000000..c66fdcc --- /dev/null +++ b/packs/_source/equipment/mantle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMantle", + "name": "Mantle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMantle", + "reviewed": true +} diff --git a/packs/_source/equipment/marbles-bag-of.json b/packs/_source/equipment/marbles-bag-of.json new file mode 100644 index 0000000..c70c2a6 --- /dev/null +++ b/packs/_source/equipment/marbles-bag-of.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMarblesbagof", + "name": "Marbles, bag of", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 800, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMarblesbagof", + "reviewed": true +} diff --git a/packs/_source/equipment/meal-delicious.json b/packs/_source/equipment/meal-delicious.json new file mode 100644 index 0000000..d004dc3 --- /dev/null +++ b/packs/_source/equipment/meal-delicious.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMealdelicious", + "name": "Meal, delicious", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 2000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMealdelicious", + "reviewed": true +} diff --git a/packs/_source/equipment/meal-excellent.json b/packs/_source/equipment/meal-excellent.json new file mode 100644 index 0000000..574c257 --- /dev/null +++ b/packs/_source/equipment/meal-excellent.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMealexcellent", + "name": "Meal, excellent", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMealexcellent", + "reviewed": true +} diff --git a/packs/_source/equipment/meal-good.json b/packs/_source/equipment/meal-good.json new file mode 100644 index 0000000..d4fab7f --- /dev/null +++ b/packs/_source/equipment/meal-good.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMealgood", + "name": "Meal, good", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 1000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMealgood", + "reviewed": true +} diff --git a/packs/_source/equipment/meal-horrible.json b/packs/_source/equipment/meal-horrible.json new file mode 100644 index 0000000..634f127 --- /dev/null +++ b/packs/_source/equipment/meal-horrible.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMealhorrible", + "name": "Meal, horrible", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMealhorrible", + "reviewed": true +} diff --git a/packs/_source/equipment/meal-opulent.json b/packs/_source/equipment/meal-opulent.json new file mode 100644 index 0000000..f1ed824 --- /dev/null +++ b/packs/_source/equipment/meal-opulent.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMealopulent", + "name": "Meal, opulent", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMealopulent", + "reviewed": true +} diff --git a/packs/_source/equipment/meal-poor.json b/packs/_source/equipment/meal-poor.json new file mode 100644 index 0000000..2c57fd1 --- /dev/null +++ b/packs/_source/equipment/meal-poor.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMealpoor", + "name": "Meal, poor", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 500, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMealpoor", + "reviewed": true +} diff --git a/packs/_source/equipment/med-kit.json b/packs/_source/equipment/med-kit.json new file mode 100644 index 0000000..64d2598 --- /dev/null +++ b/packs/_source/equipment/med-kit.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMedkit", + "name": "Med Kit", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["medical"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMedkit", + "reviewed": true +} diff --git a/packs/_source/equipment/mess-kit.json b/packs/_source/equipment/mess-kit.json new file mode 100644 index 0000000..3f2cc18 --- /dev/null +++ b/packs/_source/equipment/mess-kit.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMesskit", + "name": "Mess kit", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMesskit", + "reviewed": true +} diff --git a/packs/_source/equipment/mirror.json b/packs/_source/equipment/mirror.json new file mode 100644 index 0000000..42aec36 --- /dev/null +++ b/packs/_source/equipment/mirror.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMirror", + "name": "Mirror", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMirror", + "reviewed": true +} diff --git a/packs/_source/equipment/monocle.json b/packs/_source/equipment/monocle.json new file mode 100644 index 0000000..1745f2f --- /dev/null +++ b/packs/_source/equipment/monocle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMonocle", + "name": "Monocle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 4000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMonocle", + "reviewed": true +} diff --git a/packs/_source/equipment/mortar-and-pestle.json b/packs/_source/equipment/mortar-and-pestle.json new file mode 100644 index 0000000..ddcb1ce --- /dev/null +++ b/packs/_source/equipment/mortar-and-pestle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMortarandpestle", + "name": "Mortar and pestle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMortarandpestle", + "reviewed": true +} diff --git a/packs/_source/equipment/mule.json b/packs/_source/equipment/mule.json new file mode 100644 index 0000000..7fccf10 --- /dev/null +++ b/packs/_source/equipment/mule.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipMule", + "name": "Mule", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 30000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipMule", + "reviewed": true +} diff --git a/packs/_source/equipment/nails-iron-50.json b/packs/_source/equipment/nails-iron-50.json new file mode 100644 index 0000000..13859ce --- /dev/null +++ b/packs/_source/equipment/nails-iron-50.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipNailsiron50", + "name": "Nails, iron (50)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipNailsiron50", + "reviewed": true +} diff --git a/packs/_source/equipment/needle-sewing.json b/packs/_source/equipment/needle-sewing.json new file mode 100644 index 0000000..b23fa3d --- /dev/null +++ b/packs/_source/equipment/needle-sewing.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipNeedlesewing", + "name": "Needle, sewing", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipNeedlesewing", + "reviewed": true +} diff --git a/packs/_source/equipment/noisemaker.json b/packs/_source/equipment/noisemaker.json new file mode 100644 index 0000000..f2f07b5 --- /dev/null +++ b/packs/_source/equipment/noisemaker.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipNoisemaker", + "name": "Noisemaker", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipNoisemaker", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-anointing.json b/packs/_source/equipment/oil-anointing.json new file mode 100644 index 0000000..44cbfdf --- /dev/null +++ b/packs/_source/equipment/oil-anointing.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilanointing", + "name": "Oil, anointing", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Used in religious ceremonies, it acts as basic oil. However, when coated on a Weapon that is then ignited, the weapon counts as Silvered.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "oil", "holy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilanointing", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-basic.json b/packs/_source/equipment/oil-basic.json new file mode 100644 index 0000000..85ee188 --- /dev/null +++ b/packs/_source/equipment/oil-basic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilbasic", + "name": "Oil, basic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "The oil can coat either a 5-foot-square area or a Medium or smaller Target for as long as 1 week unless washed off. While coated, the Target can then be ignited, causing it to be Burning (Cd6, unless doused). Other Beings that touch the flames take d6 damage, and are Burning (d6) while still in contact with the flame.
A full flask fuels a burning lantern for a Shift.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "oil"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilbasic", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-bladefire.json b/packs/_source/equipment/oil-bladefire.json new file mode 100644 index 0000000..9a0f7d9 --- /dev/null +++ b/packs/_source/equipment/oil-bladefire.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilbladefire", + "name": "Oil, bladefire", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Acts as basic oil. However, when coated on a Weapon that is then ignited, it sheds Light out to Near and attacks with it cause the Target to be Burning (Cd4).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "oil"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilbladefire", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-cooking-flask.json b/packs/_source/equipment/oil-cooking-flask.json new file mode 100644 index 0000000..0ead499 --- /dev/null +++ b/packs/_source/equipment/oil-cooking-flask.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilcookingflask", + "name": "Oil, cooking (flask)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilcookingflask", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-crones-ire.json b/packs/_source/equipment/oil-crones-ire.json new file mode 100644 index 0000000..34e8e01 --- /dev/null +++ b/packs/_source/equipment/oil-crones-ire.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilcronesire", + "name": "Oil, crone's ire", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A sickly emerald oil that shrieks when lit. Acts as basic oil. However, when coated on a Weapon that is then ignited, attack damage with it can explode if the Target can Cast. If the Target is Focusing and any of the dice do explode, its Focus ends.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "oil"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilcronesire", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-flask.json b/packs/_source/equipment/oil-flask.json new file mode 100644 index 0000000..1d97a47 --- /dev/null +++ b/packs/_source/equipment/oil-flask.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilflask", + "name": "Oil, flask", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A flask of basic oil for lanterns or coating surfaces.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["oil"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilflask", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-ghostflame.json b/packs/_source/equipment/oil-ghostflame.json new file mode 100644 index 0000000..684fdd2 --- /dev/null +++ b/packs/_source/equipment/oil-ghostflame.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilghostflame", + "name": "Oil, ghostflame", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Clear oil with a tint of gray wisps seem to swirl through it. Acts as basic oil. However, while coated on a weapon that is then ignited, its attacks can hit incorporeal Beings (like ghosts).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "oil"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilghostflame", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-vicious.json b/packs/_source/equipment/oil-vicious.json new file mode 100644 index 0000000..82f70c5 --- /dev/null +++ b/packs/_source/equipment/oil-vicious.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilvicious", + "name": "Oil, vicious", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A thick blue oil that acts as a powerful anticoagulant. Acts as basic oil. However, while coated on a weapon that is then ignited, its damage from attacks that hit Beings with half their HP or less can explode and cause them to bleed profusely for the Shift, granting Favor on Survival Checks to track it for this time.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "oil"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilvicious", + "reviewed": true +} diff --git a/packs/_source/equipment/oil-wyrmwound.json b/packs/_source/equipment/oil-wyrmwound.json new file mode 100644 index 0000000..ffeecf5 --- /dev/null +++ b/packs/_source/equipment/oil-wyrmwound.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOilwyrmwound", + "name": "Oil, wyrmwound", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "This crimson oil is a bane to scaly-kind. Acts as basic oil. However, while coated on a weapon that is then ignited, its damage against scaled Beings can explode and ignores 2 Armor.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "oil"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOilwyrmwound", + "reviewed": true +} diff --git a/packs/_source/equipment/orrery.json b/packs/_source/equipment/orrery.json new file mode 100644 index 0000000..cad4eec --- /dev/null +++ b/packs/_source/equipment/orrery.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipOrrery", + "name": "Orrery", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 30000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipOrrery", + "reviewed": true +} diff --git a/packs/_source/equipment/paint-gallon.json b/packs/_source/equipment/paint-gallon.json new file mode 100644 index 0000000..eb3a990 --- /dev/null +++ b/packs/_source/equipment/paint-gallon.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPaintgallon", + "name": "Paint, gallon", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPaintgallon", + "reviewed": true +} diff --git a/packs/_source/equipment/paint-pot.json b/packs/_source/equipment/paint-pot.json new file mode 100644 index 0000000..2a64568 --- /dev/null +++ b/packs/_source/equipment/paint-pot.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPaintpot", + "name": "Paint, pot", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPaintpot", + "reviewed": true +} diff --git a/packs/_source/equipment/pants-casual.json b/packs/_source/equipment/pants-casual.json new file mode 100644 index 0000000..69d5533 --- /dev/null +++ b/packs/_source/equipment/pants-casual.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPantscasual", + "name": "Pants, casual", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPantscasual", + "reviewed": true +} diff --git a/packs/_source/equipment/pants-formal.json b/packs/_source/equipment/pants-formal.json new file mode 100644 index 0000000..dcd516d --- /dev/null +++ b/packs/_source/equipment/pants-formal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPantsformal", + "name": "Pants, formal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 4000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPantsformal", + "reviewed": true +} diff --git a/packs/_source/equipment/paper-1-sheet.json b/packs/_source/equipment/paper-1-sheet.json new file mode 100644 index 0000000..d9ef5d7 --- /dev/null +++ b/packs/_source/equipment/paper-1-sheet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPaper1sheet", + "name": "Paper (1 sheet)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 200, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPaper1sheet", + "reviewed": true +} diff --git a/packs/_source/equipment/parchment-1-sheet.json b/packs/_source/equipment/parchment-1-sheet.json new file mode 100644 index 0000000..76b20f5 --- /dev/null +++ b/packs/_source/equipment/parchment-1-sheet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipParchment1sheet", + "name": "Parchment (1 sheet)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipParchment1sheet", + "reviewed": true +} diff --git a/packs/_source/equipment/pendant.json b/packs/_source/equipment/pendant.json new file mode 100644 index 0000000..116d73d --- /dev/null +++ b/packs/_source/equipment/pendant.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPendant", + "name": "Pendant", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 45000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPendant", + "reviewed": true +} diff --git a/packs/_source/equipment/percolator.json b/packs/_source/equipment/percolator.json new file mode 100644 index 0000000..71ca71e --- /dev/null +++ b/packs/_source/equipment/percolator.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPercolator", + "name": "Percolator", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 pint.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPercolator", + "reviewed": true +} diff --git a/packs/_source/equipment/perfume-vial.json b/packs/_source/equipment/perfume-vial.json new file mode 100644 index 0000000..b5233fb --- /dev/null +++ b/packs/_source/equipment/perfume-vial.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPerfumevial", + "name": "Perfume, vial", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPerfumevial", + "reviewed": true +} diff --git a/packs/_source/equipment/perfume.json b/packs/_source/equipment/perfume.json new file mode 100644 index 0000000..7d65372 --- /dev/null +++ b/packs/_source/equipment/perfume.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPerfume", + "name": "Perfume", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A fragrant, pleasant spray.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 5, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPerfume", + "reviewed": true +} diff --git a/packs/_source/equipment/periscope.json b/packs/_source/equipment/periscope.json new file mode 100644 index 0000000..f0d4293 --- /dev/null +++ b/packs/_source/equipment/periscope.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPeriscope", + "name": "Periscope", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPeriscope", + "reviewed": true +} diff --git a/packs/_source/equipment/personal-seal.json b/packs/_source/equipment/personal-seal.json new file mode 100644 index 0000000..d6051f9 --- /dev/null +++ b/packs/_source/equipment/personal-seal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPersonalseal", + "name": "Personal seal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPersonalseal", + "reviewed": true +} diff --git a/packs/_source/equipment/pickaxe.json b/packs/_source/equipment/pickaxe.json new file mode 100644 index 0000000..e51cb0e --- /dev/null +++ b/packs/_source/equipment/pickaxe.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPickaxe", + "name": "Pickaxe", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPickaxe", + "reviewed": true +} diff --git a/packs/_source/equipment/piton.json b/packs/_source/equipment/piton.json new file mode 100644 index 0000000..a5fa61b --- /dev/null +++ b/packs/_source/equipment/piton.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPiton", + "name": "Piton", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["climbing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPiton", + "reviewed": true +} diff --git a/packs/_source/equipment/poison-basic.json b/packs/_source/equipment/poison-basic.json new file mode 100644 index 0000000..58e0db0 --- /dev/null +++ b/packs/_source/equipment/poison-basic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPoisonbasic", + "name": "Poison, basic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Application: Consumed or Injury
The Target is Sickened (Cd4 damage).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "poison"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPoisonbasic", + "reviewed": true +} diff --git a/packs/_source/equipment/poison-deadly-nightshade.json b/packs/_source/equipment/poison-deadly-nightshade.json new file mode 100644 index 0000000..e662c43 --- /dev/null +++ b/packs/_source/equipment/poison-deadly-nightshade.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPoisondeadlynightshade", + "name": "Poison, deadly nightshade", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Application: Consumed or Injury
The Target is Sickened (Cd4 damage) and, if it is cursed with Lycanthropy, the curse is removed. In addition to the Material cost, this item requires 1g worth of wolfsbane to Craft.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "poison"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPoisondeadlynightshade", + "reviewed": true +} diff --git a/packs/_source/equipment/poison-truth-serum.json b/packs/_source/equipment/poison-truth-serum.json new file mode 100644 index 0000000..9f23c6d --- /dev/null +++ b/packs/_source/equipment/poison-truth-serum.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPoisontruthserum", + "name": "Poison, truth serum", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Application: Consumed
The Target is Sickened (Cd8, it can't knowingly tell a lie).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "poison"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPoisontruthserum", + "reviewed": true +} diff --git a/packs/_source/equipment/pole-10-foot.json b/packs/_source/equipment/pole-10-foot.json new file mode 100644 index 0000000..fe068d2 --- /dev/null +++ b/packs/_source/equipment/pole-10-foot.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPole10foot", + "name": "Pole (10-foot)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPole10foot", + "reviewed": true +} diff --git a/packs/_source/equipment/pole-collapsing-10-foot.json b/packs/_source/equipment/pole-collapsing-10-foot.json new file mode 100644 index 0000000..f5bb73c --- /dev/null +++ b/packs/_source/equipment/pole-collapsing-10-foot.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPolecollapsing10foot", + "name": "Pole, collapsing (10-foot)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPolecollapsing10foot", + "reviewed": true +} diff --git a/packs/_source/equipment/pot-clay.json b/packs/_source/equipment/pot-clay.json new file mode 100644 index 0000000..01f81f5 --- /dev/null +++ b/packs/_source/equipment/pot-clay.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotclay", + "name": "Pot, clay", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 gallon.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotclay", + "reviewed": true +} diff --git a/packs/_source/equipment/pot-iron.json b/packs/_source/equipment/pot-iron.json new file mode 100644 index 0000000..8bb71f1 --- /dev/null +++ b/packs/_source/equipment/pot-iron.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotiron", + "name": "Pot, iron", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 1 gallon.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotiron", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-anger-i.json b/packs/_source/equipment/potion-anger-i.json new file mode 100644 index 0000000..f3608e1 --- /dev/null +++ b/packs/_source/equipment/potion-anger-i.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionangeri", + "name": "Potion, anger I", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "The consumer becomes Berserk (Cd4 rounds).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 25000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionangeri", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-anger-ii.json b/packs/_source/equipment/potion-anger-ii.json new file mode 100644 index 0000000..a771d0d --- /dev/null +++ b/packs/_source/equipment/potion-anger-ii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionangerii", + "name": "Potion, anger II", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "The consumer becomes Berserk (Cd6 rounds).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionangerii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-anger-iii.json b/packs/_source/equipment/potion-anger-iii.json new file mode 100644 index 0000000..70f1820 --- /dev/null +++ b/packs/_source/equipment/potion-anger-iii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionangeriii", + "name": "Potion, anger III", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "The consumer becomes Berserk (Cd8 rounds).
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionangeriii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-clairaudience.json b/packs/_source/equipment/potion-clairaudience.json new file mode 100644 index 0000000..7e3e785 --- /dev/null +++ b/packs/_source/equipment/potion-clairaudience.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionclairaudience", + "name": "Potion, clairaudience", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "For 1 Hour, the consumer can hear what another Being of their choice hears if they are within Far. They can change the choice. Lead obstructs this sense.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionclairaudience", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-clairvoyance.json b/packs/_source/equipment/potion-clairvoyance.json new file mode 100644 index 0000000..06c0f4e --- /dev/null +++ b/packs/_source/equipment/potion-clairvoyance.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionclairvoyance", + "name": "Potion, clairvoyance", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "For 1 Hour, the consumer can see what another Being of their choice sees if they are within Far. They can change the choice. Lead obstructs this sense.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionclairvoyance", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-control-beast.json b/packs/_source/equipment/potion-control-beast.json new file mode 100644 index 0000000..adc4545 --- /dev/null +++ b/packs/_source/equipment/potion-control-beast.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotioncontrolbeast", + "name": "Potion, control beast", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants control over a beast.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotioncontrolbeast", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-control-monster.json b/packs/_source/equipment/potion-control-monster.json new file mode 100644 index 0000000..c785d75 --- /dev/null +++ b/packs/_source/equipment/potion-control-monster.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotioncontrolmonster", + "name": "Potion, control monster", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants control over a monster.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 12500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotioncontrolmonster", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-control-person.json b/packs/_source/equipment/potion-control-person.json new file mode 100644 index 0000000..84cafe1 --- /dev/null +++ b/packs/_source/equipment/potion-control-person.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotioncontrolperson", + "name": "Potion, control person", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants control over a person.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotioncontrolperson", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-diminution.json b/packs/_source/equipment/potion-diminution.json new file mode 100644 index 0000000..88ff578 --- /dev/null +++ b/packs/_source/equipment/potion-diminution.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotiondiminution", + "name": "Potion, diminution", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Shrinks the consumer.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotiondiminution", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-esp.json b/packs/_source/equipment/potion-esp.json new file mode 100644 index 0000000..28b7a54 --- /dev/null +++ b/packs/_source/equipment/potion-esp.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionesp", + "name": "Potion, ESP", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants the ability to read thoughts.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionesp", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-flying.json b/packs/_source/equipment/potion-flying.json new file mode 100644 index 0000000..97ae524 --- /dev/null +++ b/packs/_source/equipment/potion-flying.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionflying", + "name": "Potion, flying", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants the ability to fly.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 12500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionflying", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-freedom.json b/packs/_source/equipment/potion-freedom.json new file mode 100644 index 0000000..a4d86b2 --- /dev/null +++ b/packs/_source/equipment/potion-freedom.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionfreedom", + "name": "Potion, freedom", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Removes restraints and allows free movement.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionfreedom", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-gaseous-form.json b/packs/_source/equipment/potion-gaseous-form.json new file mode 100644 index 0000000..f13ee3d --- /dev/null +++ b/packs/_source/equipment/potion-gaseous-form.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotiongaseousform", + "name": "Potion, gaseous form", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Transforms the consumer into gaseous form.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotiongaseousform", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-giant-strength.json b/packs/_source/equipment/potion-giant-strength.json new file mode 100644 index 0000000..adb8ebd --- /dev/null +++ b/packs/_source/equipment/potion-giant-strength.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotiongiantstrength", + "name": "Potion, giant strength", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants the strength of a giant.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotiongiantstrength", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-growth.json b/packs/_source/equipment/potion-growth.json new file mode 100644 index 0000000..d9383f5 --- /dev/null +++ b/packs/_source/equipment/potion-growth.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotiongrowth", + "name": "Potion, growth", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Increases the consumer's size.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1750000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotiongrowth", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-healing-i.json b/packs/_source/equipment/potion-healing-i.json new file mode 100644 index 0000000..5d69229 --- /dev/null +++ b/packs/_source/equipment/potion-healing-i.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionhealingi", + "name": "Potion, healing I", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Restores a small amount of HP.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 25000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionhealingi", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-healing-ii.json b/packs/_source/equipment/potion-healing-ii.json new file mode 100644 index 0000000..fe75489 --- /dev/null +++ b/packs/_source/equipment/potion-healing-ii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionhealingii", + "name": "Potion, healing II", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Restores a moderate amount of HP.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionhealingii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-healing-iii.json b/packs/_source/equipment/potion-healing-iii.json new file mode 100644 index 0000000..07de289 --- /dev/null +++ b/packs/_source/equipment/potion-healing-iii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionhealingiii", + "name": "Potion, healing III", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Restores a large amount of HP.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionhealingiii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-invisibility.json b/packs/_source/equipment/potion-invisibility.json new file mode 100644 index 0000000..3f937a5 --- /dev/null +++ b/packs/_source/equipment/potion-invisibility.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotioninvisibility", + "name": "Potion, invisibility", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Makes the consumer invisible.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotioninvisibility", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-invulnerability-i.json b/packs/_source/equipment/potion-invulnerability-i.json new file mode 100644 index 0000000..35b8fb0 --- /dev/null +++ b/packs/_source/equipment/potion-invulnerability-i.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotioninvulnerabilityi", + "name": "Potion, invulnerability I", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants minor damage resistance.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotioninvulnerabilityi", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-invulnerability-ii.json b/packs/_source/equipment/potion-invulnerability-ii.json new file mode 100644 index 0000000..4090b5b --- /dev/null +++ b/packs/_source/equipment/potion-invulnerability-ii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotioninvulnerabilityii", + "name": "Potion, invulnerability II", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants moderate damage resistance.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotioninvulnerabilityii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-invulnerability-iii.json b/packs/_source/equipment/potion-invulnerability-iii.json new file mode 100644 index 0000000..009b7cd --- /dev/null +++ b/packs/_source/equipment/potion-invulnerability-iii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotioninvulnerabilityiii", + "name": "Potion, invulnerability III", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants major damage resistance.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 125000000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotioninvulnerabilityiii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-levitation.json b/packs/_source/equipment/potion-levitation.json new file mode 100644 index 0000000..863b8c6 --- /dev/null +++ b/packs/_source/equipment/potion-levitation.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionlevitation", + "name": "Potion, levitation", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Allows the consumer to levitate.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 400000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionlevitation", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-longbreath.json b/packs/_source/equipment/potion-longbreath.json new file mode 100644 index 0000000..a6318cd --- /dev/null +++ b/packs/_source/equipment/potion-longbreath.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionlongbreath", + "name": "Potion, longbreath", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "This thick, brown-tinted smoke is a boon to anyone who needs to go without air for more than a few Rounds. For 1 hour after inhaling the contents of the vial, the Being can hold its breath indefinitely while it's not Incapacitated.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionlongbreath", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-mana-i.json b/packs/_source/equipment/potion-mana-i.json new file mode 100644 index 0000000..7ca3a9e --- /dev/null +++ b/packs/_source/equipment/potion-mana-i.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionmanai", + "name": "Potion, mana I", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Restores a small amount of Mana.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 75000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionmanai", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-mana-ii.json b/packs/_source/equipment/potion-mana-ii.json new file mode 100644 index 0000000..4c5c085 --- /dev/null +++ b/packs/_source/equipment/potion-mana-ii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionmanaii", + "name": "Potion, mana II", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Restores a moderate amount of Mana.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 150000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionmanaii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-mana-iii.json b/packs/_source/equipment/potion-mana-iii.json new file mode 100644 index 0000000..b34a274 --- /dev/null +++ b/packs/_source/equipment/potion-mana-iii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionmanaiii", + "name": "Potion, mana III", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Restores a large amount of Mana.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionmanaiii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-polymorph.json b/packs/_source/equipment/potion-polymorph.json new file mode 100644 index 0000000..47f48ca --- /dev/null +++ b/packs/_source/equipment/potion-polymorph.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionpolymorph", + "name": "Potion, polymorph", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Transforms the consumer into another creature.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 700000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionpolymorph", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-regeneration-i.json b/packs/_source/equipment/potion-regeneration-i.json new file mode 100644 index 0000000..f29f7ac --- /dev/null +++ b/packs/_source/equipment/potion-regeneration-i.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionregenerationi", + "name": "Potion, regeneration I", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants minor regeneration.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionregenerationi", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-regeneration-ii.json b/packs/_source/equipment/potion-regeneration-ii.json new file mode 100644 index 0000000..131ac35 --- /dev/null +++ b/packs/_source/equipment/potion-regeneration-ii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionregenerationii", + "name": "Potion, regeneration II", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants moderate regeneration.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionregenerationii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-regeneration-iii.json b/packs/_source/equipment/potion-regeneration-iii.json new file mode 100644 index 0000000..f7cb3a5 --- /dev/null +++ b/packs/_source/equipment/potion-regeneration-iii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionregenerationiii", + "name": "Potion, regeneration III", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants major regeneration.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionregenerationiii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-resistance-cold.json b/packs/_source/equipment/potion-resistance-cold.json new file mode 100644 index 0000000..4f95981 --- /dev/null +++ b/packs/_source/equipment/potion-resistance-cold.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionresistancecold", + "name": "Potion, resistance (cold)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants resistance to cold damage.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionresistancecold", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-resistance-fire.json b/packs/_source/equipment/potion-resistance-fire.json new file mode 100644 index 0000000..911aeb6 --- /dev/null +++ b/packs/_source/equipment/potion-resistance-fire.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionresistancefire", + "name": "Potion, resistance (fire)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants resistance to fire damage.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionresistancefire", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-resistance-shock.json b/packs/_source/equipment/potion-resistance-shock.json new file mode 100644 index 0000000..914733b --- /dev/null +++ b/packs/_source/equipment/potion-resistance-shock.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionresistanceshock", + "name": "Potion, resistance (shock)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants resistance to shock damage.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionresistanceshock", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-speed-i.json b/packs/_source/equipment/potion-speed-i.json new file mode 100644 index 0000000..873dd61 --- /dev/null +++ b/packs/_source/equipment/potion-speed-i.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionspeedi", + "name": "Potion, speed I", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants minor speed increase.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 25000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionspeedi", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-speed-ii.json b/packs/_source/equipment/potion-speed-ii.json new file mode 100644 index 0000000..d340b78 --- /dev/null +++ b/packs/_source/equipment/potion-speed-ii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionspeedii", + "name": "Potion, speed II", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants moderate speed increase.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 75000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionspeedii", + "reviewed": true +} diff --git a/packs/_source/equipment/potion-speed-iii.json b/packs/_source/equipment/potion-speed-iii.json new file mode 100644 index 0000000..9c39e6c --- /dev/null +++ b/packs/_source/equipment/potion-speed-iii.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotionspeediii", + "name": "Potion, speed III", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Grants major speed increase.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 250000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "potion"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotionspeediii", + "reviewed": true +} diff --git a/packs/_source/equipment/pottery-tools.json b/packs/_source/equipment/pottery-tools.json new file mode 100644 index 0000000..df300c6 --- /dev/null +++ b/packs/_source/equipment/pottery-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPotterytools", + "name": "Pottery Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPotterytools", + "reviewed": true +} diff --git a/packs/_source/equipment/pouch.json b/packs/_source/equipment/pouch.json new file mode 100644 index 0000000..41bfee9 --- /dev/null +++ b/packs/_source/equipment/pouch.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipPouch", + "name": "Pouch", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipPouch", + "reviewed": true +} diff --git a/packs/_source/equipment/produce-1-lb-bag.json b/packs/_source/equipment/produce-1-lb-bag.json new file mode 100644 index 0000000..041f948 --- /dev/null +++ b/packs/_source/equipment/produce-1-lb-bag.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipProduce1lbbag", + "name": "Produce, 1 lb. bag", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipProduce1lbbag", + "reviewed": true +} diff --git a/packs/_source/equipment/produce-fruits-vegetables-single.json b/packs/_source/equipment/produce-fruits-vegetables-single.json new file mode 100644 index 0000000..4c4d809 --- /dev/null +++ b/packs/_source/equipment/produce-fruits-vegetables-single.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipProducefruitsvegetablessingle", + "name": "Produce (Fruits & Vegetables), single", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipProducefruitsvegetablessingle", + "reviewed": true +} diff --git a/packs/_source/equipment/quill.json b/packs/_source/equipment/quill.json new file mode 100644 index 0000000..4841fa2 --- /dev/null +++ b/packs/_source/equipment/quill.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipQuill", + "name": "Quill", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipQuill", + "reviewed": true +} diff --git a/packs/_source/equipment/rabbit.json b/packs/_source/equipment/rabbit.json new file mode 100644 index 0000000..bdce4e7 --- /dev/null +++ b/packs/_source/equipment/rabbit.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRabbit", + "name": "Rabbit", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 3000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal", "food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRabbit", + "reviewed": true +} diff --git a/packs/_source/equipment/rat.json b/packs/_source/equipment/rat.json new file mode 100644 index 0000000..9a0adb4 --- /dev/null +++ b/packs/_source/equipment/rat.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRat", + "name": "Rat", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRat", + "reviewed": true +} diff --git a/packs/_source/equipment/rations-1-day.json b/packs/_source/equipment/rations-1-day.json new file mode 100644 index 0000000..10ea5fa --- /dev/null +++ b/packs/_source/equipment/rations-1-day.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRations1day", + "name": "Rations (1 day)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRations1day", + "reviewed": true +} diff --git a/packs/_source/equipment/rats-bag-of-20.json b/packs/_source/equipment/rats-bag-of-20.json new file mode 100644 index 0000000..8805b7a --- /dev/null +++ b/packs/_source/equipment/rats-bag-of-20.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRatsbagof20", + "name": "Rats, bag of 20", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["animal"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRatsbagof20", + "reviewed": true +} diff --git a/packs/_source/equipment/razor-shaving.json b/packs/_source/equipment/razor-shaving.json new file mode 100644 index 0000000..77595a2 --- /dev/null +++ b/packs/_source/equipment/razor-shaving.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRazorshaving", + "name": "Razor, shaving", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRazorshaving", + "reviewed": true +} diff --git a/packs/_source/equipment/ring-basic.json b/packs/_source/equipment/ring-basic.json new file mode 100644 index 0000000..d4efbc0 --- /dev/null +++ b/packs/_source/equipment/ring-basic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRingbasic", + "name": "Ring, basic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRingbasic", + "reviewed": true +} diff --git a/packs/_source/equipment/ring-crestsignet.json b/packs/_source/equipment/ring-crestsignet.json new file mode 100644 index 0000000..08c6808 --- /dev/null +++ b/packs/_source/equipment/ring-crestsignet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRingcrestsignet", + "name": "Ring, crest/signet", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRingcrestsignet", + "reviewed": true +} diff --git a/packs/_source/equipment/robe.json b/packs/_source/equipment/robe.json new file mode 100644 index 0000000..5e56d0e --- /dev/null +++ b/packs/_source/equipment/robe.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRobe", + "name": "Robe", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRobe", + "reviewed": true +} diff --git a/packs/_source/equipment/rope-50-feet.json b/packs/_source/equipment/rope-50-feet.json new file mode 100644 index 0000000..b34346c --- /dev/null +++ b/packs/_source/equipment/rope-50-feet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipRope50feet", + "name": "Rope (50 feet)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["climbing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipRope50feet", + "reviewed": true +} diff --git a/packs/_source/equipment/sacbut.json b/packs/_source/equipment/sacbut.json new file mode 100644 index 0000000..f82a671 --- /dev/null +++ b/packs/_source/equipment/sacbut.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSacbut", + "name": "Sacbut", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSacbut", + "reviewed": true +} diff --git a/packs/_source/equipment/sack.json b/packs/_source/equipment/sack.json new file mode 100644 index 0000000..2d4b23d --- /dev/null +++ b/packs/_source/equipment/sack.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSack", + "name": "Sack", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSack", + "reviewed": true +} diff --git a/packs/_source/equipment/saddle-tack.json b/packs/_source/equipment/saddle-tack.json new file mode 100644 index 0000000..135e4e3 --- /dev/null +++ b/packs/_source/equipment/saddle-tack.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSaddletack", + "name": "Saddle & tack", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 25000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["mount"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSaddletack", + "reviewed": true +} diff --git a/packs/_source/equipment/salt-1-lb-bag.json b/packs/_source/equipment/salt-1-lb-bag.json new file mode 100644 index 0000000..96a50d5 --- /dev/null +++ b/packs/_source/equipment/salt-1-lb-bag.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSalt1lbbag", + "name": "Salt (1 lb. bag)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSalt1lbbag", + "reviewed": true +} diff --git a/packs/_source/equipment/scale-merchants.json b/packs/_source/equipment/scale-merchants.json new file mode 100644 index 0000000..fad4ccb --- /dev/null +++ b/packs/_source/equipment/scale-merchants.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipScalemerchants", + "name": "Scale, merchant's", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipScalemerchants", + "reviewed": true +} diff --git a/packs/_source/equipment/scarf.json b/packs/_source/equipment/scarf.json new file mode 100644 index 0000000..bf0a361 --- /dev/null +++ b/packs/_source/equipment/scarf.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipScarf", + "name": "Scarf", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipScarf", + "reviewed": true +} diff --git a/packs/_source/equipment/scissors.json b/packs/_source/equipment/scissors.json new file mode 100644 index 0000000..e0a457e --- /dev/null +++ b/packs/_source/equipment/scissors.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipScissors", + "name": "Scissors", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipScissors", + "reviewed": true +} diff --git a/packs/_source/equipment/scribing-tools.json b/packs/_source/equipment/scribing-tools.json new file mode 100644 index 0000000..3a159fc --- /dev/null +++ b/packs/_source/equipment/scribing-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipScribingtools", + "name": "Scribing Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipScribingtools", + "reviewed": true +} diff --git a/packs/_source/equipment/scroll-blank.json b/packs/_source/equipment/scroll-blank.json new file mode 100644 index 0000000..e9a1803 --- /dev/null +++ b/packs/_source/equipment/scroll-blank.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipScrollblank", + "name": "Scroll, blank", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["magic"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipScrollblank", + "reviewed": true +} diff --git a/packs/_source/equipment/sealing-wax.json b/packs/_source/equipment/sealing-wax.json new file mode 100644 index 0000000..031a4a9 --- /dev/null +++ b/packs/_source/equipment/sealing-wax.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSealingwax", + "name": "Sealing wax", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSealingwax", + "reviewed": true +} diff --git a/packs/_source/equipment/shawm.json b/packs/_source/equipment/shawm.json new file mode 100644 index 0000000..fbd1772 --- /dev/null +++ b/packs/_source/equipment/shawm.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipShawm", + "name": "Shawm", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipShawm", + "reviewed": true +} diff --git a/packs/_source/equipment/shirt-casual.json b/packs/_source/equipment/shirt-casual.json new file mode 100644 index 0000000..a573842 --- /dev/null +++ b/packs/_source/equipment/shirt-casual.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipShirtcasual", + "name": "Shirt, casual", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipShirtcasual", + "reviewed": true +} diff --git a/packs/_source/equipment/shirt-formal.json b/packs/_source/equipment/shirt-formal.json new file mode 100644 index 0000000..b7ac21b --- /dev/null +++ b/packs/_source/equipment/shirt-formal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipShirtformal", + "name": "Shirt, formal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 3000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipShirtformal", + "reviewed": true +} diff --git a/packs/_source/equipment/shoes-casual.json b/packs/_source/equipment/shoes-casual.json new file mode 100644 index 0000000..38ea754 --- /dev/null +++ b/packs/_source/equipment/shoes-casual.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipShoescasual", + "name": "Shoes, casual", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipShoescasual", + "reviewed": true +} diff --git a/packs/_source/equipment/shoes-formal.json b/packs/_source/equipment/shoes-formal.json new file mode 100644 index 0000000..2ee1720 --- /dev/null +++ b/packs/_source/equipment/shoes-formal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipShoesformal", + "name": "Shoes, formal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 8000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipShoesformal", + "reviewed": true +} diff --git a/packs/_source/equipment/shovel.json b/packs/_source/equipment/shovel.json new file mode 100644 index 0000000..053308c --- /dev/null +++ b/packs/_source/equipment/shovel.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipShovel", + "name": "Shovel", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipShovel", + "reviewed": true +} diff --git a/packs/_source/equipment/shriek-paste.json b/packs/_source/equipment/shriek-paste.json new file mode 100644 index 0000000..6c99c76 --- /dev/null +++ b/packs/_source/equipment/shriek-paste.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipShriekpaste", + "name": "Shriek paste", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Alchemical paste with special properties.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipShriekpaste", + "reviewed": true +} diff --git a/packs/_source/equipment/signal-whistle.json b/packs/_source/equipment/signal-whistle.json new file mode 100644 index 0000000..f790347 --- /dev/null +++ b/packs/_source/equipment/signal-whistle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSignalwhistle", + "name": "Signal whistle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSignalwhistle", + "reviewed": true +} diff --git a/packs/_source/equipment/skirt.json b/packs/_source/equipment/skirt.json new file mode 100644 index 0000000..ad50355 --- /dev/null +++ b/packs/_source/equipment/skirt.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSkirt", + "name": "Skirt", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSkirt", + "reviewed": true +} diff --git a/packs/_source/equipment/smelling-salts.json b/packs/_source/equipment/smelling-salts.json new file mode 100644 index 0000000..a11cbee --- /dev/null +++ b/packs/_source/equipment/smelling-salts.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSmellingsalts", + "name": "Smelling salts", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Revives an unconscious being.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": true, + "uses": { + "value": 0, + "max": 5, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSmellingsalts", + "reviewed": true +} diff --git a/packs/_source/equipment/smock.json b/packs/_source/equipment/smock.json new file mode 100644 index 0000000..02a8a72 --- /dev/null +++ b/packs/_source/equipment/smock.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSmock", + "name": "Smock", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSmock", + "reviewed": true +} diff --git a/packs/_source/equipment/smoke-stick.json b/packs/_source/equipment/smoke-stick.json new file mode 100644 index 0000000..111119b --- /dev/null +++ b/packs/_source/equipment/smoke-stick.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSmokestick", + "name": "Smoke stick", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Creates a cloud of smoke when lit.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSmokestick", + "reviewed": true +} diff --git a/packs/_source/equipment/soap-bar.json b/packs/_source/equipment/soap-bar.json new file mode 100644 index 0000000..712bf05 --- /dev/null +++ b/packs/_source/equipment/soap-bar.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSoapbar", + "name": "Soap, bar", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Basic cleaning soap.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSoapbar", + "reviewed": true +} diff --git a/packs/_source/equipment/spectacles.json b/packs/_source/equipment/spectacles.json new file mode 100644 index 0000000..f51fd6e --- /dev/null +++ b/packs/_source/equipment/spectacles.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSpectacles", + "name": "Spectacles", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 8000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSpectacles", + "reviewed": true +} diff --git a/packs/_source/equipment/spellbook.json b/packs/_source/equipment/spellbook.json new file mode 100644 index 0000000..fe4de29 --- /dev/null +++ b/packs/_source/equipment/spellbook.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSpellbook", + "name": "Spellbook", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A bound tome used for recording magical knowledge and spells.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 150000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["magic"], + "isTrinket": true, + "canCastThrough": true, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSpellbook", + "reviewed": true +} diff --git a/packs/_source/equipment/spices-common-per-1-lb.json b/packs/_source/equipment/spices-common-per-1-lb.json new file mode 100644 index 0000000..e30757f --- /dev/null +++ b/packs/_source/equipment/spices-common-per-1-lb.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSpicescommonper1lb", + "name": "Spices, common (per 1 lb.)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSpicescommonper1lb", + "reviewed": true +} diff --git a/packs/_source/equipment/spices-exotic-per-1-lb.json b/packs/_source/equipment/spices-exotic-per-1-lb.json new file mode 100644 index 0000000..b5c2adf --- /dev/null +++ b/packs/_source/equipment/spices-exotic-per-1-lb.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSpicesexoticper1lb", + "name": "Spices, exotic (per 1 lb.)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSpicesexoticper1lb", + "reviewed": true +} diff --git a/packs/_source/equipment/spices-rare-per-1-lb.json b/packs/_source/equipment/spices-rare-per-1-lb.json new file mode 100644 index 0000000..3856d53 --- /dev/null +++ b/packs/_source/equipment/spices-rare-per-1-lb.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSpicesrareper1lb", + "name": "Spices, rare (per 1 lb.)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["food"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSpicesrareper1lb", + "reviewed": true +} diff --git a/packs/_source/equipment/spikes-iron-10.json b/packs/_source/equipment/spikes-iron-10.json new file mode 100644 index 0000000..332ff53 --- /dev/null +++ b/packs/_source/equipment/spikes-iron-10.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSpikesiron10", + "name": "Spikes, iron (10)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["climbing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSpikesiron10", + "reviewed": true +} diff --git a/packs/_source/equipment/splash-catalyst.json b/packs/_source/equipment/splash-catalyst.json new file mode 100644 index 0000000..0c2d107 --- /dev/null +++ b/packs/_source/equipment/splash-catalyst.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSplashcatalyst", + "name": "Splash catalyst", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "An alchemical catalyst that enhances splash effects.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 25000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSplashcatalyst", + "reviewed": true +} diff --git a/packs/_source/equipment/sportball.json b/packs/_source/equipment/sportball.json new file mode 100644 index 0000000..9e2b52f --- /dev/null +++ b/packs/_source/equipment/sportball.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSportball", + "name": "Sportball", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSportball", + "reviewed": true +} diff --git a/packs/_source/equipment/spyglass.json b/packs/_source/equipment/spyglass.json new file mode 100644 index 0000000..b6086b6 --- /dev/null +++ b/packs/_source/equipment/spyglass.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSpyglass", + "name": "Spyglass", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSpyglass", + "reviewed": true +} diff --git a/packs/_source/equipment/stabling-per-day.json b/packs/_source/equipment/stabling-per-day.json new file mode 100644 index 0000000..5be7f99 --- /dev/null +++ b/packs/_source/equipment/stabling-per-day.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipStablingperday", + "name": "Stabling (per day)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "misc", + "equipped": false, + "containerCapacity": 0, + "tags": ["service"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipStablingperday", + "reviewed": true +} diff --git a/packs/_source/equipment/stringtwine-100-feet.json b/packs/_source/equipment/stringtwine-100-feet.json new file mode 100644 index 0000000..2864ac7 --- /dev/null +++ b/packs/_source/equipment/stringtwine-100-feet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipStringtwine100feet", + "name": "String/twine, 100 feet", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipStringtwine100feet", + "reviewed": true +} diff --git a/packs/_source/equipment/sundial.json b/packs/_source/equipment/sundial.json new file mode 100644 index 0000000..2cd8bd7 --- /dev/null +++ b/packs/_source/equipment/sundial.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSundial", + "name": "Sundial", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 25000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSundial", + "reviewed": true +} diff --git a/packs/_source/equipment/sunrod.json b/packs/_source/equipment/sunrod.json new file mode 100644 index 0000000..23284e8 --- /dev/null +++ b/packs/_source/equipment/sunrod.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipSunrod", + "name": "Sunrod", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A bright light source.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipSunrod", + "reviewed": true +} diff --git a/packs/_source/equipment/tanglefoot-bag.json b/packs/_source/equipment/tanglefoot-bag.json new file mode 100644 index 0000000..2641b08 --- /dev/null +++ b/packs/_source/equipment/tanglefoot-bag.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTanglefootbag", + "name": "Tanglefoot bag", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A bag of sticky substance that entangles targets.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTanglefootbag", + "reviewed": true +} diff --git a/packs/_source/equipment/tankard.json b/packs/_source/equipment/tankard.json new file mode 100644 index 0000000..19ad359 --- /dev/null +++ b/packs/_source/equipment/tankard.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTankard", + "name": "Tankard", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTankard", + "reviewed": true +} diff --git a/packs/_source/equipment/telescope.json b/packs/_source/equipment/telescope.json new file mode 100644 index 0000000..a6ffa44 --- /dev/null +++ b/packs/_source/equipment/telescope.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTelescope", + "name": "Telescope", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 20000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTelescope", + "reviewed": true +} diff --git a/packs/_source/equipment/tent-four-person.json b/packs/_source/equipment/tent-four-person.json new file mode 100644 index 0000000..fb373f8 --- /dev/null +++ b/packs/_source/equipment/tent-four-person.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTentfourperson", + "name": "Tent, four-person", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 3, + "slotsPerItem": false, + "value": 12500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTentfourperson", + "reviewed": true +} diff --git a/packs/_source/equipment/tent-one-person.json b/packs/_source/equipment/tent-one-person.json new file mode 100644 index 0000000..48e39f7 --- /dev/null +++ b/packs/_source/equipment/tent-one-person.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTentoneperson", + "name": "Tent, one-person", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 3000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTentoneperson", + "reviewed": true +} diff --git a/packs/_source/equipment/tent-ten-person.json b/packs/_source/equipment/tent-ten-person.json new file mode 100644 index 0000000..5e0e140 --- /dev/null +++ b/packs/_source/equipment/tent-ten-person.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTenttenperson", + "name": "Tent, ten-person", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 3, + "slotsPerItem": false, + "value": 25000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTenttenperson", + "reviewed": true +} diff --git a/packs/_source/equipment/tent-two-person.json b/packs/_source/equipment/tent-two-person.json new file mode 100644 index 0000000..07a9a1a --- /dev/null +++ b/packs/_source/equipment/tent-two-person.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTenttwoperson", + "name": "Tent, two-person", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTenttwoperson", + "reviewed": true +} diff --git a/packs/_source/equipment/thunderstone.json b/packs/_source/equipment/thunderstone.json new file mode 100644 index 0000000..5a8cb28 --- /dev/null +++ b/packs/_source/equipment/thunderstone.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipThunderstone", + "name": "Thunderstone", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A stone that explodes with a deafening boom when thrown.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "explosive"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipThunderstone", + "reviewed": true +} diff --git a/packs/_source/equipment/tinderbox.json b/packs/_source/equipment/tinderbox.json new file mode 100644 index 0000000..d7ce4bb --- /dev/null +++ b/packs/_source/equipment/tinderbox.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTinderbox", + "name": "Tinderbox", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTinderbox", + "reviewed": true +} diff --git a/packs/_source/equipment/tindertwig.json b/packs/_source/equipment/tindertwig.json new file mode 100644 index 0000000..d7f1385 --- /dev/null +++ b/packs/_source/equipment/tindertwig.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTindertwig", + "name": "Tindertwig", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A stick that lights instantly when struck.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTindertwig", + "reviewed": true +} diff --git a/packs/_source/equipment/tinker-tools.json b/packs/_source/equipment/tinker-tools.json new file mode 100644 index 0000000..4fe1c7b --- /dev/null +++ b/packs/_source/equipment/tinker-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTinkertools", + "name": "Tinker Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTinkertools", + "reviewed": true +} diff --git a/packs/_source/equipment/tongs.json b/packs/_source/equipment/tongs.json new file mode 100644 index 0000000..1ac032a --- /dev/null +++ b/packs/_source/equipment/tongs.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTongs", + "name": "Tongs", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTongs", + "reviewed": true +} diff --git a/packs/_source/equipment/toothpaste.json b/packs/_source/equipment/toothpaste.json new file mode 100644 index 0000000..ee8894b --- /dev/null +++ b/packs/_source/equipment/toothpaste.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipToothpaste", + "name": "Toothpaste", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Basic dental hygiene paste.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 500, + "consumable": true, + "uses": { + "value": 0, + "max": 10, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipToothpaste", + "reviewed": true +} diff --git a/packs/_source/equipment/torch-frigidflame.json b/packs/_source/equipment/torch-frigidflame.json new file mode 100644 index 0000000..593b4c1 --- /dev/null +++ b/packs/_source/equipment/torch-frigidflame.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTorchfrigidflame", + "name": "Torch, frigidflame", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A torch that burns with cold flames.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTorchfrigidflame", + "reviewed": true +} diff --git a/packs/_source/equipment/torch-repel-beast.json b/packs/_source/equipment/torch-repel-beast.json new file mode 100644 index 0000000..ce3564f --- /dev/null +++ b/packs/_source/equipment/torch-repel-beast.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTorchrepelbeast", + "name": "Torch, repel beast", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A torch that repels beasts.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTorchrepelbeast", + "reviewed": true +} diff --git a/packs/_source/equipment/torch-sentry.json b/packs/_source/equipment/torch-sentry.json new file mode 100644 index 0000000..e268fbd --- /dev/null +++ b/packs/_source/equipment/torch-sentry.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTorchsentry", + "name": "Torch, sentry", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A torch with special sentry properties.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 50000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["alchemy", "light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTorchsentry", + "reviewed": true +} diff --git a/packs/_source/equipment/torch.json b/packs/_source/equipment/torch.json new file mode 100644 index 0000000..807a4c5 --- /dev/null +++ b/packs/_source/equipment/torch.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTorch", + "name": "Torch", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Provides Near Light for 1 hour.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["light"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTorch", + "reviewed": true +} diff --git a/packs/_source/equipment/toy-basic.json b/packs/_source/equipment/toy-basic.json new file mode 100644 index 0000000..85bf62f --- /dev/null +++ b/packs/_source/equipment/toy-basic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipToybasic", + "name": "Toy, basic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipToybasic", + "reviewed": true +} diff --git a/packs/_source/equipment/toy-complex.json b/packs/_source/equipment/toy-complex.json new file mode 100644 index 0000000..e070a83 --- /dev/null +++ b/packs/_source/equipment/toy-complex.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipToycomplex", + "name": "Toy, complex", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipToycomplex", + "reviewed": true +} diff --git a/packs/_source/equipment/toy-premium.json b/packs/_source/equipment/toy-premium.json new file mode 100644 index 0000000..936f5f7 --- /dev/null +++ b/packs/_source/equipment/toy-premium.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipToypremium", + "name": "Toy, premium", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipToypremium", + "reviewed": true +} diff --git a/packs/_source/equipment/trinket.json b/packs/_source/equipment/trinket.json new file mode 100644 index 0000000..786c9e7 --- /dev/null +++ b/packs/_source/equipment/trinket.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTrinket", + "name": "Trinket", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "A small magical focus item used for spellcasting.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": true, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTrinket", + "reviewed": true +} diff --git a/packs/_source/equipment/tripod-cooking.json b/packs/_source/equipment/tripod-cooking.json new file mode 100644 index 0000000..f267a15 --- /dev/null +++ b/packs/_source/equipment/tripod-cooking.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTripodcooking", + "name": "Tripod, cooking", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 2000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTripodcooking", + "reviewed": true +} diff --git a/packs/_source/equipment/tripwire.json b/packs/_source/equipment/tripwire.json new file mode 100644 index 0000000..79517b2 --- /dev/null +++ b/packs/_source/equipment/tripwire.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTripwire", + "name": "Tripwire", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTripwire", + "reviewed": true +} diff --git a/packs/_source/equipment/trumpet.json b/packs/_source/equipment/trumpet.json new file mode 100644 index 0000000..d261b58 --- /dev/null +++ b/packs/_source/equipment/trumpet.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTrumpet", + "name": "Trumpet", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["instrument"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTrumpet", + "reviewed": true +} diff --git a/packs/_source/equipment/tunic.json b/packs/_source/equipment/tunic.json new file mode 100644 index 0000000..f91a15e --- /dev/null +++ b/packs/_source/equipment/tunic.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipTunic", + "name": "Tunic", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipTunic", + "reviewed": true +} diff --git a/packs/_source/equipment/vest.json b/packs/_source/equipment/vest.json new file mode 100644 index 0000000..71bdfe4 --- /dev/null +++ b/packs/_source/equipment/vest.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipVest", + "name": "Vest", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipVest", + "reviewed": true +} diff --git a/packs/_source/equipment/vestments.json b/packs/_source/equipment/vestments.json new file mode 100644 index 0000000..719366c --- /dev/null +++ b/packs/_source/equipment/vestments.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipVestments", + "name": "Vestments", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["clothing"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipVestments", + "reviewed": true +} diff --git a/packs/_source/equipment/vial-clay.json b/packs/_source/equipment/vial-clay.json new file mode 100644 index 0000000..1ce04a1 --- /dev/null +++ b/packs/_source/equipment/vial-clay.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipVialclay", + "name": "Vial, clay", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 4 ounces.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 100, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipVialclay", + "reviewed": true +} diff --git a/packs/_source/equipment/vial-glass.json b/packs/_source/equipment/vial-glass.json new file mode 100644 index 0000000..d8963e6 --- /dev/null +++ b/packs/_source/equipment/vial-glass.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipVialglass", + "name": "Vial, glass", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 4 ounces.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipVialglass", + "reviewed": true +} diff --git a/packs/_source/equipment/vial-gold-inlaid.json b/packs/_source/equipment/vial-gold-inlaid.json new file mode 100644 index 0000000..2f3688f --- /dev/null +++ b/packs/_source/equipment/vial-gold-inlaid.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipVialgoldinlaid", + "name": "Vial, gold-inlaid", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 4 ounces.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipVialgoldinlaid", + "reviewed": true +} diff --git a/packs/_source/equipment/vial-metal.json b/packs/_source/equipment/vial-metal.json new file mode 100644 index 0000000..908f695 --- /dev/null +++ b/packs/_source/equipment/vial-metal.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipVialmetal", + "name": "Vial, metal", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "Holds 4 ounces.
", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipVialmetal", + "reviewed": true +} diff --git a/packs/_source/equipment/waterskin.json b/packs/_source/equipment/waterskin.json new file mode 100644 index 0000000..9d38e92 --- /dev/null +++ b/packs/_source/equipment/waterskin.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWaterskin", + "name": "Waterskin", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "container", + "equipped": false, + "containerCapacity": 0, + "tags": ["container", "camping"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWaterskin", + "reviewed": true +} diff --git a/packs/_source/equipment/wax-beeswax-1-lb.json b/packs/_source/equipment/wax-beeswax-1-lb.json new file mode 100644 index 0000000..42570e8 --- /dev/null +++ b/packs/_source/equipment/wax-beeswax-1-lb.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWaxbeeswax1lb", + "name": "Wax, beeswax (1 lb.)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 300, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWaxbeeswax1lb", + "reviewed": true +} diff --git a/packs/_source/equipment/wax-sealing-1-lb.json b/packs/_source/equipment/wax-sealing-1-lb.json new file mode 100644 index 0000000..3fac06d --- /dev/null +++ b/packs/_source/equipment/wax-sealing-1-lb.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWaxsealing1lb", + "name": "Wax, sealing (1 lb.)", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWaxsealing1lb", + "reviewed": true +} diff --git a/packs/_source/equipment/whetstone.json b/packs/_source/equipment/whetstone.json new file mode 100644 index 0000000..cd8781b --- /dev/null +++ b/packs/_source/equipment/whetstone.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWhetstone", + "name": "Whetstone", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 1000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWhetstone", + "reviewed": true +} diff --git a/packs/_source/equipment/wine-common-bottle.json b/packs/_source/equipment/wine-common-bottle.json new file mode 100644 index 0000000..dce16fd --- /dev/null +++ b/packs/_source/equipment/wine-common-bottle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWinecommonbottle", + "name": "Wine, common bottle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 200, + "consumable": true, + "uses": { + "value": 0, + "max": 4, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWinecommonbottle", + "reviewed": true +} diff --git a/packs/_source/equipment/wine-common-cask.json b/packs/_source/equipment/wine-common-cask.json new file mode 100644 index 0000000..761c403 --- /dev/null +++ b/packs/_source/equipment/wine-common-cask.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWinecommoncask", + "name": "Wine, common cask", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 10000, + "consumable": true, + "uses": { + "value": 0, + "max": 16, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWinecommoncask", + "reviewed": true +} diff --git a/packs/_source/equipment/wine-common-cup.json b/packs/_source/equipment/wine-common-cup.json new file mode 100644 index 0000000..9849bff --- /dev/null +++ b/packs/_source/equipment/wine-common-cup.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWinecommoncup", + "name": "Wine, common cup", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 400, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWinecommoncup", + "reviewed": true +} diff --git a/packs/_source/equipment/wine-fine-bottle.json b/packs/_source/equipment/wine-fine-bottle.json new file mode 100644 index 0000000..909cc5b --- /dev/null +++ b/packs/_source/equipment/wine-fine-bottle.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWinefinebottle", + "name": "Wine, fine bottle", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 10000, + "consumable": true, + "uses": { + "value": 0, + "max": 4, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWinefinebottle", + "reviewed": true +} diff --git a/packs/_source/equipment/wine-fine-cask.json b/packs/_source/equipment/wine-fine-cask.json new file mode 100644 index 0000000..a586933 --- /dev/null +++ b/packs/_source/equipment/wine-fine-cask.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWinefinecask", + "name": "Wine, fine cask", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 2800000, + "consumable": true, + "uses": { + "value": 0, + "max": 16, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWinefinecask", + "reviewed": true +} diff --git a/packs/_source/equipment/wine-fine-cup.json b/packs/_source/equipment/wine-fine-cup.json new file mode 100644 index 0000000..b88d7d9 --- /dev/null +++ b/packs/_source/equipment/wine-fine-cup.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWinefinecup", + "name": "Wine, fine cup", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 0, + "slotsPerItem": false, + "value": 2000, + "consumable": true, + "uses": { + "value": 0, + "max": 1, + "autoDestroy": true + }, + "category": "consumable", + "equipped": false, + "containerCapacity": 0, + "tags": ["drink"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWinefinecup", + "reviewed": true +} diff --git a/packs/_source/equipment/wood-stake.json b/packs/_source/equipment/wood-stake.json new file mode 100644 index 0000000..57f7673 --- /dev/null +++ b/packs/_source/equipment/wood-stake.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWoodstake", + "name": "Wood stake", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 1, + "slotsPerItem": false, + "value": 20, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "gear", + "equipped": false, + "containerCapacity": 0, + "tags": [], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWoodstake", + "reviewed": true +} diff --git a/packs/_source/equipment/woodworking-tools.json b/packs/_source/equipment/woodworking-tools.json new file mode 100644 index 0000000..e3f44e4 --- /dev/null +++ b/packs/_source/equipment/woodworking-tools.json @@ -0,0 +1,40 @@ +{ + "_id": "vagabondEquipWoodworkingtools", + "name": "Woodworking Tools", + "type": "equipment", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "quantity": 1, + "slots": 2, + "slotsPerItem": false, + "value": 5000, + "consumable": false, + "uses": { + "value": 0, + "max": 0, + "autoDestroy": true + }, + "category": "tool", + "equipped": false, + "containerCapacity": 0, + "tags": ["tool"], + "isTrinket": false, + "canCastThrough": false, + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondEquipWoodworkingtools", + "reviewed": true +} diff --git a/packs/_source/weapons/arbalest.json b/packs/_source/weapons/arbalest.json index 1e7c49d..5e710cb 100644 --- a/packs/_source/weapons/arbalest.json +++ b/packs/_source/weapons/arbalest.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 700, + "value": 7000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/battleaxe.json b/packs/_source/weapons/battleaxe.json index 266e9e2..a96a93c 100644 --- a/packs/_source/weapons/battleaxe.json +++ b/packs/_source/weapons/battleaxe.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 700, + "value": 7000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/bottle-glass.json b/packs/_source/weapons/bottle-glass.json index 4ab14ef..f0e5ca2 100644 --- a/packs/_source/weapons/bottle-glass.json +++ b/packs/_source/weapons/bottle-glass.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 20, + "value": 200, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/buckler.json b/packs/_source/weapons/buckler.json index a53455d..ffda82e 100644 --- a/packs/_source/weapons/buckler.json +++ b/packs/_source/weapons/buckler.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 500, + "value": 5000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/caestus.json b/packs/_source/weapons/caestus.json index 47aa666..7be3c18 100644 --- a/packs/_source/weapons/caestus.json +++ b/packs/_source/weapons/caestus.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 200, + "value": 2000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/club.json b/packs/_source/weapons/club.json index 611a3b5..dab0236 100644 --- a/packs/_source/weapons/club.json +++ b/packs/_source/weapons/club.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 20, + "value": 200, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/crossbow-light.json b/packs/_source/weapons/crossbow-light.json index ee6af74..467c8d3 100644 --- a/packs/_source/weapons/crossbow-light.json +++ b/packs/_source/weapons/crossbow-light.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/crossbow.json b/packs/_source/weapons/crossbow.json index f0d5dcb..9729341 100644 --- a/packs/_source/weapons/crossbow.json +++ b/packs/_source/weapons/crossbow.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 800, + "value": 8000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/dagger.json b/packs/_source/weapons/dagger.json index 690f1d3..d004dcd 100644 --- a/packs/_source/weapons/dagger.json +++ b/packs/_source/weapons/dagger.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 100, + "value": 1000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/flail.json b/packs/_source/weapons/flail.json index be7ab71..5e6e46e 100644 --- a/packs/_source/weapons/flail.json +++ b/packs/_source/weapons/flail.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 200, + "value": 2000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/garotte-wire.json b/packs/_source/weapons/garotte-wire.json index f880c2d..8d38ac2 100644 --- a/packs/_source/weapons/garotte-wire.json +++ b/packs/_source/weapons/garotte-wire.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 100, + "value": 1000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/gauntlet.json b/packs/_source/weapons/gauntlet.json index 588c2b9..b1ca580 100644 --- a/packs/_source/weapons/gauntlet.json +++ b/packs/_source/weapons/gauntlet.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 200, + "value": 2000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/greataxe.json b/packs/_source/weapons/greataxe.json index 386feeb..af26471 100644 --- a/packs/_source/weapons/greataxe.json +++ b/packs/_source/weapons/greataxe.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 500, + "value": 5000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/greatclub.json b/packs/_source/weapons/greatclub.json index c5667d7..bf4cbb0 100644 --- a/packs/_source/weapons/greatclub.json +++ b/packs/_source/weapons/greatclub.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 300, + "value": 3000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/greatshield.json b/packs/_source/weapons/greatshield.json index af38186..b51f234 100644 --- a/packs/_source/weapons/greatshield.json +++ b/packs/_source/weapons/greatshield.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 600, + "value": 6000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/greatsword.json b/packs/_source/weapons/greatsword.json index f0995b1..a52957a 100644 --- a/packs/_source/weapons/greatsword.json +++ b/packs/_source/weapons/greatsword.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 800, + "value": 8000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/handaxe.json b/packs/_source/weapons/handaxe.json index 3172fe4..61a1c61 100644 --- a/packs/_source/weapons/handaxe.json +++ b/packs/_source/weapons/handaxe.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/handgun.json b/packs/_source/weapons/handgun.json index 576a1ee..d1d2d32 100644 --- a/packs/_source/weapons/handgun.json +++ b/packs/_source/weapons/handgun.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/javelin.json b/packs/_source/weapons/javelin.json index 5c00b6c..86cc57d 100644 --- a/packs/_source/weapons/javelin.json +++ b/packs/_source/weapons/javelin.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 100, + "value": 1000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/katar.json b/packs/_source/weapons/katar.json index 2d40632..3b3bd25 100644 --- a/packs/_source/weapons/katar.json +++ b/packs/_source/weapons/katar.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 200, + "value": 2000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/lance.json b/packs/_source/weapons/lance.json index 38fddc9..be29ed5 100644 --- a/packs/_source/weapons/lance.json +++ b/packs/_source/weapons/lance.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 3, - "value": 900, + "value": 9000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/light-hammer.json b/packs/_source/weapons/light-hammer.json index 5f3cc15..f027578 100644 --- a/packs/_source/weapons/light-hammer.json +++ b/packs/_source/weapons/light-hammer.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 100, + "value": 1000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/longbow.json b/packs/_source/weapons/longbow.json index 4bcb32b..1f72f3f 100644 --- a/packs/_source/weapons/longbow.json +++ b/packs/_source/weapons/longbow.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 800, + "value": 8000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/longsword.json b/packs/_source/weapons/longsword.json index 511b4ed..c82d2ae 100644 --- a/packs/_source/weapons/longsword.json +++ b/packs/_source/weapons/longsword.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/lucerne.json b/packs/_source/weapons/lucerne.json index e5bcdc7..80222eb 100644 --- a/packs/_source/weapons/lucerne.json +++ b/packs/_source/weapons/lucerne.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 900, + "value": 9000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/mace.json b/packs/_source/weapons/mace.json index 0c38bf0..1d83624 100644 --- a/packs/_source/weapons/mace.json +++ b/packs/_source/weapons/mace.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/morningstar.json b/packs/_source/weapons/morningstar.json index f53661c..b3cb707 100644 --- a/packs/_source/weapons/morningstar.json +++ b/packs/_source/weapons/morningstar.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 800, + "value": 8000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/net.json b/packs/_source/weapons/net.json index 57cb8d4..d7bb030 100644 --- a/packs/_source/weapons/net.json +++ b/packs/_source/weapons/net.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 100, + "value": 1000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/pike.json b/packs/_source/weapons/pike.json index 8e5666c..df02db3 100644 --- a/packs/_source/weapons/pike.json +++ b/packs/_source/weapons/pike.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 3, - "value": 900, + "value": 9000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/poleblade.json b/packs/_source/weapons/poleblade.json index eb6e0a6..b814b00 100644 --- a/packs/_source/weapons/poleblade.json +++ b/packs/_source/weapons/poleblade.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 900, + "value": 9000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/rifle.json b/packs/_source/weapons/rifle.json index c9fe779..ba0c462 100644 --- a/packs/_source/weapons/rifle.json +++ b/packs/_source/weapons/rifle.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/shortbow.json b/packs/_source/weapons/shortbow.json index debf354..5933511 100644 --- a/packs/_source/weapons/shortbow.json +++ b/packs/_source/weapons/shortbow.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/shortsword.json b/packs/_source/weapons/shortsword.json index 5e01005..72853d9 100644 --- a/packs/_source/weapons/shortsword.json +++ b/packs/_source/weapons/shortsword.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 200, + "value": 2000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/shotgun-sawed-off.json b/packs/_source/weapons/shotgun-sawed-off.json index b0d5e30..b0627d8 100644 --- a/packs/_source/weapons/shotgun-sawed-off.json +++ b/packs/_source/weapons/shotgun-sawed-off.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 700, + "value": 7000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/shotgun.json b/packs/_source/weapons/shotgun.json index 60db21a..19884b0 100644 --- a/packs/_source/weapons/shotgun.json +++ b/packs/_source/weapons/shotgun.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 700, + "value": 7000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/sling.json b/packs/_source/weapons/sling.json index e6b7641..ef64a68 100644 --- a/packs/_source/weapons/sling.json +++ b/packs/_source/weapons/sling.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 50, + "value": 500, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/spear.json b/packs/_source/weapons/spear.json index 4f44f20..9b19495 100644 --- a/packs/_source/weapons/spear.json +++ b/packs/_source/weapons/spear.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 200, + "value": 2000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/staff.json b/packs/_source/weapons/staff.json index 2997752..d6ff4fe 100644 --- a/packs/_source/weapons/staff.json +++ b/packs/_source/weapons/staff.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 100, + "value": 1000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/standard-shield.json b/packs/_source/weapons/standard-shield.json index ff5d6c9..36e4ecb 100644 --- a/packs/_source/weapons/standard-shield.json +++ b/packs/_source/weapons/standard-shield.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 750, + "value": 7500, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/warhammer.json b/packs/_source/weapons/warhammer.json index 618bbae..969b8e7 100644 --- a/packs/_source/weapons/warhammer.json +++ b/packs/_source/weapons/warhammer.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 800, + "value": 8000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/whip-chain.json b/packs/_source/weapons/whip-chain.json index b5e9f6e..bbd118b 100644 --- a/packs/_source/weapons/whip-chain.json +++ b/packs/_source/weapons/whip-chain.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 2, - "value": 400, + "value": 4000, "equipped": false, "equippedHand": null, "quantity": 1, diff --git a/packs/_source/weapons/whip-leather.json b/packs/_source/weapons/whip-leather.json index bf8cc88..568b62f 100644 --- a/packs/_source/weapons/whip-leather.json +++ b/packs/_source/weapons/whip-leather.json @@ -34,7 +34,7 @@ }, "material": "mundane", "slots": 1, - "value": 100, + "value": 1000, "equipped": false, "equippedHand": null, "quantity": 1,