From 43491bb548a95fec09f296f17dc23c8f89770be5 Mon Sep 17 00:00:00 2001 From: SrUrsinhoMel Date: Tue, 24 Dec 2024 21:50:39 +0000 Subject: [PATCH] Create Testo.js --- Testo.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Testo.js diff --git a/Testo.js b/Testo.js new file mode 100644 index 0000000..107a7e9 --- /dev/null +++ b/Testo.js @@ -0,0 +1,13 @@ +addTool("red_dye", { + func: function(placed) { placed.h = 0; }, + onClick: function(x,y) { console.log(x,y) }, + shape:"bottle_smooth", + spin: false +}) + +addTool("orange_dye", { + func: function(placed) { placed.h = 10; }, + onClick: function(x,y) { console.log(x,y) }, + shape:"bottle_smooth", + spin: false +})