mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
c2bf1a5345
+ 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)
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],
|
|
) |