trade_bot/assets/common/items/consumable/potion_freezing.ron
Jeff 545f8c6643
All checks were successful
Publish / rust (push) Successful in 6m0s
Publish / docker (push) Successful in 31s
Update assets
2024-08-08 17:03:53 -04:00

28 lines
672 B
Plaintext

ItemDef(
legacy_name: "Freezing Potion",
legacy_description: "Freezes the user's brain",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Frozen,
data: (
strength: 0.1,
duration: Some(30)
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.15,
duration: Some(30),
),
cat_ids: [Natural],
)),
])
),
quality: Moderate,
tags: [Potion],
)