mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
22 lines
502 B
Rust
22 lines
502 B
Rust
|
ItemDef(
|
||
|
name: "Blue Cheese",
|
||
|
description: "Pungent and filling",
|
||
|
kind: Consumable(
|
||
|
kind: Food,
|
||
|
effects: [
|
||
|
Buff((
|
||
|
kind: Saturation,
|
||
|
data: (
|
||
|
strength: 3.0,
|
||
|
duration: Some((
|
||
|
secs: 20,
|
||
|
nanos: 0,
|
||
|
)),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
]
|
||
|
),
|
||
|
quality: High,
|
||
|
tags: [Food],
|
||
|
)
|