2022-04-08 15:37:50 +00:00
|
|
|
#![enable(implicit_some)]
|
2022-01-23 15:22:27 +00:00
|
|
|
(
|
2023-04-12 22:53:38 +00:00
|
|
|
name: Automatic,
|
|
|
|
body: RandomWith("cyclops"),
|
2021-07-04 14:55:52 +00:00
|
|
|
alignment: Alignment(Enemy),
|
2023-09-07 22:08:39 +00:00
|
|
|
loot: All([
|
2023-09-07 22:21:19 +00:00
|
|
|
// Hat, wood and lantern, has a lower chance of dropping
|
2023-09-07 22:08:39 +00:00
|
|
|
LootTable("common.loot_tables.dungeon.myrmidon.miniboss"),
|
2023-09-07 22:21:19 +00:00
|
|
|
// Materials, always dropped
|
2023-09-07 22:08:39 +00:00
|
|
|
LootTable("common.loot_tables.dungeon.myrmidon.miniboss_extra"),
|
|
|
|
]),
|
2022-04-08 15:37:50 +00:00
|
|
|
inventory: (
|
|
|
|
loadout: FromBody,
|
|
|
|
),
|
2023-05-16 17:51:46 +00:00
|
|
|
agent: (
|
|
|
|
idle_wander_factor: 0.0,
|
|
|
|
),
|
2021-07-10 20:51:29 +00:00
|
|
|
meta: [],
|
2023-05-16 17:51:46 +00:00
|
|
|
)
|