primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s

This commit is contained in:
2024-04-29 21:38:53 -03:00
commit e11bf493a1
2532 changed files with 55878 additions and 0 deletions

View 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"),
],
)

View 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: [],
)

View 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: [],
)

View 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"),
],
)

View 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"),
],
)

View 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: [],
)

View 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"),
],
)

View 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"),
],
)

View 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"),
],
)

View 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: [],
)

View 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: [],
)

View 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"),
],
)

View 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"),
],
)

View 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"),
],
)