2022-04-08 15:37:50 +00:00
|
|
|
#![enable(implicit_some)]
|
2022-01-23 15:22:27 +00:00
|
|
|
(
|
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: [],
|
2022-01-23 15:22:27 +00:00
|
|
|
)
|