Skip to content

Commit

Permalink
Added copper items to loot tables, tweaked chances. May need to tweak…
Browse files Browse the repository at this point in the history
… it further.
  • Loading branch information
the1mason committed Aug 10, 2023
1 parent 92483e2 commit a1d4e39
Show file tree
Hide file tree
Showing 8 changed files with 213 additions and 69 deletions.
71 changes: 71 additions & 0 deletions src/main/resources/loot/armor_gift.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"items": [
{
"item": "emeraldtools:emerald_helmet",
"chance": 10,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_chestplate",
"chance": 10,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_leggings",
"chance": 10,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_boots",
"chance": 10,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_helmet",
"chance": 13,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_chestplate",
"chance": 13,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_leggings",
"chance": 13,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_boots",
"chance": 13,
"amount": {
"min": 1,
"max": 1
}
}
],
"whitelist": [
"gameplay/hero_of_the_village/armorer_gift"
]
}
76 changes: 76 additions & 0 deletions src/main/resources/loot/armor_natural.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"items": [
{
"item": "emeraldtools:emerald_helmet",
"chance": 3,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_chestplate",
"chance": 2,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_leggings",
"chance": 2,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_boots",
"chance": 3,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_helmet",
"chance": 5,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_chestplate",
"chance": 4,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_leggings",
"chance": 4,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_boots",
"chance": 5,
"amount": {
"min": 1,
"max": 1
}
}
],
"whitelist": [
"chests/igloo_chest",
"chests/jungle_temple",
"chests/pillager_outpost",
"chests/woodland_mansion",
"chests/village/village_armorer",
"chests/abandoned_mineshaft"
]
}
23 changes: 0 additions & 23 deletions src/main/resources/loot/emerald_weapons_gift.json

This file was deleted.

28 changes: 0 additions & 28 deletions src/main/resources/loot/emerald_weapons_natural.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,30 @@
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_pickaxe",
"chance": 13,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_hoe",
"chance": 13,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_shovel",
"chance": 13,
"amount": {
"min": 1,
"max": 1
}
}
],
"whitelist": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,47 @@
"items": [
{
"item": "emeraldtools:emerald_pickaxe",
"chance": 6,
"chance": 3,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_hoe",
"chance": 10,
"chance": 7,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_shovel",
"chance": 10,
"chance": 9,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_pickaxe",
"chance": 12,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_hoe",
"chance": 17,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:copper_shovel",
"chance": 18,
"amount": {
"min": 1,
"max": 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"items": [
{
"item": "emeraldtools:emerald_helmet",
"item": "emeraldtools:emerald_sword",
"chance": 10,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_chestplate",
"item": "emeraldtools:emerald_axe",
"chance": 10,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_leggings",
"chance": 10,
"item": "emeraldtools:copper_sword",
"chance": 15,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_boots",
"chance": 10,
"item": "emeraldtools:copper_axe",
"chance": 15,
"amount": {
"min": 1,
"max": 1
}
}
],
"whitelist": [
"gameplay/hero_of_the_village/armorer_gift"
"gameplay/hero_of_the_village/weaponsmith_gift"
]
}
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"items": [
{
"item": "emeraldtools:emerald_helmet",
"item": "emeraldtools:emerald_sword",
"chance": 3,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_chestplate",
"chance": 3,
"item": "emeraldtools:emerald_axe",
"chance": 6,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_leggings",
"chance": 3,
"item": "emeraldtools:copper_sword",
"chance": 9,
"amount": {
"min": 1,
"max": 1
}
},
{
"item": "emeraldtools:emerald_boots",
"chance": 3,
"item": "emeraldtools:copper_axe",
"chance": 12,
"amount": {
"min": 1,
"max": 1
Expand All @@ -38,7 +38,7 @@
"chests/jungle_temple",
"chests/pillager_outpost",
"chests/woodland_mansion",
"chests/village/village_armorer",
"chests/village/village_weaponsmith",
"chests/abandoned_mineshaft"
]
}

0 comments on commit a1d4e39

Please sign in to comment.