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,21 @@
#![enable(implicit_some)]
(
name: Name("Beastmaster"),
body: RandomWith("humanoid"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.miniboss"),
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.dungeon.cultist.beastmaster"),
active_hands: InHands((Choice([
(1, Item("common.items.weapons.axe.malachite_axe-0")),
(1, ModularWeapon(tool: Sword, material: Bloodsteel, hands: Two)),
(1, Item("common.items.weapons.bow.velorite")),
]), None)),
)),
),
pets: [("common.entity.dungeon.cultist.hound", ( start: 4, end: 5 ))],
meta: [
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
],
)

View File

@@ -0,0 +1,27 @@
#![enable(implicit_some)]
(
name: Name("Cultist"),
body: RandomWith("humanoid"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.enemy"),
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.dungeon.cultist.cultist"),
active_hands: InHands((Choice([
(2, ModularWeapon(tool: Axe, material: Orichalcum, hands: One)),
(4, Item("common.items.weapons.sword.cultist")),
(2, Item("common.items.weapons.staff.cultist_staff")),
(2, Item("common.items.weapons.hammer.cultist_purp_2h-0")),
(2, ModularWeapon(tool: Hammer, material: Orichalcum, hands: One)),
(2, Item("common.items.weapons.bow.velorite")),
(1, Item("common.items.weapons.sceptre.sceptre_velorite_0")),
]), None)),
)),
items: [
(5, "common.items.consumable.potion_big"),
],
),
meta: [
SkillSetAsset("common.skillset.preset.rank5.fullskill"),
],
)

View File

@@ -0,0 +1,11 @@
#![enable(implicit_some)]
(
name: Name("Tamed Darkhound"),
body: RandomWith("darkhound"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.minion"),
inventory: (
loadout: FromBody,
),
meta: [],
)

View File

@@ -0,0 +1,11 @@
#![enable(implicit_some)]
(
name: Name("Cultist Husk"),
body: RandomWith("husk"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.minion"),
inventory: (
loadout: Asset("common.loadout.dungeon.cultist.husk"),
),
meta: [],
)

View File

@@ -0,0 +1,11 @@
#![enable(implicit_some)]
(
name: Name("Husk Brute"),
body: RandomWith("husk_brute"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.miniboss"),
inventory: (
loadout: FromBody,
),
meta: [],
)

View File

@@ -0,0 +1,11 @@
#![enable(implicit_some)]
(
name: Name("Mindflayer"),
body: RandomWith("mindflayer"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.mindflayer"),
inventory: (
loadout: FromBody,
),
meta: [],
)

View File

@@ -0,0 +1,11 @@
#![enable(implicit_some)]
(
name: Name("Possessed Turret"),
body: Exact(Object(Crossbow)),
alignment: Alignment(Enemy),
loot: Item("common.items.crafting_ing.twigs"),
inventory: (
loadout: FromBody,
),
meta: [],
)

View File

@@ -0,0 +1,17 @@
#![enable(implicit_some)]
(
name: Name("Cultist Warlock"),
body: RandomWith("cultist_warlock"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.enemy"),
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.dungeon.cultist.warlock"),
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("Cultist Warlord"),
body: RandomWith("cultist_warlord"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.dungeon.cultist.enemy"),
inventory: (
loadout: Inline((
inherit: Asset("common.loadout.dungeon.cultist.warlord"),
active_hands: InHands((Choice([
(1, Item("common.items.npc_weapons.sword.bipedlarge-cultist")),
(1, Item("common.items.npc_weapons.hammer.bipedlarge-cultist")),
]), None)),
)),
),
meta: [],
)