Skip to content

Commit

Permalink
Merge pull request #9 from therealsuss/main
Browse files Browse the repository at this point in the history
rubber.js
  • Loading branch information
slweeb authored May 2, 2024
2 parents 6c5dfe1 + 0b264d8 commit e6343fc
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions rubber.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
//this is my first mod in any game ever lol

addIngredient("rubber ball", {
shape:"circle",
color:"#eb3489",
adj:"bouncy",
meltPoint:"50",
meltInto:"melted_rubber"
}
);
addIngredient("rubber eraser", {
shape:"rhomboid",
color:"#eb3489",
adj:"clean",
meltPoint:"50",
meltInto:"melted_rubber"
}
);
addIngredient("rubber", {
shape:"torus",
color:"#eb3489",
adj:"elastic",
meltPoint:"50",
meltInto:"melted_rubber"

}
);
addIngredient("melted_rubber", {
name:"Melted Rubber",
shape:"liquid",
behavior:1,
color:"#eb3489",
adj:"elastic",
hidden:true,
freezePoint:"-10",
freezeInto:"rubber"
}
);
addIngredient("rubber74n", {
shape:"R74n",
color:"#eb3489",
adj:"elastic",
meltPoint:"50",
meltInto:"melted_rubber"
}
);

0 comments on commit e6343fc

Please sign in to comment.