primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s
This commit is contained in:
19
veloren/assets/common/entity/spot/dwarf_grave_robber.ron
Normal file
19
veloren/assets/common/entity/spot/dwarf_grave_robber.ron
Normal file
@@ -0,0 +1,19 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Grave Robber"),
|
||||
body: RandomWith("dwarf"),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.humanoids.dwarf_graverobber"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.dwarf_graverobber"),
|
||||
active_hands: InHands((
|
||||
ModularWeapon(tool: Hammer, material: Steel, hands: Two),
|
||||
None
|
||||
)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
|
||||
],
|
||||
)
|
||||
14
veloren/assets/common/entity/spot/female_lion.ron
Normal file
14
veloren/assets/common/entity/spot/female_lion.ron
Normal file
@@ -0,0 +1,14 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Lioness"),
|
||||
body: Exact(QuadrupedMedium((
|
||||
species: Lion,
|
||||
body_type: Female,
|
||||
))),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.creature.quad_medium.clawed"),
|
||||
inventory: (
|
||||
loadout: FromBody,
|
||||
),
|
||||
meta: [],
|
||||
)
|
||||
14
veloren/assets/common/entity/spot/gnome/spear.ron
Normal file
14
veloren/assets/common/entity/spot/gnome/spear.ron
Normal file
@@ -0,0 +1,14 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Gnome"),
|
||||
body: RandomWith("gnome"),
|
||||
alignment: Alignment(Wild),
|
||||
loot: LootTable("common.loot_tables.dungeon.myrmidon.enemy"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.gnome"),
|
||||
active_hands: InHands((Item("common.items.npc_weapons.biped_small.myrmidon.hoplite"), None)),
|
||||
)),
|
||||
),
|
||||
meta: [],
|
||||
)
|
||||
19
veloren/assets/common/entity/spot/grim_salvager.ron
Normal file
19
veloren/assets/common/entity/spot/grim_salvager.ron
Normal file
@@ -0,0 +1,19 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Grim Salvager"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.humanoids.grim_salvager"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.dwarf_graverobber"),
|
||||
active_hands: InHands((
|
||||
ModularWeapon(tool: Hammer, material: Steel, hands: Two),
|
||||
None
|
||||
)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank1.fullskill"),
|
||||
],
|
||||
)
|
||||
19
veloren/assets/common/entity/spot/pirate.ron
Normal file
19
veloren/assets/common/entity/spot/pirate.ron
Normal file
@@ -0,0 +1,19 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Pirate"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.humanoids.pirate"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.pirate"),
|
||||
active_hands: InHands((
|
||||
ModularWeapon(tool: Sword, material: Iron, hands: One),
|
||||
ModularWeapon(tool: Sword, material: Iron, hands: One),
|
||||
)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank2.fullskill"),
|
||||
],
|
||||
)
|
||||
13
veloren/assets/common/entity/spot/saurok.ron
Normal file
13
veloren/assets/common/entity/spot/saurok.ron
Normal file
@@ -0,0 +1,13 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Saurok Bandit"),
|
||||
body: RandomWith("saurok_mighty"),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.creature.biped_large.saurok"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
active_hands: InHands((Item("common.items.npc_weapons.bow.saurok_bow"), None)),
|
||||
)),
|
||||
),
|
||||
meta: [],
|
||||
)
|
||||
16
veloren/assets/common/entity/spot/witch_dark.ron
Normal file
16
veloren/assets/common/entity/spot/witch_dark.ron
Normal file
@@ -0,0 +1,16 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Witch"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.humanoids.witch"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.witch"),
|
||||
active_hands: InHands((Item("common.items.weapons.sceptre.belzeshrub"), None)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank3.fullskill"),
|
||||
],
|
||||
)
|
||||
20
veloren/assets/common/entity/spot/wizard/adept.ron
Normal file
20
veloren/assets/common/entity/spot/wizard/adept.ron
Normal file
@@ -0,0 +1,20 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Adept"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Npc),
|
||||
loot: LootTable("common.loot_tables.dungeon.cultist.enemy"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.wizard_tower.wizard_low"),
|
||||
active_hands: InHands((Choice([
|
||||
(2, ModularWeapon(tool: Axe, material: Orichalcum, hands: One)),
|
||||
(2, ModularWeapon(tool: Hammer, material: Orichalcum, hands: One)),
|
||||
|
||||
]), None)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
|
||||
],
|
||||
)
|
||||
19
veloren/assets/common/entity/spot/wizard/novice.ron
Normal file
19
veloren/assets/common/entity/spot/wizard/novice.ron
Normal file
@@ -0,0 +1,19 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Novice"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Npc),
|
||||
loot: LootTable("common.loot_tables.dungeon.cultist.enemy"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.wizard_tower.wizard_low"),
|
||||
active_hands: InHands((Choice([
|
||||
(2, Item("common.items.weapons.staff.cultist_staff")),
|
||||
(1, Item("common.items.weapons.sceptre.sceptre_velorite_0")),
|
||||
]), None)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
|
||||
],
|
||||
)
|
||||
17
veloren/assets/common/entity/spot/wizard/overseer.ron
Normal file
17
veloren/assets/common/entity/spot/wizard/overseer.ron
Normal file
@@ -0,0 +1,17 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Overseer"),
|
||||
body: RandomWith("cultist_warlock"),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.dungeon.cultist.enemy"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.wizard_tower.wizard_overseer"),
|
||||
active_hands: InHands((Choice([
|
||||
(1, Item("common.items.npc_weapons.staff.bipedlarge-cultist")),
|
||||
(1, Item("common.items.npc_weapons.bow.bipedlarge-velorite")),
|
||||
]), None)),
|
||||
)),
|
||||
),
|
||||
meta: [],
|
||||
)
|
||||
17
veloren/assets/common/entity/spot/wizard/spellbinder.ron
Normal file
17
veloren/assets/common/entity/spot/wizard/spellbinder.ron
Normal file
@@ -0,0 +1,17 @@
|
||||
#![enable(implicit_some)]
|
||||
(
|
||||
name: Name("Overseer"),
|
||||
body: RandomWith("cultist_warlock"),
|
||||
alignment: Alignment(Enemy),
|
||||
loot: LootTable("common.loot_tables.dungeon.cultist.enemy"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.wizard_tower.wizard_spellbinder"),
|
||||
active_hands: InHands((Choice([
|
||||
(1, Item("common.items.npc_weapons.staff.bipedlarge-cultist")),
|
||||
(1, Item("common.items.npc_weapons.bow.bipedlarge-velorite")),
|
||||
]), None)),
|
||||
)),
|
||||
),
|
||||
meta: [],
|
||||
)
|
||||
19
veloren/assets/common/entity/spot/wizard/wizard_argo.ron
Normal file
19
veloren/assets/common/entity/spot/wizard/wizard_argo.ron
Normal file
@@ -0,0 +1,19 @@
|
||||
#![enable(implicit_some)]
|
||||
|
||||
(
|
||||
name: Name("Argo"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Npc),
|
||||
loot: LootTable("common.loot_tables.dungeon.cultist.miniboss"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.wizard_tower.wizard_boss"),
|
||||
active_hands: InHands((Choice([
|
||||
(1, Item("common.items.weapons.sceptre.sceptre_velorite_0")),
|
||||
]), None)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
|
||||
],
|
||||
)
|
||||
19
veloren/assets/common/entity/spot/wizard/wizard_haku.ron
Normal file
19
veloren/assets/common/entity/spot/wizard/wizard_haku.ron
Normal file
@@ -0,0 +1,19 @@
|
||||
#![enable(implicit_some)]
|
||||
|
||||
(
|
||||
name: Name("Haku"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Npc),
|
||||
loot: LootTable("common.loot_tables.dungeon.cultist.miniboss"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.wizard_tower.wizard_boss"),
|
||||
active_hands: InHands((Choice([
|
||||
(1, Item("common.items.weapons.sceptre.sceptre_velorite_0")),
|
||||
]), None)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
|
||||
],
|
||||
)
|
||||
19
veloren/assets/common/entity/spot/wizard/wizard_trish.ron
Normal file
19
veloren/assets/common/entity/spot/wizard/wizard_trish.ron
Normal file
@@ -0,0 +1,19 @@
|
||||
#![enable(implicit_some)]
|
||||
|
||||
(
|
||||
name: Name("Trish"),
|
||||
body: RandomWith("humanoid"),
|
||||
alignment: Alignment(Npc),
|
||||
loot: LootTable("common.loot_tables.dungeon.cultist.miniboss"),
|
||||
inventory: (
|
||||
loadout: Inline((
|
||||
inherit: Asset("common.loadout.spots.wizard_tower.wizard_boss"),
|
||||
active_hands: InHands((Choice([
|
||||
(1, Item("common.items.weapons.sceptre.sceptre_velorite_0")),
|
||||
]), None)),
|
||||
)),
|
||||
),
|
||||
meta: [
|
||||
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user