veloren/assets/common/items/food/blue_cheese.ron
UncomfySilence c2bf1a5345 + Created common.loot_tables.event directory for special item drop changes or for potential bosses.
+ Made yeti boss have a 5% chance to spawn in snow biomes.
+ New yeti entity has ~28.5% chance to drop 1 to 10 exclusive blue cheese, ~57.1% to drop 1 to 3 coal, and ~14.2% chance to drop 1 diamond.
+ Blue cheese heals 60hp over 20 seconds.
+Blue cheese has item_image_manifest and other necessities completed. (Model is current placeholder until Gemu or Hannibal have approved)
2021-12-20 18:03:52 +00:00

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],
)