hotbot/assets/common/items/consumable/potion_agility.ron
2024-06-11 14:43:30 -04:00

28 lines
667 B
Plaintext

ItemDef(
legacy_name: "Potion of Agility",
legacy_description: "Fly, you fools!",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Agility,
data: (
strength: 0.55,
duration: Some(25),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.5,
duration: Some(60),
),
cat_ids: [Natural],
)),
])
),
quality: Moderate,
tags: [Potion],
)