docker-veloren/veloren/assets/common/entity/village/skinner.ron
Glauber Ferreira e11bf493a1
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s
primeiro commit
2024-04-29 21:38:53 -03:00

26 lines
791 B
Plaintext

#![enable(implicit_some)]
(
name: Name("Skinner"),
body: RandomWith("humanoid"),
alignment: Alignment(Npc),
loot: LootTable("common.loot_tables.nothing"),
inventory: (
loadout: Inline((
inherit: Choice([
(1, Asset("common.loadout.world.traveler1.leather")),
(1, Asset("common.loadout.world.traveler2.carapace")),
(1, Asset("common.loadout.world.traveler2.scale")),
]),
active_hands: InHands((Choice([
(1, ModularWeapon(tool: Axe, material: Cobalt, hands: None)),
]), None)),
)),
items: [
(10, "common.items.consumable.potion_big"),
(10, "common.items.food.sunflower_icetea"),
],
),
meta: [],
)