28 lines
667 B
Plaintext
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],
|
|
)
|