This commit is contained in:
Suss 2025-07-23 10:43:16 +10:00 committed by GitHub
parent cc66e8f68f
commit fcc5cc35ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 32 additions and 0 deletions

View File

@ -6,3 +6,35 @@ elements.water.reactions.petal = {
}
}
}
elements.salt_water.reactions.petal = {
func: function(pixel1, pixel2) {
if (pixel1.temp > 64) {
deletePixel(pixel1.x, pixel1.y);
pixel2.element = "dye";
}
}
}
elements.sugar_water.reactions.petal = {
func: function(pixel1, pixel2) {
if (pixel1.temp > 64) {
deletePixel(pixel1.x, pixel1.y);
pixel2.element = "dye";
}
}
}
elements.seltzer.reactions.petal = {
func: function(pixel1, pixel2) {
if (pixel1.temp > 64) {
deletePixel(pixel1.x, pixel1.y);
pixel2.element = "dye";
}
}
}
elements.pool_water.reactions.petal = {
func: function(pixel1, pixel2) {
if (pixel1.temp > 64) {
deletePixel(pixel1.x, pixel1.y);
pixel2.element = "dye";
}
}
}