veloren/assets/common/items/charms/lifesteal_charm.ron

20 lines
457 B
Rust

ItemDef(
name: "Siphon Charm",
description: "Siphon your target life and use it for your own.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Lifesteal,
data: (
strength: 0.4,
duration: Some(20),
),
cat_ids: [RemoveOnAttack],
)),
])
),
quality: Legendary,
tags: [],
)