Skip to content

Commit

Permalink
v2.0.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
TheClassic36 committed Nov 13, 2024
1 parent 19cb24e commit a00cc9d
Show file tree
Hide file tree
Showing 10 changed files with 207 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ body:
label: Version
description: Which version of Silly Eatables are you using? If it's not listed, please update!
options:
- v2.0.0-beta2
- v2.0.0-beta3
- v1.3.1+mod
- v1.3.1
- v1.2.0+mod
Expand All @@ -38,7 +38,7 @@ body:
attributes:
label: Mod Loader Version
description: If running as a mod, which mod loader & Fabric API version are you using?
placeholder: "Example: Fabric Loader v0.16.9 with Fabric API v0.107.0 for Minecraft 1.21.3"
placeholder: "Example: Fabric Loader v0.16.9 with Fabric API v0.108.0 for Minecraft 1.21.3"
validations:
required: false
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Foods/recipes in this data pack/mod can be found [here on the wiki](https://gith
| Minecraft Version | Silly Eatables Version |
| :--: | :--: |
| 1.21.4 (24w44a - 24w45a) | [v2.0.0-beta2](https://github.com/Classic36-Media/Silly-Eatables/releases/tag/v2.0.0-beta2) |
| 1.21.4 (24w44a - 24w46a) | [v2.0.0-beta3](https://github.com/Classic36-Media/Silly-Eatables/releases/tag/v2.0.0-beta3) |
| 1.21.2 - 1.21.3 | [v1.3.1](https://github.com/Classic36-Media/Silly-Eatables/releases/tag/v1.3.1) |
| 1.21 - 1.21.1 | [v1.2.0](https://github.com/Classic36-Media/Silly-Eatables/releases/tag/v1.2.0) |
| 1.20.5 - 1.20.6 | [v1.0.2](https://github.com/Classic36-Media/Silly-Eatables/releases/tag/v1.0.2) |
Expand Down
34 changes: 34 additions & 0 deletions data/minecraft/advancement/recipes/misc/butter_recipes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:stick_of_butter",
"minecraft:butter_block",
"minecraft:butter_nugget"
]
},
"criteria": {
"has_milk_bucket": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "minecraft:milk_bucket"
}
]
}
},
"has_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:stick_of_butter"
}
}
},
"requirements": [
[
"has_milk_bucket",
"has_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:enchanted_golden_carrot"
]
},
"criteria": {
"has_golden_carrot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "minecraft:golden_carrot"
}
]
}
},
"has_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:enchanted_golden_carrot"
}
}
},
"requirements": [
[
"has_golden_carrot",
"has_recipe"
]
]
}
25 changes: 25 additions & 0 deletions data/minecraft/recipe/butter_block.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"minecraft:gold_block",
"minecraft:milk_bucket"
],
"result": {
"id": "minecraft:gold_block",
"count": 1,
"components": {
"minecraft:food": {
"nutrition": 4,
"saturation": 2.0,
"can_always_eat": false
},
"minecraft:consumable": {
"consume_seconds": 3.2,
"animation": "eat",
"sound": "entity.generic.eat",
"has_consume_particles": true
},
"minecraft:item_name": "\"Butter Block\""
}
}
}
25 changes: 25 additions & 0 deletions data/minecraft/recipe/butter_nugget.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"minecraft:gold_nugget",
"minecraft:milk_bucket"
],
"result": {
"id": "minecraft:gold_nugget",
"count": 1,
"components": {
"minecraft:food": {
"nutrition": 0.5,
"saturation": 0.0,
"can_always_eat": false
},
"minecraft:consumable": {
"consume_seconds": 0.5,
"animation": "eat",
"sound": "entity.generic.eat",
"has_consume_particles": true
},
"minecraft:item_name": "\"Butter Nugget\""
}
}
}
59 changes: 59 additions & 0 deletions data/minecraft/recipe/enchanted_golden_carrot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"BBB",
"BGB",
"BBB"
],
"key": {
"B": "minecraft:gold_block",
"G": "minecraft:golden_carrot"
},
"result": {
"id": "minecraft:golden_carrot",
"count": 1,
"components": {
"minecraft:food": {
"nutrition": 6,
"saturation": 14.4,
"can_always_eat": false
},
"minecraft:consumable": {
"consume_seconds": 1.6,
"animation": "eat",
"sound": "entity.generic.eat",
"has_consume_particles": true,
"on_consume_effects": [
{
"type": "minecraft:apply_effects",
"effects": [
{
"id": "minecraft:absorption",
"amplifier": 1,
"duration": 1200
},
{
"id": "minecraft:regeneration",
"amplifier": 1,
"duration": 800
},
{
"id": "minecraft:fire_resistance",
"amplifier": 0,
"duration": 2400
},
{
"id": "minecraft:resistance",
"amplifier": 0,
"duration": 2400
}
]
}
]
},
"minecraft:enchantment_glint_override": true,
"minecraft:rarity": "rare",
"minecraft:item_name": "\"Enchanted Golden Carrot\""
}
}
}
25 changes: 25 additions & 0 deletions data/minecraft/recipe/stick_of_butter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"minecraft:gold_ingot",
"minecraft:milk_bucket"
],
"result": {
"id": "minecraft:gold_ingot",
"count": 1,
"components": {
"minecraft:food": {
"nutrition": 2,
"saturation": 0.0,
"can_always_eat": false
},
"minecraft:consumable": {
"consume_seconds": 1.1,
"animation": "eat",
"sound": "entity.generic.eat",
"has_consume_particles": true
},
"minecraft:item_name": "\"Stocl of Butter\""
}
}
}
4 changes: 2 additions & 2 deletions data/minecraft/recipe/strange_potato.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"effects": [
{
"id": "minecraft:nausea",
"amplifier": 4,
"duration": 140
"amplifier": 2,
"duration": 280
}
]
},
Expand Down
4 changes: 2 additions & 2 deletions pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"pack":{
"pack_format": 58,
"supported_formats": {"min_inclusive": 58, "max_inclusive": 59},
"description": "§eSilly Eatables\n§7v2.0.0-b2 §8/ §f1.21.4 Snapshots"
"supported_formats": {"min_inclusive": 58, "max_inclusive": 60},
"description": "§eSilly Eatables\n§7v2.0.0-b3 §8/ §f1.21.4 Snapshots"
}
}

0 comments on commit a00cc9d

Please sign in to comment.