From b98c3bc1353309ebae1372d4a2ea56ed1340750c Mon Sep 17 00:00:00 2001 From: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> Date: Sun, 20 Jul 2025 16:36:45 +0500 Subject: [PATCH] =?UTF-8?q?[=F0=9F=AA=B6]:=20Give=20Aged=20Corn=20Whiskey?= =?UTF-8?q?=20and=20Aged=20Rye=20Whiskey=20status=20effects=20(#1390)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Export ".json"s from TFCagedalcohol mod to TFC Exporting effects ".json"s Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Create tfc There is tfc/tfc/*files* Need additional file to access them Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Delete kubejs/data/tfc/drinkables directory not there sh* Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Delete kubejs/data/tfc/tfc Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Create tfc Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Delete kubejs/data/tfc/tfc Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Create tfc Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Delete kubejs/data/tfc/tfc Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Create ihategithub Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Exporting aged alcohol from TFCagedalcohol data Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Create alcohols.json Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> * Delete kubejs/data/tfc/tfc/ihategithub Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> --------- Signed-off-by: Eve <93487878+EveProgrammingsockson@users.noreply.github.com> --- kubejs/data/tfc/tags/fluids/alcohols.json | 21 +++++++++++++++++++ kubejs/data/tfc/tfc/drinkables/aged_beer.json | 13 ++++++++++++ .../data/tfc/tfc/drinkables/aged_cider.json | 13 ++++++++++++ .../tfc/tfc/drinkables/aged_corn_whiskey.json | 13 ++++++++++++ kubejs/data/tfc/tfc/drinkables/aged_rum.json | 13 ++++++++++++ .../tfc/tfc/drinkables/aged_rye_whiskey.json | 13 ++++++++++++ kubejs/data/tfc/tfc/drinkables/aged_sake.json | 13 ++++++++++++ .../data/tfc/tfc/drinkables/aged_vodka.json | 13 ++++++++++++ .../data/tfc/tfc/drinkables/aged_whiskey.json | 13 ++++++++++++ 9 files changed, 125 insertions(+) create mode 100644 kubejs/data/tfc/tags/fluids/alcohols.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_beer.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_cider.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_corn_whiskey.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_rum.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_rye_whiskey.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_sake.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_vodka.json create mode 100644 kubejs/data/tfc/tfc/drinkables/aged_whiskey.json diff --git a/kubejs/data/tfc/tags/fluids/alcohols.json b/kubejs/data/tfc/tags/fluids/alcohols.json new file mode 100644 index 000000000..76c6115ca --- /dev/null +++ b/kubejs/data/tfc/tags/fluids/alcohols.json @@ -0,0 +1,21 @@ +{ + "replace":true, + "values":[ + "tfc:beer", + "tfc:cider", + "tfc:rum", + "tfc:sake", + "tfc:vodka", + "tfc:whiskey", + "tfc:corn_whiskey", + "tfc:rye_whiskey", + "tfcagedalcohol:aged_beer", + "tfcagedalcohol:aged_cider", + "tfcagedalcohol:aged_rum", + "tfcagedalcohol:aged_sake", + "tfcagedalcohol:aged_vodka", + "tfcagedalcohol:aged_whiskey", + "tfcagedalcohol:aged_corn_whiskey", + "tfcagedalcohol:aged_rye_whiskey" + ] +} diff --git a/kubejs/data/tfc/tfc/drinkables/aged_beer.json b/kubejs/data/tfc/tfc/drinkables/aged_beer.json new file mode 100644 index 000000000..672675975 --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_beer.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_beer", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:absorption", + "duration": 24000, + "amplifier": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_cider.json b/kubejs/data/tfc/tfc/drinkables/aged_cider.json new file mode 100644 index 000000000..23fd5bd5a --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_cider.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_cider", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:speed", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_corn_whiskey.json b/kubejs/data/tfc/tfc/drinkables/aged_corn_whiskey.json new file mode 100644 index 000000000..fb9caffac --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_corn_whiskey.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_corn_whiskey", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:haste", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_rum.json b/kubejs/data/tfc/tfc/drinkables/aged_rum.json new file mode 100644 index 000000000..5653f8db1 --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_rum.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_rum", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:speed", + "duration": 3200, + "amplifier": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_rye_whiskey.json b/kubejs/data/tfc/tfc/drinkables/aged_rye_whiskey.json new file mode 100644 index 000000000..bbf9420fc --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_rye_whiskey.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_rye_whiskey", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:haste", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_sake.json b/kubejs/data/tfc/tfc/drinkables/aged_sake.json new file mode 100644 index 000000000..049b397bc --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_sake.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_sake", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:resistance", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_vodka.json b/kubejs/data/tfc/tfc/drinkables/aged_vodka.json new file mode 100644 index 000000000..ec4095c4a --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_vodka.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_vodka", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:resistance", + "duration": 3200, + "amplifier": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_whiskey.json b/kubejs/data/tfc/tfc/drinkables/aged_whiskey.json new file mode 100644 index 000000000..b865f4376 --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/aged_whiskey.json @@ -0,0 +1,13 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "ingredient": "tfcagedalcohol:aged_whiskey", + "thirst": 15, + "intoxication": 2000, + "effects": [ + { + "type": "minecraft:haste", + "duration": 3200, + "amplifier": 1 + } + ] +} \ No newline at end of file