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

28 lines
691 B
Plaintext

ItemDef(
legacy_name: "Minor Potion",
legacy_description: "A small potion concocted from apples and honey.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Potion,
data: (
strength: 50.0,
duration: Some(1),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
),
cat_ids: [Natural],
)),
])
),
quality: Common,
tags: [Potion],
)