From 7151972b728cbc6e0ef21a1da87159b8b693f6bb Mon Sep 17 00:00:00 2001 From: katsyartsy Date: Sun, 16 Jun 2024 23:29:52 -0400 Subject: [PATCH 1/5] Create katsysfoodtruck.js random mods i made for absolutely no reason at all!!!!!!!!11 --- katsysfoodtruck.js | 99 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 katsysfoodtruck.js diff --git a/katsysfoodtruck.js b/katsysfoodtruck.js new file mode 100644 index 0000000..7acece9 --- /dev/null +++ b/katsysfoodtruck.js @@ -0,0 +1,99 @@ +// wowwowwow this is my first ever github mod +// hey guys?!?! +// are some of these edible? no. are they cookable? yes!!!11 + + +addIngredient("ice_pop", { + color: "#5351FF", + shape: "popsicle", + type: "other", + innerColor: "#1814FF", + stackShape: "rod_to_thick" + broken: "juice" + keywords: "popsicle,ice,cold,sweet" +}); + +addIngredient("vomit", { + color: "#608A5A", + shape: "splat", + type: "oil", + innerColor: "#1814FF", + stackShape: "liquid_splat" +}); + +addIngredient("bottle", { + color: "#22515F", + shape: "bottle_ridged", + type: "other", + innerColor: "##9BE8FF", + broken: "mircoplastics" + keywords: "bottle,water,cap,plastic,container" +}); + +addIngredient('mircoplastics", { + color: "#7E878A", + shape: "powder_rough", + type: "powder", +}); + + addIngredient("soap", { + color: "#DAF7FF", + shape: "rectangle", + type: "other", + stackShape: "rectangle_thin" + broken: "soap_powder" + keywords: "clean" + reactions: { + water: { set1:"bubbles" }, +}); + + addIngredient("soap_powder", { + color: "#DAF7FF", + shape: "powder", + type: "powder", + reactions: { + water: { set1:"bubbles" }, +}); + + addIngredient("bubbles", { + color: "#AFEDFF", + shape: "dots", + type: "gas", +}); + +addIngredient("gumdrop", { + color: "#ff0000", + shape: "flat_bottom", + type: "jelly", + broken: "gelatin" + keywords: "candy,gummy,sugar,sweet" +}); + +addIngredient("gummy_worm", { + color: "#ff0000", + shape: "worm", + type: "jelly", + broken: "gelatin" + keywords: "candy,gummy,sugar,sweet" + reactions: { + citric_acid: { set1:"sour_gummy_worm" }, +}); + +addIngredient("sour_gummy_worm", { + color: "#ff0000", + shape: "worm", + type: "jelly", + broken: "gelatin" + hidden: "true" + keywords: "candy,gummy,sugar,sweet" +}); + +addIngredient("paper", { + color: "#ffffff", + shape: "wavy_sheet_flat", + type: "other" + stackShape: "rectangle_thinnest" + broken: "powder" +}); + + From 82b5e729e4b9518f22bdf39320183c323b3caa1a Mon Sep 17 00:00:00 2001 From: katsyartsy Date: Sun, 16 Jun 2024 23:43:23 -0400 Subject: [PATCH 2/5] Update katsysfoodtruck.js added a cookbook (something a lot of you all need very badly) --- katsysfoodtruck.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/katsysfoodtruck.js b/katsysfoodtruck.js index 7acece9..ad9adb1 100644 --- a/katsysfoodtruck.js +++ b/katsysfoodtruck.js @@ -96,4 +96,20 @@ addIngredient("paper", { broken: "powder" }); +addIngredient("paper", { + color: "#ffffff", + shape: "wavy_sheet_flat", + type: "other" + stackShape: "rectangle_thinnest" + broken: "powder" +}); + +addIngredient("cookbook", { + color: "#21561F", + innerColor: "#4EB44A" + shape: "book", + type: "other" + stackShape: "rectangle_thin" + broken: "paper" +}); From 668bf48af12fa95e0d007f98e44969812c92f26b Mon Sep 17 00:00:00 2001 From: katsyartsy Date: Mon, 17 Jun 2024 14:16:59 -0400 Subject: [PATCH 3/5] Update katsysfoodtruck.js + cheesecake (yummy!) --- katsysfoodtruck.js | 70 +++++++++++++++++++++++++++++----------------- 1 file changed, 45 insertions(+), 25 deletions(-) diff --git a/katsysfoodtruck.js b/katsysfoodtruck.js index ad9adb1..dc286e3 100644 --- a/katsysfoodtruck.js +++ b/katsysfoodtruck.js @@ -7,10 +7,16 @@ addIngredient("ice_pop", { color: "#5351FF", shape: "popsicle", type: "other", + meltPoint: 20, + meltInto: "juice", innerColor: "#1814FF", stackShape: "rod_to_thick" broken: "juice" keywords: "popsicle,ice,cold,sweet" +}) + +function randomizeHue() { + ingredients.ice_pop.h = Math.floor(Math.random() * 360); }); addIngredient("vomit", { @@ -40,9 +46,9 @@ addIngredient('mircoplastics", { color: "#DAF7FF", shape: "rectangle", type: "other", - stackShape: "rectangle_thin" - broken: "soap_powder" - keywords: "clean" + stackShape: "rectangle_thin", + broken: "soap_powder", + keywords: "clean", reactions: { water: { set1:"bubbles" }, }); @@ -59,57 +65,71 @@ addIngredient('mircoplastics", { color: "#AFEDFF", shape: "dots", type: "gas", + transparency: "20" + hidden: "true" }); addIngredient("gumdrop", { color: "#ff0000", shape: "flat_bottom", type: "jelly", - broken: "gelatin" - keywords: "candy,gummy,sugar,sweet" + broken: "gelatin", + keywords: "candy,gummy,sugar,sweet", }); addIngredient("gummy_worm", { color: "#ff0000", shape: "worm", type: "jelly", - broken: "gelatin" - keywords: "candy,gummy,sugar,sweet" + meltPoint: 30, + meltInto: "melted_gummy", + broken: "gelatin", + keywords: "candy,gummy,sugar,sweet", reactions: { citric_acid: { set1:"sour_gummy_worm" }, -}); +}) +function randomizeHue() { + ingredients.gummy_worm.h = Math.floor(Math.random() * 360); +}) +function randomizeHue() { + ingredients.sour_gummy_worm.h = Math.floor(Math.random() * 360); +}); addIngredient("sour_gummy_worm", { color: "#ff0000", shape: "worm", type: "jelly", - broken: "gelatin" - hidden: "true" - keywords: "candy,gummy,sugar,sweet" + meltPoint: 30, + meltInto: "melted_gummy", + broken: "gelatin", + hidden: "true", + keywords: "candy,gummy,sugar,sweet", }); addIngredient("paper", { color: "#ffffff", shape: "wavy_sheet_flat", - type: "other" - stackShape: "rectangle_thinnest" - broken: "powder" -}); - -addIngredient("paper", { - color: "#ffffff", - shape: "wavy_sheet_flat", - type: "other" - stackShape: "rectangle_thinnest" - broken: "powder" + type: "other", + stackShape: "rectangle_thinnest", + broken: "powder", }); addIngredient("cookbook", { color: "#21561F", innerColor: "#4EB44A" shape: "book", - type: "other" - stackShape: "rectangle_thin" - broken: "paper" + type: "other", + stackShape: "rectangle_thin", + broken: "paper", +}); + +addIngredient("cheesecake", { + color: "#ffffff", + innerColor: "#FFEFC8" + meltPoint: 50, + meltInto: "cream", + shape: "wedge", + type: "cheese", + broken: "cream", }); From fa2d0c076e9defcb6d0742f3d1d78b344fc8fc5c Mon Sep 17 00:00:00 2001 From: katsyartsy Date: Mon, 17 Jun 2024 14:27:42 -0400 Subject: [PATCH 4/5] Update katsysfoodtruck.js switched transparency with opacity --- katsysfoodtruck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/katsysfoodtruck.js b/katsysfoodtruck.js index dc286e3..3f0fd87 100644 --- a/katsysfoodtruck.js +++ b/katsysfoodtruck.js @@ -65,7 +65,7 @@ addIngredient('mircoplastics", { color: "#AFEDFF", shape: "dots", type: "gas", - transparency: "20" + opacity: "20" hidden: "true" }); From 6cdf5be7333abd93baffe9509a8ec754f2a58252 Mon Sep 17 00:00:00 2001 From: katsyartsy Date: Tue, 18 Jun 2024 19:58:43 -0400 Subject: [PATCH 5/5] Update katsysfoodtruck.js added money, cha-ching! (next update I will add coins) --- katsysfoodtruck.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/katsysfoodtruck.js b/katsysfoodtruck.js index 3f0fd87..35c40ef 100644 --- a/katsysfoodtruck.js +++ b/katsysfoodtruck.js @@ -127,9 +127,15 @@ addIngredient("cheesecake", { color: "#ffffff", innerColor: "#FFEFC8" meltPoint: 50, - meltInto: "cream", + meltInto: "cream_cheese", shape: "wedge", type: "cheese", - broken: "cream", + broken: "cream_cheese", }); +addIngredient("money", { + color: "#237323", + innerColor: "#61D661" + shape: "sheet_wavy_flat", + type: "other", + broken: "powder",