-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated version in gradle.properties - Updated README - Updated CHANGELOG - Updated .github issue tracker - Fixed cohesion among compatibility recipes - Added Saving Private Swine advancement
- Loading branch information
Showing
30 changed files
with
336 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,10 @@ | |
- "1.18.2" | ||
1.19.2: | ||
- "1.19.2" | ||
1.20: | ||
- "1.20" | ||
1.20.1: | ||
- "1.20.1" | ||
forge: | ||
- "Forge" | ||
fabric: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions
42
src/main/resources/data/bygonenether/advancements/rescue_piglin_prisoner.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"parent": "bygonenether:piglin_manor", | ||
"display": { | ||
"icon": { | ||
"item": "bygonenether:netherite_bell" | ||
}, | ||
"title": { | ||
"translate": "advancements.bygonenether.rescue_piglin_prisoner.title" | ||
}, | ||
"description": { | ||
"translate": "advancements.bygonenether.rescue_piglin_prisoner.description" | ||
}, | ||
"frame": "challenge", | ||
"show_toast": true, | ||
"announce_to_chat": true, | ||
"hidden": false | ||
}, | ||
"rewards": { | ||
"experience": 500 | ||
}, | ||
"criteria": { | ||
"rescue_prisoner": { | ||
"trigger": "minecraft:summoned_entity", | ||
"conditions": { | ||
"entity": [ | ||
{ | ||
"condition": "minecraft:entity_properties", | ||
"entity": "this", | ||
"predicate": { | ||
"type": "bygonenether:piglin_prisoner" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"rescue_prisoner" | ||
] | ||
] | ||
} |
19 changes: 12 additions & 7 deletions
19
...sources/data/bygonenether/recipes/crafting/cracked_withered_blackstone_vertical_slab.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...data/bygonenether/recipes/crafting/cracked_withered_blackstone_vertical_slab_convert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"#", | ||
"#", | ||
"#" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "bygonenether:cracked_withered_blackstone_slab" | ||
} | ||
}, | ||
"result": { | ||
"item": "bygonenether:cracked_withered_blackstone_vertical_slab", | ||
"count": 3 | ||
}, | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "quark" | ||
} | ||
] | ||
} |
19 changes: 7 additions & 12 deletions
19
.../data/bygonenether/recipes/crafting/cracked_withered_blackstone_vertical_slab_revert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 12 additions & 7 deletions
19
src/main/resources/data/bygonenether/recipes/crafting/warped_nether_brick_vertical_slab.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...sources/data/bygonenether/recipes/crafting/warped_nether_brick_vertical_slab_convert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"#", | ||
"#", | ||
"#" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "bygonenether:warped_nether_brick_slab" | ||
} | ||
}, | ||
"result": { | ||
"item": "bygonenether:warped_nether_brick_vertical_slab", | ||
"count": 3 | ||
}, | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "quark" | ||
} | ||
] | ||
} |
19 changes: 7 additions & 12 deletions
19
...esources/data/bygonenether/recipes/crafting/warped_nether_brick_vertical_slab_revert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...sources/data/bygonenether/recipes/crafting/withered_blackstone_vertical_slab_convert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"#", | ||
"#", | ||
"#" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "bygonenether:withered_blackstone_slab" | ||
} | ||
}, | ||
"result": { | ||
"item": "bygonenether:withered_blackstone_vertical_slab", | ||
"count": 3 | ||
}, | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "quark" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/resources/data/bygonenether/recipes/crushing/cobbled_blackstone.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"type": "create:crushing", | ||
"ingredients": [ | ||
{ | ||
"item": "bygonenether:cobbled_blackstone" | ||
} | ||
], | ||
"processingTime": 250, | ||
"results": [ | ||
{ | ||
"count": 1, | ||
"item": "minecraft:gravel" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "create" | ||
} | ||
] | ||
} |
Oops, something went wrong.