Skip to content

Commit

Permalink
3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gottsch committed Jul 12, 2023
1 parent a7dc8c9 commit e322793
Show file tree
Hide file tree
Showing 7 changed files with 169 additions and 2 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.1.1] - 2023-07-11

### Changed

- Added names for all mobs.
- Fixed polished granite gravestone recipes.

## [3.1.0] - 2023-06-25

### Added

- Added Crate and Moldy Crate mimics.

### Changed

- updated the topaz key texture to be more like the onyx key


## [3.0.0] - 2023-06-24

- Initial release for mc1.18.2 port.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"treasure2:gravestone1_polished_granite"
]
},
"criteria": {
"has_tool": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": [
"treasure2:treasure_tool"
]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "treasure2:gravestone1_polished_granite"
}
}
},
"requirements": [
[
"has_tool",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"treasure2:gravestone2_polished_granite"
]
},
"criteria": {
"has_tool": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": [
"treasure2:treasure_tool"
]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "treasure2:gravestone2_polished_granite"
}
}
},
"requirements": [
[
"has_tool",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"treasure2:gravestone3_polished_granite"
]
},
"criteria": {
"has_tool": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": [
"treasure2:treasure_tool"
]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "treasure2:gravestone3_polished_granite"
}
}
},
"requirements": [
[
"has_tool",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" t",
" ",
" x "
],
"key": {
"x": {
"item": "minecraft:polished_granite"
},
"t": {
"item": "treasure2:treasure_tool"
}
},
"result": {
"item": "treasure2:gravestone1_polished_granite"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" t",
" x ",
" x "
],
"key": {
"x": {
"item": "minecraft:polished_granite"
},
"t": {
"item": "treasure2:treasure_tool"
}
},
"result": {
"item": "treasure2:gravestone2_polished_granite"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" xt",
" x ",
" x "
],
"key": {
"x": {
"item": "minecraft:polished_granite"
},
"t": {
"item": "treasure2:treasure_tool"
}
},
"result": {
"item": "treasure2:gravestone3_polished_granite"
}
}

0 comments on commit e322793

Please sign in to comment.