veloren/assets/common/entity/spot/witch_dark.ron

16 lines
472 B
Rust
Raw Normal View History

2022-04-08 15:37:50 +00:00
#![enable(implicit_some)]
(
2021-08-31 09:15:52 +00:00
name: Name("Witch"),
2021-10-20 02:27:22 +00:00
body: RandomWith("humanoid"),
2021-08-31 09:15:52 +00:00
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.spots.witch"),
2022-04-08 15:37:50 +00:00
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.spots.witch"),
2022-05-06 19:58:52 +00:00
active_hands: InHands((Item("common.items.weapons.sceptre.belzeshrub"), None)),
2022-04-08 15:37:50 +00:00
)),
),
2021-08-31 09:15:52 +00:00
meta: [
2021-12-15 06:51:25 +00:00
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
2021-08-31 09:15:52 +00:00
],
)