Compare commits
3 commits
6e530aa23b
...
109918eea5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
109918eea5 | ||
|
|
9a76688a38 | ||
|
|
34e3ead799 |
6
TODO.md
6
TODO.md
|
|
@ -4,6 +4,10 @@ options.txt
|
|||
|
||||
Thouroghly compare implemented features to the 1.20.1 pack before initial release
|
||||
|
||||
## Mods
|
||||
|
||||
Start by creating a list of needed mods
|
||||
|
||||
## Datapack
|
||||
|
||||
* Worldgen
|
||||
|
|
@ -15,6 +19,7 @@ Thouroghly compare implemented features to the 1.20.1 pack before initial releas
|
|||
* Antique Atlas
|
||||
* Convenience (e.g. coal/redstone to dye, shapeless shulker box)
|
||||
* Minecraft
|
||||
* Copper armour
|
||||
* Advancements
|
||||
* Wooden paxel recipe unlock when getting wood
|
||||
* Others
|
||||
|
|
@ -24,6 +29,7 @@ Thouroghly compare implemented features to the 1.20.1 pack before initial releas
|
|||
* Worldgen
|
||||
* Ores
|
||||
|
||||
|
||||
## Assets
|
||||
|
||||
* Lang files
|
||||
|
|
|
|||
|
|
@ -22,6 +22,21 @@
|
|||
"sha512": "f49f202900e2753f154a06a48a40c57bdcd85e70bb265f80794f1b74f5924302d9109bb80c58dabf99944b15ed7031ba8156f4231fc6743e4008758f00be1840"
|
||||
},
|
||||
"path": "mods/globalpacks-fabric-1.21.1-21.0.6.jar"
|
||||
},
|
||||
{
|
||||
"downloads": [
|
||||
"https://cdn.modrinth.com/data/wOl8aLro/versions/BXT6xC81/item-components-1.1%2B1.21.jar"
|
||||
],
|
||||
"env": {
|
||||
"client": "required",
|
||||
"server": "required"
|
||||
},
|
||||
"fileSize": 48525,
|
||||
"hashes": {
|
||||
"sha1": "d8dc2f5bfc64cd0d0e6bdebb7a5f9db1c9d995d2",
|
||||
"sha512": "762ee17c4d8fc07c6fac552864550534eba3c89dea2c22cf2e79c7abec398570d9992074bd12b1521a89aa472e703d2d969a7b7b7a7d0c75e975becccd3e8e3a"
|
||||
},
|
||||
"path": "mods/item-components-1.1+1.21.jar"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"targets": [
|
||||
"minecraft:golden_boots"
|
||||
],
|
||||
"components": {
|
||||
"max_damage": 275,
|
||||
"attribute_modifiers": [{
|
||||
"type": "generic.armor",
|
||||
"slot": "feet",
|
||||
"id": "golden_boots",
|
||||
"amount": 2,
|
||||
"operation": "add_value"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"targets": [
|
||||
"minecraft:golden_chestplate"
|
||||
],
|
||||
"components": {
|
||||
"max_damage": 350,
|
||||
"attribute_modifiers": [{
|
||||
"type": "generic.armor",
|
||||
"slot": "chest",
|
||||
"id": "golden_chestplate",
|
||||
"amount": 7,
|
||||
"operation": "add_value"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"targets": [
|
||||
"minecraft:golden_helmet"
|
||||
],
|
||||
"components": {
|
||||
"max_damage": 245,
|
||||
"attribute_modifiers": [{
|
||||
"type": "generic.armor",
|
||||
"slot": "head",
|
||||
"id": "golden_helmet",
|
||||
"amount": 2,
|
||||
"operation": "add_value"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"targets": [
|
||||
"minecraft:golden_leggings"
|
||||
],
|
||||
"components": {
|
||||
"max_damage": 335,
|
||||
"attribute_modifiers": [{
|
||||
"type": "generic.armor",
|
||||
"slot": "legs",
|
||||
"id": "golden_leggings",
|
||||
"amount": 6,
|
||||
"operation": "add_value"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"targets": [
|
||||
"minecraft:golden_sword",
|
||||
"minecraft:golden_shovel",
|
||||
"minecraft:golden_pickaxe",
|
||||
"minecraft:golden_axe",
|
||||
"minecraft:golden_hoe"
|
||||
],
|
||||
"components": {
|
||||
"minecraft:max_damage": 510
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"targets": [
|
||||
"#minecraft:beds",
|
||||
"minecraft:potion",
|
||||
"minecraft:lingering_potion",
|
||||
"minecraft:splash_potion",
|
||||
"#c:foods/soup",
|
||||
"#minecraft:boats",
|
||||
"minecraft:minecart",
|
||||
"minecraft:chest_minecart",
|
||||
"minecraft:furnace_minecart",
|
||||
"minecraft:tnt_minecart",
|
||||
"minecraft:hopper_minecart",
|
||||
"minecraft:saddle",
|
||||
"minecraft:leather_horse_armor",
|
||||
"minecraft:iron_horse_armor",
|
||||
"minecraft:golden_horse_armor",
|
||||
"minecraft:diamond_horse_armor"
|
||||
],
|
||||
"components": {
|
||||
"minecraft:max_stack_size": 16
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"targets": [
|
||||
"minecraft:enchanted_book",
|
||||
"#c:music_discs",
|
||||
"minecraft:goat_horn",
|
||||
"minecraft:flower_banner_pattern",
|
||||
"minecraft:creeper_banner_pattern",
|
||||
"minecraft:skull_banner_pattern",
|
||||
"minecraft:mojang_banner_pattern",
|
||||
"minecraft:globe_banner_pattern",
|
||||
"minecraft:piglin_banner_pattern",
|
||||
"minecraft:flow_banner_pattern",
|
||||
"minecraft:guster_banner_pattern",
|
||||
"minecraft:armor_stand",
|
||||
"#minecraft:banners",
|
||||
"#minecraft:signs",
|
||||
"#minecraft:hanging_signs",
|
||||
"minecraft:written_book"
|
||||
],
|
||||
"components": {
|
||||
"minecraft:max_stack_size": 64
|
||||
}
|
||||
}
|
||||
|
|
@ -23,8 +23,7 @@
|
|||
{"blocks": "#minecraft:incorrect_for_gold_tool", "correct_for_drops": false},
|
||||
{"blocks": "#mineable/axe", "speed": 8.0, "correct_for_drops": true}
|
||||
]
|
||||
},
|
||||
"max_damage": 912
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue