From dc6f1137ed8588b393a2b358006f6c3358835b82 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Fri, 3 May 2024 07:51:54 +0100 Subject: [PATCH 1/3] Create crystals.js --- crystals.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 crystals.js diff --git a/crystals.js b/crystals.js new file mode 100644 index 0000000..3d0ce8b --- /dev/null +++ b/crystals.js @@ -0,0 +1,8 @@ +addIngredient("diamond", { + shape:"rock", + color:["#34c9e0","#34aae0","#32b8c2"], + glow:"#32b8c2", + hidden:true, + keywords:"rock,crystal,diamond,diamonds", + } +); From af84fa3a544ba38eb99e294197b3c49f94748e98 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Fri, 3 May 2024 07:52:53 +0100 Subject: [PATCH 2/3] Update crystals.js --- crystals.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crystals.js b/crystals.js index 3d0ce8b..9636668 100644 --- a/crystals.js +++ b/crystals.js @@ -6,3 +6,5 @@ addIngredient("diamond", { keywords:"rock,crystal,diamond,diamonds", } ); + +addRecipe("rock+diamond","rocked diamonds!"); From 0696108e8d56e39463941a09011b791e4958c5e6 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Sun, 12 May 2024 10:59:28 +0100 Subject: [PATCH 3/3] Update crystals.js --- crystals.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/crystals.js b/crystals.js index 9636668..04bcc4e 100644 --- a/crystals.js +++ b/crystals.js @@ -2,9 +2,20 @@ addIngredient("diamond", { shape:"rock", color:["#34c9e0","#34aae0","#32b8c2"], glow:"#32b8c2", - hidden:true, + hidden:false, + meltPoint: 1000, keywords:"rock,crystal,diamond,diamonds", } ); addRecipe("rock+diamond","rocked diamonds!"); + +addIngredient("emerald", { + shape:"rock", + color:["#52fc03","#22e022","#86e815"], + glow:"#8af542", + hidden:false, + meltPoint: 1000, + keywords:"rock,crystal,emerald,stone,st,emer", + } +);