veloren/assets/common/entity/wild/aggressive/phoenix.ron

16 lines
458 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
2021-09-25 19:30:17 +00:00
name: Automatic,
body: RandomWith("phoenix"),
alignment: Alignment(Wild),
2023-09-07 22:21:19 +00:00
loot: All([
// Bow and glider, has a lower chance of dropping
LootTable("common.loot_tables.creature.bird_large.phoenix"),
// Phoenix feathers and food, always dropped
LootTable("common.loot_tables.creature.bird_large.phoenix_extra")
]),
2022-04-08 15:37:50 +00:00
inventory: (
loadout: FromBody,
),
2021-09-25 19:30:17 +00:00
meta: [],
)