trade_bot/assets/common/items/consumable/potion_combustion.ron

28 lines
674 B
Plaintext
Raw Normal View History

2024-07-03 23:04:49 +00:00
ItemDef(
legacy_name: "Potion of Combustion",
legacy_description: "Sets the user ablaze",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Burning,
data: (
strength: 1.0,
duration: Some(10)
),
cat_ids: [Natural],
2024-08-08 21:03:53 +00:00
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.15,
duration: Some(30),
),
cat_ids: [Natural],
)),
2024-07-03 23:04:49 +00:00
])
),
quality: Moderate,
tags: [Potion],
)