mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
22 lines
547 B
Plaintext
22 lines
547 B
Plaintext
|
ItemDef(
|
||
|
name: "Meat",
|
||
|
description: "Restores 10 Health over 20 seconds\n\nMeat. The lifeblood of mankind.",
|
||
|
kind: Consumable(
|
||
|
kind: "Meat",
|
||
|
effect: [
|
||
|
Buff((
|
||
|
kind: Saturation,
|
||
|
data: (
|
||
|
strength: 5.0,
|
||
|
duration: Some((
|
||
|
secs: 20,
|
||
|
nanos: 0,
|
||
|
)),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
]
|
||
|
),
|
||
|
quality: Common,
|
||
|
)
|