mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
491 B
Rust
20 lines
491 B
Rust
ItemDef(
|
|
name: "Freezing Charm",
|
|
description: "Let your enemies feel the sting of cold as you freeze them in their tracks.",
|
|
kind: Consumable(
|
|
kind: Drink,
|
|
effects: All([
|
|
Buff((
|
|
kind: Frigid,
|
|
data: (
|
|
strength: 0.4,
|
|
duration: Some(20),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
|
|
])
|
|
),
|
|
quality: Legendary,
|
|
tags: [],
|
|
) |