mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
ccf7c7a0e4
* Gatherable food gives you slightly variable regen with variable time based on tier and that fact that we have x2 health on endgame character. For example while mushroom gives you 5 health over 10 seconds (0.5 health-per-second), mushroom curry will give you 120 health over 80 seconds (1.5 health-per-second). * Meat gives you twice powerful regen strength, but with twice shorter duration
23 lines
548 B
Plaintext
23 lines
548 B
Plaintext
ItemDef(
|
|
name: "Cactus Colada",
|
|
description: "Giving you that special prickle.",
|
|
kind: Consumable(
|
|
kind: "CactusColada",
|
|
effect: [
|
|
Buff((
|
|
kind: Saturation,
|
|
data: (
|
|
strength: 10.0,
|
|
duration: Some((
|
|
secs: 25,
|
|
nanos: 0,
|
|
)),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
]
|
|
),
|
|
quality: Moderate,
|
|
tags: [Food],
|
|
)
|