Skip to content

Commit

Permalink
fix lots of recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Takakura-Anri committed Sep 21, 2021
1 parent 3caae69 commit 99ea235
Show file tree
Hide file tree
Showing 23 changed files with 315 additions and 21 deletions.
8 changes: 1 addition & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
buildscript {
repositories {
maven {
url = "https://maven.aliyun.com/repository/public"
}
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
Expand All @@ -19,15 +17,11 @@ buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.70"
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'co.riiid:gradle-github-plugin:0.4.2'
classpath 'gradle.plugin.com.matthewprenger:CurseGradle:1.4.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.70'
}
}

apply plugin: "net.minecraftforge.gradle.forge"
apply plugin: 'co.riiid.gradle'
apply plugin: "com.matthewprenger.cursegradle"
apply plugin: 'kotlin'

compileJava.options.encoding = "UTF-8"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G

# FoodCraft Reloaded Mod Properties
mod_id = foodcraftreloaded
mod_version = 1.0.4-EA
mod_version = 1.0.5
mod_group = com.projecturanus.foodcraft

# Minecraft & Forge
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,16 +407,16 @@ object RegisterHandler {
// Crops

// Staples
food(event.registry, "rice_porridge", 7) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "egg_custard", 8) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "mushroom_egg_soup", 7) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "mushroom_chicken_soup", 9) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "noodles", 7) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "crossing_bridge_noodles", 7) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "pasta", 7) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "preserved_egg_porridge", 7) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "changfen", 7) { creativeTab = FcTabStaple; STAPLES += this }
food(event.registry, "laba_porridge", 9) { creativeTab = FcTabStaple; STAPLES += this }
staple("rice_porridge", 7)
staple("egg_custard", 8)
staple("mushroom_egg_soup", 7)
staple("mushroom_chicken_soup", 9)
staple("noodles", 7)
staple("crossing_bridge_noodles", 7)
staple("pasta", 7, oreDictNames = *arrayOf("foodPasta"))
staple("preserved_egg_porridge", 7)
staple("changfen", 7)
staple("laba_porridge", 9)

staple("tomato_fried_egg_rice", 18)
staple("disanxian_rice", 18)
Expand Down Expand Up @@ -598,7 +598,7 @@ object RegisterHandler {
}

iceCream("carrot_ice_cream", Color(0xf4872f), "foodCarroticecream", "listAllicecream").apply {
realTranslationKey = "item.carrot.name"
realTranslationKey = "item.carrots.name"
hasSuffix = true
baseTranslationKey = "item.$MODID.ice_cream.name"
}
Expand All @@ -608,7 +608,7 @@ object RegisterHandler {
baseTranslationKey = "item.$MODID.ice_cream.name"
}
iceCream("melon_ice_cream", Color(0xe848b9), "foodMelonicecream", "listAllicecream").apply {
realTranslationKey = "tile.melon_block.name"
realTranslationKey = "tile.melon.name"
hasSuffix = true
baseTranslationKey = "item.$MODID.ice_cream.name"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodApplejuice"
}
],
"result": {
"item": "foodcraftreloaded:apple_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodBananajuice"
}
],
"result": {
"item": "foodcraftreloaded:banana_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"type": "foodcraftreloaded:beverage_making",
"ingredient": {
"type": "forge:ore_dict",
"ore": "cropCoconut"
},
"cool": false,
"fluidInput": {
"fluid": "milk",
"amount": 1000
},
"result": {
"item": "foodcraftreloaded:coconut_juice_milk"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type":"foodcraftreloaded:beverage_making","ingredient":{"item": "minecraft:melon"},"cool":true,"fluidInput":{"fluid":"water","amount":1000},"result":{"item":"foodcraftreloaded:melon_juice"}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"type": "foodcraftreloaded:beverage_making",
"ingredient": {
"type": "forge:ore_dict",
"ore": "cropSoybean"
},
"cool": false,
"fluidInput": {
"fluid": "milk",
"amount": 1000
},
"result": {
"item": "foodcraftreloaded:soybean_milk"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodCarrotjuice"
}
],
"result": {
"item": "foodcraftreloaded:carrot_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodCoconutjuice"
}
],
"result": {
"item": "foodcraftreloaded:coconut_ice_cream"
}
}

16 changes: 16 additions & 0 deletions src/main/resources/assets/foodcraftreloaded/recipes/dumpling.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "crafting_shapeless",
"ingredients": [
{
"type": "forge:ore_dict",
"ore": "foodDumplingmeat"
},
{
"type": "forge:ore_dict",
"ore": "foodDough"
}
],
"result": {
"item": "foodcraftreloaded:dumpling"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodLemonjuice"
}
],
"result": {
"item": "foodcraftreloaded:lemon_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodLitchijuice"
}
],
"result": {
"item": "foodcraftreloaded:litchi_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodMangojuice"
}
],
"result": {
"item": "foodcraftreloaded:mango_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodMelonjuice"
}
],
"result": {
"item": "foodcraftreloaded:melon_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodOrangejuice"
}
],
"result": {
"item": "foodcraftreloaded:orange_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodPapayajuice"
}
],
"result": {
"item": "foodcraftreloaded:papaya_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodPeachjuice"
}
],
"result": {
"item": "foodcraftreloaded:peach_ice_cream"
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
"type": "forge:ore_dict",
"ore": "cropPeanut"
},
{
"type": "forge:ore_dict",
"ore": "cropPeanut"
},
{
"type": "forge:ore_dict",
"ore": "listAllsugar"
}
],
"result": {
"item": "foodcraftreloaded:sticky_rice_dough"
"item": "foodcraftreloaded:peanut_tangyuan_stuffing"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodPearjuice"
}
],
"result": {
"item": "foodcraftreloaded:pear_ice_cream"
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "forge:ore_shapeless",
"ingredients": [
{
"item": "foodcraftreloaded:original_ice_cream"
},
{
"type": "forge:ore_dict",
"ore": "foodPersimmonjuice"
}
],
"result": {
"item": "foodcraftreloaded:persimmon_ice_cream"
}
}

Loading

0 comments on commit 99ea235

Please sign in to comment.