Compare commits
4 commits
06506fe498
...
a04341a9f8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a04341a9f8 | ||
|
|
36e34e1655 | ||
|
|
66ee19615a | ||
|
|
e5653548c6 |
|
|
@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
Initial release
|
Initial 1.21.1 release
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Netherite upgrades no longer need a smithing template
|
||||||
|
- Backported bundle
|
||||||
|
- Added [Trees Make Sound](https://modrinth.com/mod/trees-make-sound)
|
||||||
|
|
||||||
[unreleased]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/src/branch/1.21.1
|
[unreleased]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/src/branch/1.21.1
|
||||||
[2.0.1]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/2.0.0...2.0.1
|
[2.0.1]: https://patience.nearmisses.xyz/SergeantAcoustic/tinkers_tinkering/compare/2.0.0...2.0.1
|
||||||
|
|
|
||||||
9
TODO.md
9
TODO.md
|
|
@ -11,27 +11,22 @@ Start by creating a list of needed mods
|
||||||
## Datapack
|
## Datapack
|
||||||
|
|
||||||
* Worldgen
|
* Worldgen
|
||||||
|
* Ores
|
||||||
* endercon
|
* endercon
|
||||||
* maybe work out everything initially changed
|
* maybe work out everything initially changed
|
||||||
* geophilic
|
* geophilic
|
||||||
* disable rocks
|
* disable rocks
|
||||||
* Recipes
|
* Recipes
|
||||||
* Antique Atlas
|
* Antique Atlas
|
||||||
* Convenience (e.g. coal/redstone to dye, shapeless shulker box)
|
|
||||||
* Minecraft
|
|
||||||
* Copper armour
|
* Copper armour
|
||||||
* Advancements
|
* Advancements
|
||||||
* Wooden paxel recipe unlock when getting wood
|
* Wooden paxel recipe unlock when getting wood
|
||||||
* Others
|
* Others
|
||||||
* Loot tables
|
|
||||||
* Tags
|
* Tags
|
||||||
* Villagers (https://modrinth.com/mod/data-trades)
|
* Villagers (https://modrinth.com/mod/data-trades)
|
||||||
* Worldgen
|
|
||||||
* Ores
|
|
||||||
|
|
||||||
|
|
||||||
## Assets
|
## Assets
|
||||||
|
|
||||||
* Lang files
|
|
||||||
* Spear backport
|
* Spear backport
|
||||||
* Any other mods
|
* For any other mods
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"advancements.end.obtain_ancient_debris.title": "Insomniac's Fortune",
|
||||||
"advancements.husbandry.netherite_hoe.description": "Use a Dendrite Ingot to upgrade a Hoe, and then reevaluate your life choices",
|
"advancements.husbandry.netherite_hoe.description": "Use a Dendrite Ingot to upgrade a Hoe, and then reevaluate your life choices",
|
||||||
"advancements.husbandry.netherite_hoe.title": "Serious Dedication",
|
"advancements.husbandry.netherite_hoe.title": "Serious Dedication",
|
||||||
"advancements.nether.netherite_armor.description": "Get a full suit of Dendrite armor",
|
"advancements.nether.netherite_armor.description": "Get a full suit of Dendrite armor",
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,11 @@
|
||||||
"category": "equipment",
|
"category": "equipment",
|
||||||
"key": {
|
"key": {
|
||||||
"#": {"item": "minecraft:stick"},
|
"#": {"item": "minecraft:stick"},
|
||||||
"X": {"item": "minecraft:diamond"}
|
"X": {"item": "minecraft:diamond"},
|
||||||
|
"Z": {"item": "minecraft:netherite_scrap"}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"XXX",
|
"XZX",
|
||||||
"X#X",
|
"X#X",
|
||||||
" # "
|
" # "
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,11 @@
|
||||||
"category": "equipment",
|
"category": "equipment",
|
||||||
"key": {
|
"key": {
|
||||||
"#": {"item": "minecraft:stick"},
|
"#": {"item": "minecraft:stick"},
|
||||||
"X": {"item": "minecraft:gold_ingot"}
|
"X": {"item": "minecraft:gold_ingot"},
|
||||||
|
"Z": {"item": "minecraft:diamond"}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"XXX",
|
"XZX",
|
||||||
"X#X",
|
"X#X",
|
||||||
" # "
|
" # "
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,11 @@
|
||||||
"category": "equipment",
|
"category": "equipment",
|
||||||
"key": {
|
"key": {
|
||||||
"#": {"item": "minecraft:stick"},
|
"#": {"item": "minecraft:stick"},
|
||||||
"X": {"item": "minecraft:iron_ingot"}
|
"X": {"item": "minecraft:iron_ingot"},
|
||||||
|
"Z": {"item": "minecraft:gold_ingot"}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"XXX",
|
"XZX",
|
||||||
"X#X",
|
"X#X",
|
||||||
" # "
|
" # "
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
{
|
|
||||||
"type": "minecraft:crafting_shaped",
|
|
||||||
"category": "equipment",
|
|
||||||
"key": {
|
|
||||||
"#": {"item": "minecraft:stick"},
|
|
||||||
"X": {"item": "minecraft:netherite_ingot"}
|
|
||||||
},
|
|
||||||
"pattern": [
|
|
||||||
"XXX",
|
|
||||||
"X#X",
|
|
||||||
" # "
|
|
||||||
],
|
|
||||||
"result": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:netherite_shovel",
|
|
||||||
"components": {
|
|
||||||
"tool": {
|
|
||||||
"rules": [
|
|
||||||
{"blocks": "#minecraft:incorrect_for_netherite_tool", "correct_for_drops": false},
|
|
||||||
{"blocks": "#mineable/pickaxe", "speed": 9.0, "correct_for_drops": true},
|
|
||||||
{"blocks": "#mineable/axe", "speed": 9.0, "correct_for_drops": true},
|
|
||||||
{"blocks": "#mineable/shovel", "speed": 9.0, "correct_for_drops": true},
|
|
||||||
{"blocks": "#mineable/hoe", "speed": 9.0, "correct_for_drops": true}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"custom_name": "{'text':'Dendrite Paxel','italic':false}",
|
|
||||||
"custom_model_data": 74831
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -3,10 +3,11 @@
|
||||||
"category": "equipment",
|
"category": "equipment",
|
||||||
"key": {
|
"key": {
|
||||||
"#": {"item": "minecraft:stick"},
|
"#": {"item": "minecraft:stick"},
|
||||||
"X": {"tag": "minecraft:stone_tool_materials"}
|
"X": {"tag": "minecraft:stone_tool_materials"},
|
||||||
|
"Z": {"item": "minecraft:iron_ingot"}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"XXX",
|
"XZX",
|
||||||
"X#X",
|
"X#X",
|
||||||
" # "
|
" # "
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:end/root",
|
||||||
|
"criteria": {
|
||||||
|
"ancient_debris": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:ancient_debris",
|
||||||
|
"minecraft:netherite_scrap"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.nether.obtain_ancient_debris.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:ancient_debris"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.end.obtain_ancient_debris.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"ancient_debris"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
"pack": {
|
"pack": {
|
||||||
"description":"Rebalances Minecraft's recipes and drop tables to cause a more meaningful progression." ,
|
"description":"Modpack assets",
|
||||||
"pack_format": 15
|
"pack_format": 48,
|
||||||
|
"supported_formats": [34, 48]
|
||||||
},
|
},
|
||||||
"filter": {
|
"filter": {
|
||||||
"block": [
|
"block": [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue