Skip to content

Commit 8a7d942

Browse files
committed
Update ProjectE Recipes
1 parent 6e5f116 commit 8a7d942

7 files changed

Lines changed: 73 additions & 4 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mod_name=Extended Recipe
3434
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
3535
mod_license=MIT
3636
# The mod version. See https://semver.org/
37-
mod_version=1.0.0-alpha.3
37+
mod_version=1.0.0-beta.1
3838
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
3939
# This should match the base package used for the mod sources.
4040
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

src/main/resources/META-INF/neoforge.mods.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ license="MIT"
2323
modId="extendedrecipe" #mandatory
2424

2525
# The version number of the mod
26-
version="1.0.0-alpha.3" #mandatory
26+
version="1.0.0-beta.1" #mandatory
2727

2828
# A display name for the mod
2929
displayName="Extended Recipe" #mandatory
@@ -44,7 +44,7 @@ displayName="Extended Recipe" #mandatory
4444
authors="Hamburger0abcde" #optional
4545

4646
# The description text for the mod (multi line!) (#mandatory)
47-
description='''Some New Recipes'''
47+
description='''Some Utility Recipes'''
4848

4949
# The [[mixins]] block allows you to declare your mixin config to FML so that it gets loaded.
5050
#[[mixins]]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"ingredients": [
4+
{
5+
"item": "projecte:philosophers_stone"
6+
},
7+
{
8+
"item": "projecte:mobius_fuel_block"
9+
},
10+
{
11+
"item": "projecte:mobius_fuel_block"
12+
},
13+
{
14+
"item": "projecte:mobius_fuel_block"
15+
},
16+
{
17+
"item": "projecte:mobius_fuel_block"
18+
}
19+
],
20+
"result": {
21+
"id": "projecte:aeternalis_fuel_block",
22+
"count": 1
23+
}
24+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"ingredients": [
4+
{
5+
"item": "projecte:philosophers_stone"
6+
},
7+
{
8+
"item": "projecte:alchemical_coal_block"
9+
}
10+
],
11+
"result": {
12+
"id": "minecraft:coal_block",
13+
"count": 4
14+
}
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"ingredients": [
4+
{
5+
"item": "projecte:philosophers_stone"
6+
},
7+
{
8+
"item": "projecte:mobius_fuel_block"
9+
}
10+
],
11+
"result": {
12+
"id": "projecte:alchemical_coal_block",
13+
"count": 4
14+
}
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"type": "minecraft:crafting_shapeless",
3+
"ingredients": [
4+
{
5+
"item": "projecte:philosophers_stone"
6+
},
7+
{
8+
"item": "projecte:aeternalis_fuel_block"
9+
}
10+
],
11+
"result": {
12+
"id": "projecte:mobius_fuel_block",
13+
"count": 4
14+
}
15+
}

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schemaVersion": 1,
33
"id": "extendedrecipe",
4-
"version": "1.0.0-alpha.3",
4+
"version": "1.0.0-beta.1",
55
"name": "Extended Recipe",
66
"description": "Extended Recipes.",
77
"authors": [

0 commit comments

Comments
 (0)