1197 lines
30 KiB
YAML
1197 lines
30 KiB
YAML
# Consumable items that drop from enemies or are purchased from vendors
|
|
# These items have effects_on_use that trigger when consumed
|
|
#
|
|
# Effect Types:
|
|
# - hot: Heal Over Time (health restoration)
|
|
# - dot: Damage Over Time (poison, burn, etc.)
|
|
# - buff: Temporary stat increase
|
|
# - debuff: Temporary stat decrease
|
|
# - stun: Skip turn
|
|
# - shield: Absorb damage before HP loss
|
|
|
|
items:
|
|
# ==========================================================================
|
|
# HEALTH POTIONS
|
|
# ==========================================================================
|
|
|
|
health_potion_tiny:
|
|
name: "Tiny Health Potion"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A tiny vial of red liquid. Barely enough to close a scratch."
|
|
value: 10
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: heal_tiny
|
|
name: "Minor Mending"
|
|
effect_type: hot
|
|
power: 15
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
health_potion_small:
|
|
name: "Small Health Potion"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A small vial of red liquid that restores a modest amount of health."
|
|
value: 25
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: heal_small
|
|
name: "Minor Healing"
|
|
effect_type: hot
|
|
power: 30
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
health_potion_medium:
|
|
name: "Health Potion"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A standard healing potion used by adventurers across the realm."
|
|
value: 75
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: heal_medium
|
|
name: "Healing"
|
|
effect_type: hot
|
|
power: 75
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
health_potion_large:
|
|
name: "Large Health Potion"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A potent healing draught that restores significant health."
|
|
value: 150
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: heal_large
|
|
name: "Major Healing"
|
|
effect_type: hot
|
|
power: 150
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
health_potion_greater:
|
|
name: "Greater Health Potion"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A masterfully crafted elixir infused with rare healing herbs. Restores a massive amount of health."
|
|
value: 350
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: heal_greater
|
|
name: "Greater Healing"
|
|
effect_type: hot
|
|
power: 300
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
health_potion_supreme:
|
|
name: "Supreme Health Potion"
|
|
item_type: consumable
|
|
rarity: legendary
|
|
description: "A legendary elixir brewed by master alchemists using ingredients from the rarest corners of the world. Fully restores the drinker's vitality."
|
|
value: 750
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: heal_supreme
|
|
name: "Supreme Healing"
|
|
effect_type: hot
|
|
power: 500
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# MANA POTIONS
|
|
# ==========================================================================
|
|
|
|
mana_potion_tiny:
|
|
name: "Tiny Mana Potion"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A tiny vial of shimmering blue liquid. Enough to fuel a minor cantrip."
|
|
value: 10
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: mana_tiny
|
|
name: "Minor Mana"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 15
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
mana_potion_small:
|
|
name: "Small Mana Potion"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A small vial of blue liquid that restores mana."
|
|
value: 25
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: mana_small
|
|
name: "Minor Mana Restoration"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 30
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
mana_potion_medium:
|
|
name: "Mana Potion"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A standard mana potion favored by spellcasters."
|
|
value: 75
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: mana_medium
|
|
name: "Mana Restoration"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 75
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
mana_potion_large:
|
|
name: "Large Mana Potion"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A concentrated draught of arcane essence that restores significant mana."
|
|
value: 150
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: mana_large
|
|
name: "Major Mana Restoration"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 150
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
mana_potion_greater:
|
|
name: "Greater Mana Potion"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A masterfully distilled elixir of pure magical energy. Restores a massive amount of mana."
|
|
value: 350
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: mana_greater
|
|
name: "Greater Mana Restoration"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 300
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
mana_potion_supreme:
|
|
name: "Supreme Mana Potion"
|
|
item_type: consumable
|
|
rarity: legendary
|
|
description: "A legendary elixir containing concentrated ley line energy. Fully restores the drinker's magical reserves."
|
|
value: 750
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: mana_supreme
|
|
name: "Supreme Mana Restoration"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 500
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# HYBRID POTIONS (Rejuvenation - HP and MP)
|
|
# ==========================================================================
|
|
|
|
rejuvenation_potion_small:
|
|
name: "Small Rejuvenation Potion"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A swirling mixture of red and blue that restores both health and mana."
|
|
value: 60
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: rejuv_hp_small
|
|
name: "Minor Rejuvenation"
|
|
effect_type: hot
|
|
power: 25
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: rejuv_mp_small
|
|
name: "Minor Mana Rejuvenation"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 25
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
rejuvenation_potion_medium:
|
|
name: "Rejuvenation Potion"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A balanced elixir that restores both body and mind in equal measure."
|
|
value: 125
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: rejuv_hp_medium
|
|
name: "Rejuvenation"
|
|
effect_type: hot
|
|
power: 50
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: rejuv_mp_medium
|
|
name: "Mana Rejuvenation"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 50
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
rejuvenation_potion_large:
|
|
name: "Greater Rejuvenation Potion"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A perfectly harmonized elixir that significantly restores both health and mana."
|
|
value: 275
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: rejuv_hp_large
|
|
name: "Greater Rejuvenation"
|
|
effect_type: hot
|
|
power: 100
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: rejuv_mp_large
|
|
name: "Greater Mana Rejuvenation"
|
|
effect_type: hot
|
|
stat_target: mana
|
|
power: 100
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# STATUS EFFECT CURES
|
|
# ==========================================================================
|
|
|
|
antidote:
|
|
name: "Antidote"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A bitter herbal remedy that cures poison effects."
|
|
value: 30
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cure_poison
|
|
name: "Cure Poison"
|
|
effect_type: buff
|
|
removes_effect: poison
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
smelling_salts:
|
|
name: "Smelling Salts"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "Pungent salts that can revive unconscious allies or cure stun."
|
|
value: 40
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cure_stun
|
|
name: "Clear Mind"
|
|
effect_type: buff
|
|
removes_effect: stun
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
burn_salve:
|
|
name: "Burn Salve"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A cooling ointment made from aloe and mint that soothes burning wounds."
|
|
value: 35
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cure_burn
|
|
name: "Soothe Burns"
|
|
effect_type: buff
|
|
removes_effect: burn
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
frost_balm:
|
|
name: "Frost Balm"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A warming salve that restores circulation and removes freezing effects."
|
|
value: 35
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cure_freeze
|
|
name: "Thaw"
|
|
effect_type: buff
|
|
removes_effect: freeze
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
holy_water:
|
|
name: "Holy Water"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "Water blessed by a priest of the light. Removes curses and undead afflictions."
|
|
value: 50
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cure_curse
|
|
name: "Purify"
|
|
effect_type: buff
|
|
removes_effect: curse
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
panacea:
|
|
name: "Panacea"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A legendary cure-all that removes every negative status effect at once."
|
|
value: 150
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cure_all
|
|
name: "Universal Cure"
|
|
effect_type: buff
|
|
removes_effect: all
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# STAT ELIXIRS (Single Stat)
|
|
# ==========================================================================
|
|
|
|
elixir_of_strength:
|
|
name: "Elixir of Strength"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A powerful elixir that temporarily increases strength."
|
|
value: 100
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: str_buff
|
|
name: "Strength Boost"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
strength: 5
|
|
power: 5
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
elixir_of_agility:
|
|
name: "Elixir of Agility"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A shimmering elixir that enhances reflexes and speed."
|
|
value: 100
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: dex_buff
|
|
name: "Agility Boost"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
dexterity: 5
|
|
power: 5
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
elixir_of_intellect:
|
|
name: "Elixir of Intellect"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A cerulean elixir that sharpens the mind and enhances magical aptitude."
|
|
value: 100
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: int_buff
|
|
name: "Intellect Boost"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
intelligence: 5
|
|
power: 5
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
elixir_of_wisdom:
|
|
name: "Elixir of Wisdom"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A golden elixir that grants clarity of perception and insight."
|
|
value: 100
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: wis_buff
|
|
name: "Wisdom Boost"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
wisdom: 5
|
|
power: 5
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
elixir_of_fortitude:
|
|
name: "Elixir of Fortitude"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A thick, earthy elixir that toughens the body and increases endurance."
|
|
value: 100
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: con_buff
|
|
name: "Fortitude Boost"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
constitution: 5
|
|
power: 5
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
elixir_of_charisma:
|
|
name: "Elixir of Charisma"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A sweet, fragrant elixir that enhances presence and charm."
|
|
value: 100
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cha_buff
|
|
name: "Charisma Boost"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
charisma: 5
|
|
power: 5
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# STAT ELIXIRS (Multi-Stat Draughts)
|
|
# ==========================================================================
|
|
|
|
warriors_draught:
|
|
name: "Warrior's Draught"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A blood-red draught favored by gladiators. Enhances both strength and constitution."
|
|
value: 175
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: warrior_buff
|
|
name: "Warrior's Might"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
strength: 3
|
|
constitution: 3
|
|
power: 6
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
mages_draught:
|
|
name: "Mage's Draught"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A swirling violet draught brewed by archmages. Enhances both intellect and wisdom."
|
|
value: 175
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: mage_buff
|
|
name: "Arcane Insight"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
intelligence: 3
|
|
wisdom: 3
|
|
power: 6
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
rogues_draught:
|
|
name: "Rogue's Draught"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A smoky, quick-acting elixir favored by thieves. Enhances both agility and charm."
|
|
value: 175
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: rogue_buff
|
|
name: "Shadow's Grace"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
dexterity: 3
|
|
charisma: 3
|
|
power: 6
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# COMBAT ELIXIRS
|
|
# ==========================================================================
|
|
|
|
potion_of_haste:
|
|
name: "Potion of Haste"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A quicksilver elixir that accelerates your actions in combat."
|
|
value: 125
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: haste_buff
|
|
name: "Haste"
|
|
effect_type: buff
|
|
speed_modifier: 1.25
|
|
power: 25
|
|
duration: 3
|
|
stacks: 1
|
|
|
|
potion_of_stoneskin:
|
|
name: "Potion of Stoneskin"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A gritite elixir that hardens your skin like stone."
|
|
value: 120
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: stoneskin_buff
|
|
name: "Stoneskin"
|
|
effect_type: buff
|
|
defense_bonus: 10
|
|
power: 10
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
potion_of_clarity:
|
|
name: "Potion of Clarity"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A crystal-clear elixir that focuses magical energy."
|
|
value: 120
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: clarity_buff
|
|
name: "Magical Clarity"
|
|
effect_type: buff
|
|
spell_power_bonus: 10
|
|
power: 10
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
potion_of_evasion:
|
|
name: "Potion of Evasion"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A smoky elixir that makes you harder to hit."
|
|
value: 130
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: evasion_buff
|
|
name: "Evasion"
|
|
effect_type: buff
|
|
dodge_bonus: 0.15
|
|
power: 15
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
potion_of_regeneration:
|
|
name: "Potion of Regeneration"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A verdant elixir infused with troll blood. Heals wounds over time."
|
|
value: 200
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: regen_buff
|
|
name: "Regeneration"
|
|
effect_type: hot
|
|
power: 15
|
|
duration: 10
|
|
stacks: 1
|
|
|
|
potion_of_berserk:
|
|
name: "Potion of Berserk"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A crimson elixir that sends the drinker into a battle frenzy. Increases damage but lowers defenses."
|
|
value: 110
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: berserk_buff
|
|
name: "Berserk Fury"
|
|
effect_type: buff
|
|
damage_modifier: 1.20
|
|
defense_modifier: 0.90
|
|
power: 20
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
potion_of_invisibility:
|
|
name: "Potion of Invisibility"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A colorless, odorless elixir that grants temporary invisibility."
|
|
value: 250
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: invisibility_buff
|
|
name: "Invisibility"
|
|
effect_type: buff
|
|
stealth: true
|
|
power: 0
|
|
duration: 3
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# THROWABLES & BOMBS
|
|
# ==========================================================================
|
|
|
|
smoke_bomb:
|
|
name: "Smoke Bomb"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A small clay ball filled with smoke powder. Creates a cloud that obscures vision and aids escape."
|
|
value: 35
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: smoke_effect
|
|
name: "Smoke Cloud"
|
|
effect_type: debuff
|
|
target: enemies
|
|
blind: true
|
|
allows_escape: true
|
|
power: 0
|
|
duration: 2
|
|
stacks: 1
|
|
|
|
oil_flask:
|
|
name: "Oil Flask"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A flask of flammable oil. Creates a slippery, flammable area."
|
|
value: 25
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: oil_effect
|
|
name: "Oil Slick"
|
|
effect_type: debuff
|
|
target: area
|
|
flammable: true
|
|
power: 0
|
|
duration: 3
|
|
stacks: 1
|
|
|
|
alchemist_fire:
|
|
name: "Alchemist's Fire"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A volatile flask of alchemical fire that explodes on impact."
|
|
value: 75
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: alch_fire
|
|
name: "Alchemist's Fire"
|
|
effect_type: dot
|
|
damage_type: fire
|
|
target: enemies
|
|
power: 40
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
frost_bomb:
|
|
name: "Frost Bomb"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A crystalline sphere of frozen essence that shatters in a burst of cold."
|
|
value: 80
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: frost_burst
|
|
name: "Frost Burst"
|
|
effect_type: dot
|
|
damage_type: ice
|
|
target: enemies
|
|
power: 30
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: frost_slow
|
|
name: "Chilling"
|
|
effect_type: debuff
|
|
target: enemies
|
|
speed_modifier: 0.75
|
|
power: 0
|
|
duration: 2
|
|
stacks: 1
|
|
|
|
thunder_stone:
|
|
name: "Thunder Stone"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A charged crystal that releases a thunderous explosion when thrown."
|
|
value: 85
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: thunder_burst
|
|
name: "Thunder Burst"
|
|
effect_type: dot
|
|
damage_type: lightning
|
|
target: enemies
|
|
power: 25
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: thunder_stun
|
|
name: "Stunning"
|
|
effect_type: stun
|
|
target: enemies
|
|
stun_chance: 0.30
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
acid_vial:
|
|
name: "Acid Vial"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A glass vial of corrosive acid that melts armor and flesh alike."
|
|
value: 70
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: acid_splash
|
|
name: "Acid Splash"
|
|
effect_type: dot
|
|
damage_type: poison
|
|
target: enemies
|
|
power: 35
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: acid_corrode
|
|
name: "Corrosion"
|
|
effect_type: debuff
|
|
target: enemies
|
|
defense_modifier: 0.85
|
|
power: 0
|
|
duration: 3
|
|
stacks: 1
|
|
|
|
holy_bomb:
|
|
name: "Holy Bomb"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A blessed sphere of condensed divine light. Devastating against undead."
|
|
value: 150
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: holy_burst
|
|
name: "Holy Burst"
|
|
effect_type: dot
|
|
damage_type: holy
|
|
target: enemies
|
|
power: 60
|
|
bonus_vs_undead: 2.0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
flash_powder:
|
|
name: "Flash Powder"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A packet of powder that creates a blinding flash when ignited."
|
|
value: 40
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: flash_blind
|
|
name: "Blinding Flash"
|
|
effect_type: debuff
|
|
target: enemies
|
|
blind: true
|
|
power: 0
|
|
duration: 2
|
|
stacks: 1
|
|
|
|
poison_vial:
|
|
name: "Poison Vial"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A vial of potent poison that can be thrown or applied to weapons."
|
|
value: 60
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: poison_dot
|
|
name: "Poison"
|
|
effect_type: dot
|
|
damage_type: poison
|
|
target: enemies
|
|
power: 10
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
caltrops:
|
|
name: "Caltrops"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A bag of metal spikes designed to slow pursuing enemies."
|
|
value: 30
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: caltrop_slow
|
|
name: "Impeding"
|
|
effect_type: debuff
|
|
target: enemies
|
|
speed_modifier: 0.50
|
|
power: 0
|
|
duration: 3
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# SCROLLS
|
|
# ==========================================================================
|
|
|
|
scroll_of_fireball:
|
|
name: "Scroll of Fireball"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "An ancient scroll containing a powerful fire spell. Releases a massive fireball on use."
|
|
value: 175
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_fireball
|
|
name: "Fireball"
|
|
effect_type: dot
|
|
damage_type: fire
|
|
target: all_enemies
|
|
power: 80
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
scroll_of_lightning:
|
|
name: "Scroll of Lightning"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A crackling scroll that unleashes a devastating lightning bolt."
|
|
value: 175
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_lightning
|
|
name: "Lightning Bolt"
|
|
effect_type: dot
|
|
damage_type: lightning
|
|
target: single_enemy
|
|
power: 100
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
scroll_of_healing:
|
|
name: "Scroll of Healing"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A blessed scroll that invokes divine healing when read aloud."
|
|
value: 100
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_heal
|
|
name: "Divine Healing"
|
|
effect_type: hot
|
|
target: self
|
|
power: 50
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
scroll_of_protection:
|
|
name: "Scroll of Protection"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A warded scroll that creates a protective barrier around the reader."
|
|
value: 90
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_protect
|
|
name: "Magical Protection"
|
|
effect_type: shield
|
|
target: self
|
|
power: 50
|
|
duration: 3
|
|
stacks: 1
|
|
|
|
scroll_of_identify:
|
|
name: "Scroll of Identify"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A divination scroll that reveals the true properties of an item."
|
|
value: 50
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_identify
|
|
name: "Identify"
|
|
effect_type: buff
|
|
identify_item: true
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
scroll_of_teleport:
|
|
name: "Scroll of Teleport"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A complex arcane scroll that instantly transports the reader to safety."
|
|
value: 200
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_teleport
|
|
name: "Teleport"
|
|
effect_type: buff
|
|
teleport: true
|
|
allows_escape: true
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
scroll_of_resurrection:
|
|
name: "Scroll of Resurrection"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "An extremely rare scroll containing the power to bring back the fallen."
|
|
value: 500
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_resurrect
|
|
name: "Resurrection"
|
|
effect_type: hot
|
|
target: ally
|
|
resurrect: true
|
|
power: 100
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
scroll_of_dispel:
|
|
name: "Scroll of Dispel"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A scroll that unravels magical effects on enemies."
|
|
value: 85
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_dispel
|
|
name: "Dispel Magic"
|
|
effect_type: debuff
|
|
target: enemies
|
|
remove_buffs: true
|
|
power: 0
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
scroll_of_summon:
|
|
name: "Scroll of Summon"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A conjuration scroll that calls forth a temporary ally to fight by your side."
|
|
value: 225
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_summon
|
|
name: "Summon Ally"
|
|
effect_type: buff
|
|
summon: true
|
|
summon_type: elemental
|
|
power: 0
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
scroll_of_enchant:
|
|
name: "Scroll of Enchant"
|
|
item_type: consumable
|
|
rarity: epic
|
|
description: "A powerful scroll that temporarily imbues your weapon with magical energy."
|
|
value: 300
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: scroll_enchant
|
|
name: "Weapon Enchant"
|
|
effect_type: buff
|
|
target: self
|
|
damage_modifier: 1.50
|
|
damage_type: arcane
|
|
power: 50
|
|
duration: 5
|
|
stacks: 1
|
|
|
|
# ==========================================================================
|
|
# FOOD ITEMS
|
|
# ==========================================================================
|
|
|
|
bread_loaf:
|
|
name: "Bread Loaf"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A simple loaf of crusty bread. Basic sustenance for travelers."
|
|
value: 3
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: bread_heal
|
|
name: "Nourishment"
|
|
effect_type: hot
|
|
power: 8
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
cheese_wheel:
|
|
name: "Cheese Wheel"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A wheel of aged cheese. Filling and nutritious."
|
|
value: 8
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: cheese_heal
|
|
name: "Nourishment"
|
|
effect_type: hot
|
|
power: 12
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
fruit_basket:
|
|
name: "Fruit Basket"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A basket of fresh fruits. Refreshing and healthy."
|
|
value: 10
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: fruit_heal
|
|
name: "Refreshment"
|
|
effect_type: hot
|
|
power: 15
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
ration:
|
|
name: "Trail Ration"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "Dried meat, hardtack, and nuts. Sustains an adventurer on long journeys."
|
|
value: 5
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: ration_heal
|
|
name: "Nourishment"
|
|
effect_type: hot
|
|
power: 10
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
cooked_meat:
|
|
name: "Cooked Meat"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "Freshly cooked meat that restores health."
|
|
value: 15
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: meat_heal
|
|
name: "Hearty Meal"
|
|
effect_type: hot
|
|
power: 20
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
travelers_stew:
|
|
name: "Traveler's Stew"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A hearty stew made with vegetables and meat. Warms the body and soul."
|
|
value: 30
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: stew_heal
|
|
name: "Warming Meal"
|
|
effect_type: hot
|
|
power: 35
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
roasted_boar:
|
|
name: "Roasted Boar"
|
|
item_type: consumable
|
|
rarity: uncommon
|
|
description: "A feast of roasted wild boar. Extremely filling and restorative."
|
|
value: 45
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: boar_heal
|
|
name: "Feast"
|
|
effect_type: hot
|
|
power: 50
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
elven_waybread:
|
|
name: "Elven Waybread"
|
|
item_type: consumable
|
|
rarity: rare
|
|
description: "A magical bread baked by elven bakers. A single bite can sustain a traveler for days."
|
|
value: 80
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: waybread_heal
|
|
name: "Elven Sustenance"
|
|
effect_type: hot
|
|
power: 75
|
|
duration: 1
|
|
stacks: 1
|
|
|
|
dwarven_ale:
|
|
name: "Dwarven Ale"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A strong ale brewed in the mountain halls. Builds courage and warms the belly."
|
|
value: 8
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: ale_heal
|
|
name: "Liquid Courage"
|
|
effect_type: hot
|
|
power: 5
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: ale_courage
|
|
name: "Courage"
|
|
effect_type: buff
|
|
fear_immunity: true
|
|
power: 0
|
|
duration: 3
|
|
stacks: 1
|
|
|
|
wine_bottle:
|
|
name: "Bottle of Wine"
|
|
item_type: consumable
|
|
rarity: common
|
|
description: "A fine bottle of wine. Loosens the tongue and warms the heart."
|
|
value: 12
|
|
is_tradeable: true
|
|
effects_on_use:
|
|
- effect_id: wine_heal
|
|
name: "Warm Glow"
|
|
effect_type: hot
|
|
power: 3
|
|
duration: 1
|
|
stacks: 1
|
|
- effect_id: wine_charm
|
|
name: "Social Grace"
|
|
effect_type: buff
|
|
stat_bonus:
|
|
charisma: 2
|
|
power: 2
|
|
duration: 5
|
|
stacks: 1
|