veloren/assets/common/items/boss_drops/potions.ron

32 lines
831 B
Rust
Raw Normal View History

ItemDef(
2020-06-26 16:26:00 +00:00
name: "Potent Potion",
description: "A potent healing potion.",
kind: Consumable(
kind: Drink,
effects: [
2020-11-02 17:33:16 +00:00
Buff((
2020-12-09 18:29:38 +00:00
kind: Potion,
2020-11-02 17:33:16 +00:00
data: (
strength: 100.0,
2020-11-02 17:33:16 +00:00
duration: Some((
secs: 1,
nanos: 0,
)),
),
cat_ids: [Natural],
2020-11-01 13:39:32 +00:00
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(( secs: 45, nanos: 0, )),
delay: Some(( secs: 1, nanos: 0, ))
),
cat_ids: [Natural],
)),
2020-11-01 13:39:32 +00:00
]
),
2020-10-07 02:23:20 +00:00
quality: High,
2021-04-04 13:02:27 +00:00
tags: [Potion],
)