veloren/assets/common/entity/dungeon/myrmidon/cyclops.ron

20 lines
501 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
2023-04-12 22:53:38 +00:00
name: Automatic,
body: RandomWith("cyclops"),
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,
),
agent: (
idle_wander_factor: 0.0,
),
meta: [],
)