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,13 @@
[
// Gear
(0.5, LootTable("common.loot_tables.weapons.components.tier-4")),
(0.25, LootTable("common.loot_tables.weapons.tier-4")),
(0.25, LootTable("common.loot_tables.armor.tier-4")),
(0.1, Item("common.items.armor.misc.head.spikeguard")),
// Currency
(3.0, MultiDrop(Item("common.items.utility.coins"), 500, 1000)),
// Consumables
(2.0, MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8)),
// Food
(1.0, MultiDrop(LootTable("common.loot_tables.food.prepared"), 2, 5)),
]

View File

@@ -0,0 +1,8 @@
[
// Currency
(1.0, MultiDrop(Item("common.items.utility.coins"), 40, 100)),
// Food
(1.0, LootTable("common.loot_tables.food.prepared")),
// Nothing
(2.0, Nothing),
]

View File

@@ -0,0 +1,18 @@
[
(1.0, All([
MultiDrop(Item("common.items.utility.coins"), 200, 500),
MultiDrop(Item("common.items.mineral.ingot.iron"), 5, 10),
MultiDrop(Item("common.items.consumable.potion_minor"), 4, 8),
// Special drop
Lottery([
// Lantern drop
(0.15, Item("common.items.lantern.blue_0")),
// Hat drop
(0.3, Item("common.items.armor.misc.head.mitre")),
// Allow for Eldwood to drop until entity droppers are implemented
(0.5, Item("common.items.log.eldwood")),
(1.05, Nothing),
]),
]))
]

View File

@@ -0,0 +1,10 @@
[
(1.7, All([
// coins are temporary placeholder for unique drops
MultiDrop(Item("common.items.utility.coins"), 200, 500),
MultiDrop(Item("common.items.log.eldwood"), 2, 6),
],
)),
(0.1, Item("common.items.weapons.axe.parashu")),
(0.2, Item("common.items.armor.misc.neck.carcanet_of_wrath")),
]