2024-01-15 17:49:36 -05:00
elements . cooked _rice = {
viscosity : 1000 ,
tempMin : 20 ,
stateMin : "rice" ,
2024-01-08 13:41:50 -05:00
tempHigh : 500 ,
2024-02-15 17:50:26 -05:00
stateHigh : "charcoal" ,
2024-01-05 14:44:57 -05:00
density : 699 ,
2024-01-15 17:49:36 -05:00
color : "#c2b6b6" ,
behavior : behaviors . LIQUID ,
2024-01-05 10:59:04 -05:00
category : "food" ,
state : "liquid" ,
reactions : {
2024-01-05 14:44:57 -05:00
"water" : { elem1 : null , elem2 : "dirty_water" }
2024-01-05 10:59:04 -05:00
}
} ;
2024-01-05 14:44:57 -05:00
elements . rice = {
2024-01-15 17:49:36 -05:00
breakInto : "flour" ,
2024-01-05 18:51:00 -05:00
isFood : true ,
2024-01-05 14:44:57 -05:00
density : 696 ,
tempHigh : 232 ,
2024-01-15 17:49:36 -05:00
stateHigh : "cooked_rice" ,
color : "#c8c8c8" ,
2024-02-15 17:50:26 -05:00
behavior : behaviors . POWDER ,
2024-01-05 10:59:04 -05:00
category : "food" ,
state : "liquid" ,
2024-01-05 14:44:57 -05:00
} ;
elements . moth = {
2024-01-05 18:51:00 -05:00
tempHigh : 500 ,
2024-02-15 17:50:26 -05:00
stateHigh : "dead_bug" ,
breakInto : "dead_bug" ,
2024-01-05 14:44:57 -05:00
color : "#57381a" ,
2024-01-09 20:14:16 -05:00
behavior : behaviors . FLY ,
2024-01-05 14:44:57 -05:00
category : "life" ,
2024-02-15 17:50:26 -05:00
state : "liquid" ,
2024-01-05 14:44:57 -05:00
} ;
2024-01-06 10:50:43 -05:00
elements . cotton _candy = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-02-15 17:50:26 -05:00
tempHigh : 200 ,
stateHigh : "sugar" ,
2024-01-05 14:44:57 -05:00
density : 1000 ,
2024-02-15 17:50:26 -05:00
color : [ "#b6c7e3" , "#c54b4b" , "#e7769c" ] ,
singleColor : true ,
2024-01-05 14:44:57 -05:00
behavior : behaviors . POWDER ,
2024-01-06 10:50:43 -05:00
category : "food" ,
state : "liquid" ,
reactions : {
2024-02-15 17:50:26 -05:00
"water" : { elem1 : "sugar" , elem2 : "water" } ,
"sugar_water" : { elem1 : "sugar" , elem2 : "sugar_water" , chance : 10 }
2024-01-06 10:50:43 -05:00
}
2024-01-05 14:44:57 -05:00
} ;
elements . mc _donalds = {
2024-01-05 18:51:00 -05:00
tempHigh : 6969 ,
stateHigh : "void" ,
2024-01-05 14:44:57 -05:00
density : 69 ,
color : "#ff0000" ,
behavior : behaviors . STURDYPOWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-05 14:44:57 -05:00
state : "solid" ,
} ;
elements . maple _syrup = {
2024-01-09 14:38:53 -05:00
viscosity : 10000 ,
2024-01-05 18:51:00 -05:00
isFood : true ,
tempHigh : 500 ,
stateHigh : "steam" ,
2024-01-05 14:44:57 -05:00
color : "#9c6000" ,
2024-01-25 21:19:29 -05:00
behavior : behaviors . CRAWLER ,
2024-01-05 14:44:57 -05:00
category : "liquids" ,
state : "liquid" ,
} ;
elements . boiled _egg = {
2024-01-05 18:51:00 -05:00
isFood : true ,
2024-01-05 14:44:57 -05:00
density : 700 ,
breakInto : "yolk" ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#fff9d1" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . dark _oak = {
breakInto : "dark_oak_wood" ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#302216" ,
behavior : behaviors . WALL ,
category : "solids" ,
state : "solid" ,
2024-01-14 19:20:43 -05:00
burn : 5 ,
burnTime : 300 ,
2024-01-05 14:44:57 -05:00
} ;
elements . dark _oak _wood = {
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#573e28" ,
behavior : behaviors . SUPPORT ,
category : "land" ,
state : "solid" ,
2024-01-14 19:20:43 -05:00
burn : 5 ,
burnTime : 300 ,
2024-01-05 14:44:57 -05:00
} ;
elements . avocado = {
2024-01-05 18:51:00 -05:00
isFood : true ,
tempHigh : 500 ,
2024-01-05 14:44:57 -05:00
breakInto : "guacamole" ,
stateHigh : "ash" ,
color : "#254a22" ,
behavior : behaviors . SUPPORTPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . guacamole = {
2024-01-05 18:51:00 -05:00
isFood : true ,
tempHigh : 500 ,
2024-01-05 14:44:57 -05:00
stateHigh : "ash" ,
color : "#a2e09d" ,
behavior : behaviors . POWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . watermelon = {
2024-01-05 18:51:00 -05:00
isFood : true ,
tempHigh : 500 ,
2024-01-05 14:44:57 -05:00
stateHigh : "ash" ,
2024-01-06 10:50:43 -05:00
breakInto : "watermelon_flesh" ,
2024-01-05 14:44:57 -05:00
color : "#40993f" ,
behavior : behaviors . SUPPORT ,
category : "food" ,
state : "solid" ,
} ;
2024-01-06 21:46:30 -05:00
elements . melon = { //this one is kind of boring ngl it looks like a sponge but its food
2024-01-05 18:51:00 -05:00
isFood : true ,
2024-01-06 21:46:30 -05:00
tempHigh : 500 ,
stateHigh : "steam" ,
color : "#c4bf1f" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
elements . watermelon _flesh = {
2024-01-06 10:50:43 -05:00
hidden : true ,
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-05 18:51:00 -05:00
tempHigh : 500 ,
2024-01-05 14:44:57 -05:00
stateHigh : "steam" ,
color : "#ff5d47" ,
2024-01-06 10:50:43 -05:00
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
2024-01-05 14:44:57 -05:00
state : "liquid" ,
} ;
elements . nachos = {
2024-01-05 18:51:00 -05:00
isFood : true ,
tempHigh : 500 ,
2024-01-05 14:44:57 -05:00
stateHigh : "ash" ,
2024-01-05 18:51:00 -05:00
color : "#bd7b26" ,
2024-01-05 14:44:57 -05:00
behavior : behaviors . SUPPORTPOWDER ,
category : "food" ,
state : "solid" ,
} ;
elements . cherry = {
2024-01-05 18:51:00 -05:00
isFood : true ,
tempHigh : 500 ,
2024-01-05 14:44:57 -05:00
stateHigh : "ash" ,
color : "#ff0f0f" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
2024-01-06 10:50:43 -05:00
elements . green _berries = {
2024-01-05 18:51:00 -05:00
isFood : true ,
tempHigh : 500 ,
2024-01-05 14:44:57 -05:00
stateHigh : "ash" ,
color : "#5ce344" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
2024-01-05 15:21:44 -05:00
elements . meth = {
2024-01-05 18:51:00 -05:00
hardness : 1 ,
2024-01-06 10:50:43 -05:00
tempHigh : 500 ,
2024-02-13 19:10:45 -05:00
tempLow : - 50 ,
stateLowColorMultiplier : 0.9 ,
2024-01-06 10:50:43 -05:00
stateHigh : "melted_meth" ,
2024-01-05 15:21:44 -05:00
color : "#0affef" ,
behavior : behaviors . POWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-09 14:38:53 -05:00
state : "liquid"
2024-01-05 15:21:44 -05:00
} ;
2024-01-05 18:51:00 -05:00
2024-02-13 19:10:45 -05:00
elements . melted _meth = {
viscosity : 1000 ,
tempHigh : 100000 ,
tempLow : - 20 ,
stateHigh : "beans" ,
stateLow : "meth" ,
color : "#00a2ff" ,
behavior : behaviors . LIQUID ,
category : "joke" ,
state : "solid" ,
} ;
2024-01-05 18:51:00 -05:00
elements . garlic = {
isFood : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#ffebbd" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
reactions : {
"bread" : { elem1 : null , elem2 : "garlic_bread" } ,
}
} ;
elements . garlic _bread = {
isFood : true ,
breakInto : "crumb" ,
tempHigh : 500 ,
stateHigh : "ash" ,
2024-02-13 19:10:45 -05:00
color : [ "#e9be90" , "#288a0c" , "#e0c6aa" , "#b49e85" , "#b6926b" , "#ccac8b" ] ,
2024-01-05 18:51:00 -05:00
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
elements . kiwi = {
isFood : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : [ "#0f4700" , "#0f4700" , "#0f4700" , "#0f4700" , "#0f4700" , "#0f4700" , "#0f4700" , "#0f4700" , "#0f4700" , "#210a00" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
2024-01-06 21:46:30 -05:00
elements . lemon = {
breakInto : "lemonade" ,
2024-01-05 18:51:00 -05:00
tempHigh : 500 ,
2024-01-06 21:46:30 -05:00
stateHigh : "steam" ,
color : "#c9c22a" ,
behavior : behaviors . STURDYPOWDER ,
2024-01-05 18:51:00 -05:00
category : "food" ,
2024-01-06 21:46:30 -05:00
state : "liquid" ,
2024-01-14 19:20:43 -05:00
reactions : {
"juice" : { elem1 : "lemonade" , elem2 : null } ,
}
2024-01-11 12:39:00 -05:00
} ;
2024-01-06 21:46:30 -05:00
elements . lemonade = {
isFood : true ,
tempHigh : 500 ,
2024-02-13 19:10:45 -05:00
tempLow : - 15 ,
tempLowColor : "#f8eb35" ,
2024-01-06 21:46:30 -05:00
stateHigh : "steam" ,
color : "#fff41c" ,
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
2024-01-05 18:51:00 -05:00
} ;
elements . poop = {
2024-01-06 10:50:43 -05:00
hardness : 1 ,
2024-01-05 18:51:00 -05:00
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#331600" ,
behavior : behaviors . STURDYPOWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-05 18:51:00 -05:00
state : "solid" ,
2024-01-06 10:50:43 -05:00
reactions : {
"piss" : { elem1 : null , elem2 : "bless" } ,
}
2024-01-05 18:51:00 -05:00
} ;
2024-01-05 20:20:00 -05:00
2024-02-13 19:10:45 -05:00
elements . diarrhea = {
hardness : 1 ,
viscosity : 10000 ,
tempHigh : 500 ,
stateHigh : [ "ash" , "ash" , "ash" , "ash" , "ash" , "ash" , "ash" , "steam" , ] ,
color : "#523718" ,
behavior : behaviors . LIQUID ,
category : "joke" ,
state : "solid" ,
desc : "riddle me this, libshart, if theres liquid poop then wheres the solid piss?"
} ;
2024-01-05 20:20:00 -05:00
elements . marshmallow = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-05 20:20:00 -05:00
tempHigh : 50 ,
stateHigh : "cooked_marshmallow" ,
color : "#ffe4e3" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
elements . cooked _marshmallow = {
2024-01-06 21:46:30 -05:00
hidden : true ,
isFood : true ,
2024-01-05 20:20:00 -05:00
tempHigh : 150 ,
stateHigh : "burnt_marshmallow" ,
color : "#d49e9d" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . burnt _marshmallow = {
2024-01-06 21:46:30 -05:00
hidden : true ,
2024-01-05 20:20:00 -05:00
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#1c1212" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
2024-01-15 17:49:36 -05:00
elements . spaghetti = {
2024-01-06 21:46:30 -05:00
isFood : true ,
tempHigh : 90 ,
stateHigh : "cooked_ramen" ,
2024-01-05 20:20:00 -05:00
color : "#fae34d" ,
2024-01-15 17:49:36 -05:00
behavior : behaviors . SUPPORT ,
2024-01-05 20:20:00 -05:00
category : "food" ,
state : "solid" ,
} ;
2024-01-15 17:49:36 -05:00
elements . cooked _spaghetti = {
2024-01-06 21:46:30 -05:00
hidden : true ,
density : 800 ,
isFood : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#ada24e" ,
behavior : behaviors . SUPPORT ,
category : "food" ,
2024-01-14 19:20:43 -05:00
state : "solid" ,
2024-01-15 17:49:36 -05:00
} ;
2024-01-06 21:46:30 -05:00
2024-01-05 20:20:00 -05:00
elements . cereal = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-05 20:20:00 -05:00
tempHigh : 500 ,
stateHigh : "ash" ,
color : [ "#ba3425" , "#baa31e" , "#26ba1e" , "#1e9dba" , "#6f1eba" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
2024-02-15 17:50:26 -05:00
stain : 0.005
2024-01-05 20:20:00 -05:00
} ;
2024-01-06 10:50:43 -05:00
elements . sushi = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-06 10:50:43 -05:00
tempHigh : 500 ,
stateHigh : "ash" ,
color : [ "#020802" , "#fff0eb" , "#ff6524" , "#35ab26" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . diamond _ore = {
tempHigh : 1000 ,
stateHigh : "ash" ,
breakInto : "diamond" ,
color : [ "#525252" , "#525252" , "#525252" , "#525252" , "#525252" , "#2ba3ff" ] ,
behavior : behaviors . WALL ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
} ;
elements . coca _cola = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-06 10:50:43 -05:00
tempHigh : 500 ,
2024-02-13 19:10:45 -05:00
tempLow : - 10 ,
2024-01-06 10:50:43 -05:00
stateHigh : "steam" ,
color : "#381e13" ,
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
2024-01-25 21:19:29 -05:00
elements . pepsi = {
tempHigh : 500 ,
stateHigh : "steam" ,
2024-02-13 19:10:45 -05:00
tempLow : - 10 ,
2024-01-25 21:19:29 -05:00
color : "#2b1717" ,
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
2024-01-06 10:50:43 -05:00
elements . piss = {
tempHigh : 500 ,
stateHigh : "steam" ,
2024-02-13 19:10:45 -05:00
tempLow : - 10 ,
2024-01-06 10:50:43 -05:00
color : "#ffff00" ,
behavior : behaviors . LIQUID ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "liquid" ,
} ;
elements . soup = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-15 17:49:36 -05:00
temp : 100 ,
2024-01-06 10:50:43 -05:00
tempHigh : 500 ,
stateHigh : "steam" ,
color : "#945e00" ,
2024-01-15 17:49:36 -05:00
behavior : [
"XX|CR:steam%0.1|XX" ,
"M2|XX|M2" ,
"M2|M1|M2"
] ,
2024-01-06 10:50:43 -05:00
category : "liquids" ,
state : "liquid" ,
} ;
elements . pastry = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-06 10:50:43 -05:00
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#ba6727" ,
behavior : behaviors . SUPPORT ,
category : "food" ,
state : "solid" ,
} ;
2024-02-13 19:10:45 -05:00
elements . spoiled _milk = {
2024-01-06 10:50:43 -05:00
tempHigh : 500 ,
2024-02-13 19:10:45 -05:00
tempLow : - 20 ,
2024-01-06 10:50:43 -05:00
stateHigh : "ash" ,
color : "#b8c2b4" ,
behavior : behaviors . LIQUID ,
2024-01-06 21:46:30 -05:00
category : "liquids" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
2024-01-06 21:46:30 -05:00
reactions : {
"dirty_water" : { elem1 : "milk" , elem2 : "expired_milk" } ,
"milk" : { elem1 : "expired_milk" , elem2 : "milk" } ,
"water" : { elem1 : "milk" , elem2 : "dirty_water" } ,
}
2024-01-06 10:50:43 -05:00
} ;
elements . kfc = {
tempHigh : 69420 ,
stateHigh : "void" ,
color : "#d16e11" ,
behavior : behaviors . STURDYPOWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
} ;
elements . wendys = {
tempHigh : 69420 ,
stateHigh : "void" ,
color : "#db1e0d" ,
behavior : behaviors . STURDYPOWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
} ;
elements . burger _king = {
tempHigh : 69420 ,
stateHigh : "void" ,
color : "#db660d" ,
behavior : behaviors . STURDYPOWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
} ;
elements . pizza _hut = {
tempHigh : 69420 ,
stateHigh : "void" ,
color : "#ed3b24" ,
behavior : behaviors . STURDYPOWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
} ;
elements . dominos = {
tempHigh : 69420 ,
stateHigh : "void" ,
color : [ "#ed4934" , "#3494ed" ] ,
behavior : behaviors . STURDYPOWDER ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
} ;
elements . vape = {
tempHigh : 500999 ,
stateHigh : "beans" ,
color : "#999999" ,
behavior : [
"XX|CR:smoke|XX" ,
"CR:smoke|XX|CR:smoke" ,
"XX|CR:smoke|XX" ,
] ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-06 10:50:43 -05:00
state : "solid" ,
} ;
elements . tendon = {
temp : 20000 ,
color : [ "#1eff00" , "#1eff00" , "#1eff00" , "#acffa1" , "#1eff00" , "#1eff00" , "#1eff00" ] ,
behavior : behaviors . DGAS ,
category : "energy" ,
state : "gas" ,
} ;
2024-01-06 21:46:30 -05:00
elements . plasma . tempHigh = 18000
elements . plasma . stateHigh = "tendon"
2024-01-06 10:50:43 -05:00
elements . pea = {
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-06 10:50:43 -05:00
breakInto : "mashed_pea" ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#3cbf2a" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
2024-01-06 21:46:30 -05:00
elements . mashed _pea = {
hidden : true ,
isFood : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#97f578" ,
behavior : behaviors . POWDER ,
category : "food" ,
state : "liquid" ,
} ;
2024-01-09 20:14:16 -05:00
elements . burnt _beans = {
tempHigh : 500 ,
stateHigh : "ash" ,
2024-02-13 19:10:45 -05:00
tempLow : - 0 ,
stateLow : "beans" ,
2024-01-06 21:46:30 -05:00
isFood : true ,
2024-01-09 20:14:16 -05:00
viscosity : 10000 ,
2024-01-06 21:46:30 -05:00
density : 721 ,
hardness : 1 ,
2024-01-09 20:14:16 -05:00
color : "#1a0d04" ,
2024-01-06 21:46:30 -05:00
category : "food" ,
behavior : behaviors . LIQUID ,
state : "liquid" ,
} ;
elements . chicken = {
tempHigh : 60 ,
stateHigh : "chicken_nugget" ,
color : "#cfbab0" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "solid" ,
} ;
elements . chicken _nugget = {
hidden : true ,
isFood : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#e0723f" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . cocaine = {
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#fafafa" ,
behavior : behaviors . POWDER ,
category : "joke" ,
state : "liquid" ,
} ;
elements . zombie = {
2024-02-23 21:46:23 -05:00
excludeRandom : true ,
2024-01-06 21:46:30 -05:00
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#114700" ,
2024-01-09 20:14:16 -05:00
behavior : [
"M1%2|M1%2 AND SW%1|M1%2" ,
"M1%2 AND CH:zombie|XX|M1%2 AND CH:zombie" ,
"M1|M1 AND SW%1|M1"
] ,
2024-01-06 21:46:30 -05:00
category : "special" ,
state : "liquid" ,
2024-01-09 20:14:16 -05:00
ignore : [ "fire" , "smoke" , "antimatter" , "strange_matter" , "filler" , "lattice" , "wall" , "ewall" , "plasma" , "void" , "border" ]
2024-01-06 21:46:30 -05:00
} ;
elements . toothpaste = {
tempHigh : 500 ,
stateHigh : "ash" ,
color : [ "#e8e8e8" , "#ff0000" , "#00b7ff" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . radioactive _grape = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
2024-01-11 12:39:00 -05:00
color : [ "#7d00d1" , "#8047d6" ] ,
2024-01-06 21:46:30 -05:00
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
2024-01-11 12:39:00 -05:00
elements . radioactive _meat = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : [ "#4b5742" , "#91564a" ] ,
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . radioactive _chocolate = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : [ "#404d29" , "#4d3429" ] ,
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . radioactive _egg = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : "#93cc87" ,
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . radioactive _milk = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : "#9bb895" ,
behavior : behaviors . RADLIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . radioactive _potato = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : "#6e8544" ,
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . radioactive _water = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "steam" ,
color : "#baf0aa" ,
behavior : behaviors . RADLIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . radioactive _bread = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : "#aec74c" ,
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . radioactive _toast = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : "#565e38" ,
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
2024-01-06 21:46:30 -05:00
2024-01-13 15:26:08 -05:00
elements . radioactive _beans = {
hidden : true ,
tempHigh : 1000 ,
stateHigh : "ash" ,
color : [ "#34541f" , "#994926" ] ,
behavior : behaviors . RADPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
2024-01-06 21:46:30 -05:00
elements . shampoo = {
viscosity : 1000 ,
density : 500 ,
hardness : 1 ,
tempHigh : 500 ,
stateHigh : "steam" ,
color : "#ccd3e0" ,
behavior : behaviors . FOAM ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . salami = {
density : 1000 ,
hardness : 1 ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#de3c1d" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . moon = {
density : 3344 ,
hardness : 1 ,
tempHigh : 10000 ,
stateHigh : "beans" ,
color : "#bababa" ,
behavior : behaviors . WALL ,
category : "special" ,
state : "solid" ,
} ;
elements . dragon _fruit = {
breakInto : "mashed_dragon_fruit" ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : [ "#ff006f" , "#ff006f" , "#ff006f" , "#036300" , "#ff006f" , "#ff006f" , "#ff006f" , "#ff006f" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . mashed _dragon _fruit = {
hidden : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : [ "#e3e3e3" , "#e3e3e3" , "#0f0f0f" , "#e3e3e3" , "#e3e3e3" , "#e3e3e3" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . chantilly = {
hardness : 1 ,
tempHigh : 500 ,
stateHigh : "steam" ,
color : "#cccccc" ,
behavior : behaviors . FOAM ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . fart = {
2024-01-09 14:38:53 -05:00
temp : Infinity ,
2024-01-06 21:46:30 -05:00
color : "#2e4722" ,
behavior : behaviors . DGAS ,
category : "joke" ,
state : "gas" ,
2024-02-23 21:46:23 -05:00
excludeRandom : true
2024-01-06 21:46:30 -05:00
} ;
elements . chips = {
density : 600 ,
hidden : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#ff9a1f" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . fries = {
density : 600 ,
hidden : true ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#d6ab0f" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . mayo = {
2024-01-09 14:38:53 -05:00
color : "#fcffbd" ,
behavior : behaviors . LIQUID ,
reactions : {
"glue" : { elem2 : null , chance : 0.01 } ,
"oil" : { elem2 : null , chance : 0.01 } ,
"sap" : { elem2 : null , chance : 0.01 } ,
} ,
viscosity : 3491 ,
tempHigh : 100.6 ,
stateHigh : [ "steam" , "carbon_dioxide" , "methane" ] ,
category : "liquids" ,
state : "liquid" ,
density : 910 ,
stain : 0.01 ,
isFood : true
2024-01-06 21:46:30 -05:00
} ;
elements . barbecue _sauce = {
viscosity : 3000 ,
density : 1800 ,
tempHigh : 500 ,
2024-02-13 19:10:45 -05:00
tempLow : 0 ,
2024-01-06 21:46:30 -05:00
stateHigh : "steam" ,
color : "#420400" ,
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . fried _water = {
2024-01-09 14:38:53 -05:00
hidden : true ,
2024-01-06 21:46:30 -05:00
temp : 50 ,
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#a3591c" ,
behavior : behaviors . POWDER ,
category : "joke" ,
state : "liquid" ,
} ;
elements . solid _water = {
2024-01-09 14:38:53 -05:00
hidden : true ,
2024-01-08 13:41:50 -05:00
viscosity : 10000 ,
2024-01-06 21:46:30 -05:00
tempHigh : 100 ,
stateHigh : "fried_water" ,
color : "#dfe9f5" ,
2024-01-08 13:41:50 -05:00
behavior : behaviors . LIQUID ,
2024-01-06 21:46:30 -05:00
category : "joke" ,
2024-01-08 13:41:50 -05:00
state : "liquid" ,
} ;
elements . vanilla = {
hardness : 1 ,
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#e3e3e3" ,
behavior : behaviors . FOAM ,
category : "food" ,
state : "liquid" ,
reactions : {
"cream" : { elem1 : null , elem2 : "vanilla_cream" } ,
"ice_cream" : { elem1 : null , elem2 : "vanilla_ice_cream" } ,
"yolk" : { elem1 : null , elem2 : "vanilla_pudding" } ,
}
} ;
elements . vanilla _cream = {
hardness : 1 ,
hidden : true ,
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#d6d6d6" ,
behavior : behaviors . FOAM ,
category : "food" ,
state : "liquid" ,
} ;
elements . vanilla _ice _cream = {
hardness : 1 ,
hidden : true ,
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#f7f7f7" ,
behavior : behaviors . FOAM ,
category : "food" ,
state : "liquid" ,
reactions : {
2024-01-13 15:26:08 -05:00
"chocolate" : { elem1 : null , elem2 : "chocolate_vanilla_ice_cream" , tempMin : 0 } ,
"melted_chocolate" : { elem1 : null , elem2 : "chocolate_vanilla_ice_cream" , tempMin : 0 } ,
2024-01-08 13:41:50 -05:00
}
} ;
elements . chocolate _vanilla _ice _cream = {
hardness : 1 ,
hidden : true ,
tempHigh : 200 ,
stateHigh : "steam" ,
color : [ "#dbdbdb" , "#915936" ] ,
behavior : behaviors . FOAM ,
category : "food" ,
state : "liquid" ,
} ;
elements . vanilla _pudding = {
hardness : 1 ,
hidden : true ,
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#d4c4ba" ,
behavior : behaviors . FOAM ,
category : "food" ,
state : "liquid" ,
} ;
elements . cinnamon = {
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#3d1409" ,
behavior : behaviors . POWDER ,
category : "powders" ,
state : "liquid" ,
} ;
elements . porridge = {
temp : 30 ,
viscosity : 3000 ,
density : 500 ,
tempHigh : 500 ,
2024-02-13 19:10:45 -05:00
tempLow : - 10 ,
2024-01-08 13:41:50 -05:00
stateHigh : "steam" ,
color : "#b8a254" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . beet = {
tempHigh : 400 ,
stateHigh : "ash" ,
color : "#5d0678" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . chocolate _egg = {
hidden : true ,
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#805e2e" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . chocolate _grape = {
hidden : true ,
viscosity : 10000 ,
tempHigh : 300 ,
stateHigh : "steam" ,
2024-02-13 19:10:45 -05:00
color : [ "#7e600d" , "#6e4d36" ] ,
2024-01-08 13:41:50 -05:00
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . sprinkles = {
tempHigh : 200 ,
stateHigh : "ash" ,
cooldown : 0.2 ,
color : [ "#ff5e5e" , "#ffea5e" , "#73ff5e" , "#5efcff" , "#995eff" , "#ff5ed1" ] ,
2024-02-13 19:10:45 -05:00
behavior : behaviors . POWDER ,
2024-01-08 13:41:50 -05:00
category : "powders" ,
state : "liquid" ,
maxSize : 1 ,
} ;
elements . incinerator = {
color : "#bf4b7d" ,
2024-01-09 14:38:53 -05:00
behavior : [
"XX|HT:10000|XX" ,
"HT:10000|XX|HT:10000" ,
"XX|HT:10000|XX" ,
] ,
2024-01-08 13:41:50 -05:00
category : "machines" ,
state : "solid" ,
2024-01-09 14:38:53 -05:00
insulate : true ,
2024-02-13 19:10:45 -05:00
excludeRandom : true ,
2024-01-10 16:58:38 -05:00
reactions : {
2024-02-23 21:46:23 -05:00
"fart" : { elem1 : null , elem2 : "kaboom" } ,
2024-01-10 16:58:38 -05:00
}
2024-01-08 13:41:50 -05:00
} ;
elements . cocoa = {
breakInto : "cocoa_seeds" ,
tempHigh : 300 ,
stateHigh : "ash" ,
color : "#912f1d" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . cocoa _seeds = {
breakInto : "chocolate" ,
hidden : true ,
tempHigh : 80 ,
stateHigh : "melted_chocolate" ,
color : "#cfc7ab" ,
behavior : behaviors . SUPPORT ,
category : "food" ,
2024-01-14 19:20:43 -05:00
state : "solid" ,
2024-01-08 13:41:50 -05:00
} ;
elements . pineapple = {
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#ccbe3b" ,
behavior : behaviors . SUPPORT ,
category : "food" ,
2024-01-14 19:20:43 -05:00
state : "solid" ,
2024-01-08 13:41:50 -05:00
} ;
elements . broccoli = {
viscosity : 100000 ,
tempHigh : 300 ,
stateHigh : "ash" ,
color : "#073804" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . pepperoni = {
tempHigh : 300 ,
stateHigh : "ash" ,
color : "#8f2e11" ,
behavior : behaviors . SUPPORT ,
category : "food" ,
2024-01-14 19:20:43 -05:00
state : "solid" ,
2024-01-08 13:41:50 -05:00
} ;
elements . apple = {
2024-01-09 14:38:53 -05:00
viscosity : 10000 ,
2024-01-08 13:41:50 -05:00
breakInto : "juice" ,
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#bd2d1a" ,
2024-01-09 14:38:53 -05:00
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . blueberry = {
density : 626 ,
viscosity : 10000 ,
breakInto : "juice" ,
breakIntoColor : "#0e2773" ,
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#192f73" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . cucumber = {
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#235214" ,
2024-01-08 13:41:50 -05:00
behavior : behaviors . SUPPORT ,
category : "food" ,
2024-01-14 19:20:43 -05:00
state : "solid" ,
2024-01-06 21:46:30 -05:00
} ;
2024-01-09 14:38:53 -05:00
elements . olive = {
viscosity : 10000 ,
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#0d0806" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . mushroom = {
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#96847d" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . onion = {
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#460063" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . bacon = {
tempHigh : 90 ,
stateHigh : "cooked_bacon" ,
color : [ "#a1392d" , "#edb4ad" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . cooked _bacon = {
hidden : true ,
tempHigh : 300 ,
stateHigh : "ash" ,
color : [ "#70211d" , "#783b38" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . strawberry = {
viscosity : 10000 ,
density : 754 ,
tempHigh : 200 ,
stateHigh : "steam" ,
color : "#db564d" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
2024-01-09 20:14:16 -05:00
elements . beer = {
tempHigh : 300 ,
stateHigh : "steam" ,
2024-02-13 19:10:45 -05:00
tempLow : - 10 ,
2024-01-09 20:14:16 -05:00
color : "#b39329" ,
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . cardboard = {
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#7d4725" ,
2024-01-14 19:20:43 -05:00
behavior : behaviors . SUPPORT ,
2024-01-09 20:14:16 -05:00
category : "land" ,
2024-01-14 19:20:43 -05:00
state : "solid" ,
burn : 5 ,
burnTime : 200 ,
2024-01-09 20:14:16 -05:00
} ;
elements . carrot = {
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#f06c0e" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . wine = {
2024-02-13 19:10:45 -05:00
hidden : true ,
2024-01-09 20:14:16 -05:00
tempHigh : 400 ,
stateHigh : "steam" ,
2024-02-13 19:10:45 -05:00
tempLow : - 10 ,
2024-01-10 16:58:38 -05:00
color : "#2e0206" ,
2024-01-09 20:14:16 -05:00
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . plasma _bomb = {
tempHigh : 1000 ,
stateHigh : "ash" ,
color : "#452f4a" ,
behavior : [
"XX|EX:20>plasma|XX" ,
"XX|XX|XX" ,
"M2|M1 AND EX:20>plasma|M2"
] ,
category : "weapons" ,
state : "liquid" ,
} ,
elements . dark _energy = {
hardness : 1 ,
tempHigh : 1000000 ,
stateHigh : "void" ,
color : "#1b161c" ,
behavior : [
"M1%10|M1%10 AND SW%5|M1%10" ,
"M1%10 AND CH:dark_energy|XX|M1%10 AND CH:dark_energy" ,
"M1|M1 AND SW%5|M1"
] ,
category : "special" ,
state : "gas" ,
2024-02-13 19:10:45 -05:00
excludeRandom : true
2024-01-09 20:14:16 -05:00
} ;
2024-02-23 21:46:23 -05:00
elements . kaboom = {
2024-01-10 16:58:38 -05:00
hidden : true ,
2024-01-09 20:14:16 -05:00
hardness : 1 ,
hidden : true ,
color : "#40174d" ,
behavior : [
"XX|XX|XX" ,
"XX|EX:800>plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,molten_iron,molten_uranium,molten_lead,oxygen,molten_sodium,sulfur_gas,neon,chlorine,molten_calcium,molten_nickel,molten_copper,molten_zinc,gallium_gas AND CH:void|XX" ,
"XX|XX|XX" ,
] ,
temp : 99999999700 ,
category : "joke" ,
state : "gas" ,
desc : "use at own risk" ,
2024-02-13 19:10:45 -05:00
excludeRandom : true
2024-01-09 20:14:16 -05:00
} ;
2024-01-10 16:58:38 -05:00
elements . papaya = {
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#e38934" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . caviar = {
viscosity : 10000 ,
tempHigh : 500 ,
stateHigh : "steam" ,
color : "#1f1b18" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . peeper = {
hidden : true ,
density : 1000 ,
burn : 0.00001 ,
burnTime : 9999 ,
ignoreAir : true ,
burning : true ,
hardness : 1 ,
tempHigh : 5000000000000000000 ,
stateHigh : "ash" ,
color : "#9c1208" ,
behavior : behaviors . STURDYPOWDER ,
category : "joke" ,
state : "solid" ,
} ;
2024-01-14 19:20:43 -05:00
elements . robux = {
2024-01-10 16:58:38 -05:00
hidden : true ,
viscosity : 10000 ,
tempHigh : 500 ,
stateHigh : "fire" ,
color : [ "#4a8741" , "#4bb53c" ] ,
behavior : behaviors . LIQUID ,
category : "joke" ,
state : "liquid" ,
} ;
2024-01-11 12:39:00 -05:00
elements . ruby = {
tempHigh : 2000 ,
stateHigh : "magma" ,
color : [ "#d6091a" , "#e83544" ] ,
behavior : behaviors . WALL ,
category : "solids" ,
state : "solid" ,
} ;
2024-01-13 15:26:08 -05:00
elements . mosquito = {
tempHigh : 2000 ,
stateHigh : "ash" ,
color : "#2b2421" ,
behavior : behaviors . FLY ,
category : "life" ,
state : "liquid" ,
} ;
elements . bug _spray = {
tempHigh : 2000 ,
stateHigh : "steam" ,
color : "#c9d1cb" ,
behavior : behaviors . DGAS ,
category : "gases" ,
state : "gas" ,
reactions : {
"mosquito" : { elem1 : null , elem2 : null } ,
"ant" : { elem1 : null , elem2 : null } ,
"fly" : { elem1 : null , elem2 : null } ,
"stink_bug" : { elem1 : null , elem2 : null } ,
}
} ;
elements . heavy _water = {
tempLow : 0 ,
stateLow : "ice" ,
tempHigh : 150 ,
stateHigh : "steam" ,
color : "#447ecf" ,
behavior : behaviors . LIQUID _OLD ,
category : "liquids" ,
state : "liquid" ,
2024-02-13 19:10:45 -05:00
reactions : {
"sand" : { elem1 : null , elem2 : "quicksand" } ,
}
2024-01-13 15:26:08 -05:00
} ;
elements . blood _orange = {
hidden : true ,
tempHigh : 300 ,
stateHigh : [ "ash" , "steam" ] ,
color : [ "#f06c0e" , "#bd1000" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
elements . orange = {
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#f06c0e" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
reactions : {
"blood" : { elem1 : null , elem2 : "blood_orange" , chance : 0.01 } ,
}
} ;
elements . cranberry = {
viscosity : 10000 ,
hidden : true ,
tempHigh : 300 ,
stateHigh : "steam" ,
2024-02-13 19:10:45 -05:00
tempLow : - 15 ,
2024-01-13 15:26:08 -05:00
color : "#ad2a1d" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
} ;
elements . yoyleberries = {
desc : "who the fuck requested yoylecake?" ,
viscosity : 10000 ,
hidden : true ,
tempHigh : 300 ,
stateHigh : "steam" ,
color : "#630094" ,
behavior : behaviors . LIQUID ,
category : "food" ,
state : "liquid" ,
reactions : {
"batter" : { elem1 : null , elem2 : "yoylecake" } ,
}
} ;
elements . yoylecake = {
hidden : true ,
tempHigh : 500 ,
stateHigh : "steam" ,
color : [ "#9404db" , "#28b82b" ] ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid" ,
} ;
2024-01-14 19:20:43 -05:00
elements . cool _ray = {
color : [ "#0cdaed" , "#baf9ff" ] ,
tick : function ( pixel ) {
var x = pixel . x ;
for ( var y = pixel . y ; y < height ; y ++ ) {
if ( outOfBounds ( x , y ) ) {
break ;
}
if ( isEmpty ( x , y ) ) {
if ( Math . random ( ) > 0.05 ) { continue }
createPixel ( "flash" , x , y ) ;
pixelMap [ x ] [ y ] . color = "#0cdaed" ;
pixelMap [ x ] [ y ] . temp = 0 ;
}
else {
if ( elements [ pixelMap [ x ] [ y ] . element ] . isGas ) { continue }
if ( elements [ pixelMap [ x ] [ y ] . element ] . id === elements . heat _ray . id ) { break }
pixelMap [ x ] [ y ] . temp += - 10 ;
pixelTempCheck ( pixelMap [ x ] [ y ] ) ;
break ;
}
}
deletePixel ( pixel . x , pixel . y ) ;
} ,
temp : 0 ,
category : "energy" ,
state : "gas" ,
excludeRandom : true ,
noMix : true
2024-01-06 21:46:30 -05:00
} ;
2024-01-14 19:20:43 -05:00
elements . flood _disaster = {
color : "#5397c2" ,
behavior : [
"XX|XX|XX" ,
"XX|EX:10>flood_disaster,water,water,water,water,water,water,water,water,water,water,water,water%25 AND DL%10|XX" ,
"XX|XX|XX" ,
] ,
category : "weapons" ,
state : "solid" ,
density : 1300 ,
hidden : true ,
excludeRandom : true ,
maxSize : 1 ,
cooldown : defaultCooldown
2024-01-06 21:46:30 -05:00
} ;
2024-01-14 19:20:43 -05:00
elements . uranium _ice _cream = {
viscosity : 10000 ,
tempHigh : 150 ,
stateHigh : "steam" ,
color : [ "#cee6cc" , "#1bab11" , "#305e2d" , "#5a7059" ] ,
behavior : [
"XX|CR:radiation%2|XX" ,
"M2|XX|M2" ,
"M2|M1|M2" ,
] ,
category : "food" ,
state : "liquid" ,
2024-01-08 13:41:50 -05:00
} ;
2024-01-10 16:58:38 -05:00
2024-01-15 17:49:36 -05:00
elements . silver _coin = {
tempHigh : 1000 ,
stateHigh : "molten_silver" ,
color : [ "#ababab" , "#dedede" ] ,
behavior : behaviors . POWDER ,
category : "powders" ,
state : "solid" ,
} ;
2024-01-25 21:19:29 -05:00
elements . uraniumaniumaniumaniumanium _popcornicecream _plutoniumeptunium _238239 = {
2024-01-15 17:49:36 -05:00
color : "#238fe8" ,
behavior : [
"XX|XX|XX" ,
"XX|EX:800000000000>plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,molten_iron,molten_uranium,molten_lead,oxygen,molten_sodium,sulfur_gas,neon,chlorine,molten_calcium,molten_nickel,molten_copper,molten_zinc,gallium_gas AND CH:void|XX" ,
"XX|XX|XX" ,
] ,
temp : 99999999700 ,
category : "joke" ,
state : "gas" ,
density : 1000 ,
hardness : 1 ,
hidden : true ,
excludeRandom : true ,
maxSize : 1 ,
noMix : true ,
2024-01-25 21:19:29 -05:00
desc : "ok now ACTUALLY use it at your own risk IM NOT KIDDING! THIS CAN FUCKING CRASH YOUR GAME" ,
excludeRandom : true ,
} ;
elements . coffee _milk = {
tempHigh : 300 ,
stateHigh : "steam" ,
2024-02-13 19:10:45 -05:00
tempLow : - 30 ,
2024-01-25 21:19:29 -05:00
color : "#5c4c42" ,
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . mentos = {
tempHigh : 500 ,
stateHigh : "ash" ,
color : "#d0cbd6" ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid"
} ;
elements . oreo = {
tempHigh : 300 ,
stateHigh : "steam" ,
color : [ "#211e1e" , "#fff6f5" ] ,
singleColor : true ,
behavior : behaviors . STURDYPOWDER ,
category : "food" ,
state : "liquid"
} ;
elements . uranium _238 = {
tempHigh : 1200 ,
stateHigh : "molten_uranium" ,
color : [ "#0f400b" , "#30522d" , "#4d6b4a" , "#6f8f6d" ] ,
behavior : [
"XX|CR:radiation%1|XX" ,
"CR:radiation%1|CH:lead%0.001|CR:radiation%1" ,
"M2|M1|M2" ,
] ,
category : "powders" ,
state : "liquid" ,
density : 19100 ,
hardness : 0.6 ,
conduct : 0.235 ,
excludeRandom : true ,
reactions : {
"neutron" : { elem1 : "uranium_239" , } ,
}
} ;
elements . uranium _239 = {
tempHigh : 1300 ,
stateHigh : "molten_uranium" ,
color : [ "#153816" , "#135e14" , "#379138" , "#567556" , "#7bb37b" ] ,
behavior : [
"XX|CR:radiation%2|XX" ,
"CR:radiation%2|CH:lead%0.002|CR:radiation%2" ,
"M2|M1|M2" ,
] ,
category : "powders" ,
state : "liquid" ,
hidden : true ,
density : 19100 ,
hardness : 0.6 ,
conduct : 0.235 ,
excludeRandom : true ,
reactions : {
"electron" : { elem1 : "neptunium_239" }
}
} ;
elements . neptunium _239 = {
tempHigh : 1500 ,
stateHigh : "molten_uranium" ,
color : [ "#082e19" , "#173b27" , "#354a3f" , "#4c635a" , "#344a41" ] ,
behavior : [
"XX|CR:radiation%3|XX" ,
"CR:radiation%3|CH:lead%0.003|CR:radiation%3" ,
"M2|M1|M2" ,
] ,
category : "powders" ,
state : "liquid" ,
hidden : true ,
density : 20000 ,
hardness : 0.7 ,
conduct : 0.3 ,
excludeRandom : true ,
reactions : {
"electron" : { elem1 : "plutonium" } ,
"neutron" : { elem1 : "n_explosion" , tempMin : 500 , chance : 0.1 }
}
} ;
elements . plutonium = {
tempHigh : 2000 ,
stateHigh : "molten_uranium" ,
color : [ "#0a4a17" , "#194d23" , "#263b2a" , "#475449" ] ,
behavior : [
"XX|CR:radiation%4|XX" ,
"CR:radiation%4|CH:lead%0.004|CR:radiation%4" ,
"M2|M1|M2" ,
] ,
category : "powders" ,
state : "liquid" ,
hidden : true ,
density : 22000 ,
hardness : 0.8 ,
conduct : 0.4 ,
excludeRandom : true ,
reactions : {
"neutron" : { elem1 : "n_explosion" , tempMin : 500 , chance : 0.2 } ,
"electron" : { elem1 : "n_explosion" , tempMin : 500 , chance : 0.00000000000000000000001 }
}
} ;
elements . electron = {
color : "#c99d16" ,
behavior : behaviors . BOUNCY ,
reactions : {
"uranium" : { temp2 : 100 } ,
} ,
temp : 35 ,
category : "energy" ,
state : "gas" ,
density : 0.00002 ,
ignoreAir : true
} ;
elements . sned = {
2024-02-13 19:10:45 -05:00
desc : "slowly expanding..." ,
2024-01-25 21:19:29 -05:00
color : "#dfe0d9" ,
behavior : [
"XX|XX AND CR:sned%1|XX" ,
"M2 AND CR:sned%1|XX|M2 AND CR:sned%1" ,
"M1|M1 AND CH:sned%1|M1" ,
] ,
category : "joke" ,
state : "liquid" ,
excludeRandom : true
} ;
elements . uranium _tea = {
temp : 60 ,
tempHigh : 400 ,
stateHigh : "molten_uranium" ,
2024-02-13 19:10:45 -05:00
color : [ "#526306" , "#40530c" , "#80320e" , "#502e0f" ] ,
2024-01-25 21:19:29 -05:00
behavior : behaviors . RADLIQUID ,
category : "liquids" ,
state : "liquid"
} ;
elements . powerlaser = {
color : [ "#ed0ca9" , "#ff2b95" ] ,
tick : function ( pixel ) {
var x = pixel . x ;
for ( var y = pixel . y ; y < height ; y ++ ) {
if ( outOfBounds ( x , y ) ) {
break ;
}
if ( isEmpty ( x , y ) ) {
if ( Math . random ( ) > 0.05 ) { continue }
createPixel ( "flash" , x , y ) ;
pixelMap [ x ] [ y ] . color = "#b80ced" ;
2024-02-13 19:10:45 -05:00
pixelMap [ x ] [ y ] . temp = 11000 ;
2024-01-25 21:19:29 -05:00
}
else {
if ( elements [ pixelMap [ x ] [ y ] . element ] . isGas ) { continue }
if ( elements [ pixelMap [ x ] [ y ] . element ] . id === elements . heat _ray . id ) { break }
2024-02-13 19:10:45 -05:00
pixelMap [ x ] [ y ] . temp += 9000 ;
2024-01-25 21:19:29 -05:00
pixelTempCheck ( pixelMap [ x ] [ y ] ) ;
break ;
}
}
deletePixel ( pixel . x , pixel . y ) ;
} ,
2024-02-13 19:10:45 -05:00
temp : 10000 ,
2024-01-25 21:19:29 -05:00
category : "energy" ,
state : "gas" ,
excludeRandom : true ,
noMix : true
} ;
elements . magma _bomb = {
temp : 100 ,
color : "#b83109" ,
behavior : [
"XX|EX:6>magma|XX" ,
"XX|XX|XX" ,
"M2|M1 AND EX:6>magma|M2"
] ,
category : "weapons" ,
state : "liquid"
2024-01-15 17:49:36 -05:00
} ;
2024-02-13 19:10:45 -05:00
elements . quicksand = {
viscosity : 10000 ,
tempHigh : 1000 ,
stateHigh : [ "molten_glass" , "molten_glass" , "molten_glass" , "molten_glass" , "steam" ] ,
color : [ "#b1873a" , "#cea250" ] ,
behavior : behaviors . LIQUID ,
category : "land" ,
state : "liquid" ,
density : 1400 ,
stain : 0.02
} ;
elements . liquid _filler = {
color : "#ae00ff" ,
behavior : [
"XX|XX AND CR:liquid_filler%50|XX" ,
"M2 AND CR:liquid_filler%50|XX|M2 AND CR:liquid_filler%50" ,
"M1|M1 AND CH:liquid_filler%50|M1" ,
] ,
category : "special" ,
2024-02-23 21:46:23 -05:00
state : "liquid" ,
excludeRandom : true
2024-02-13 19:10:45 -05:00
} ;
2024-02-15 17:50:26 -05:00
elements . antimony = {
color : [ "#4b90b8" , "#a3bfd8" , "#89a0b6" , "#8798a7" , "#738092" ] ,
behavior : behaviors . WALL ,
category : "solids" ,
state : "solid" ,
density : 6697 ,
tempHigh : 630 ,
stateHigh : "melted_antimony" ,
alias : "...sb?!"
} ;
elements . melted _antimony = {
color : [ "#8fb2c7" , "#7494b1" , "#72a1cc" , "#a3aaaf" , "#a4aab3" ] ,
behavior : behaviors . LIQUID ,
category : "liquids" ,
state : "liquid" ,
density : 6697 ,
stain : 0.1 ,
tempLow : - 270 ,
stateLowName : "antimony_ice"
} ;
elements . unstain = {
color : "#729fff" ,
behavior : [
"XX|XX|XX" ,
"XX|XX|XX" ,
"XX|XX|XX"
] ,
stain : - 1 ,
tool : ( pixel ) => {
doStaining ( {
element : "unstain" ,
x : pixel . x ,
y : pixel . y
} )
} ,
category : "tools" ,
state : "solid" ,
} ;
2024-02-21 10:45:07 -05:00
elements . antmatter = {
color : "#5f4a4a" ,
behavior : [
"M2|DB%50 AND M2 AND EX:8>ant%10|M2" ,
"M1|XX|M1" ,
"M1|DB%50 AND M1 AND EX:8>ant%10|M1" ,
] ,
category : "others" ,
state : "gas" ,
density : 6.9 ,
desc : "first ever others category element i guess"
} ;
2024-02-23 21:46:23 -05:00
elements . thermal _paste = {
viscosity : 10000 ,
tempHigh : 200 ,
stateHigh : [ null , "thermal_paste" ] ,
color : "#c5cfd3" ,
behavior : [
"XX|CO:1|XX" ,
"CO:1 AND M2|XX|CO:1 AND M2" ,
"M1|CO:1 AND M1|M1" ,
] ,
category : "liquids" ,
state : "liquid" ,
} ;
elements . sam = {
name : "sam's sperm i think" ,
viscosity : 10000 ,
color : "#0e0e0e" ,
behavior : behaviors . LIQUID ,
category : "joke" ,
state : "liquid" ,
desc : "begs the question; did he censor himself?"
} ;
elements . glitch = {
color : [ "#ff0000" , "#c300ff" , "#bbff00" , "#1100ff" , "#00ffaa" ] ,
behavior : [
"XX|XX|XX" ,
"XX|CC:ff0000,c300ff,bbff00,1100ff,00ffaa|XX" ,
"XX|XX|XX"
] ,
category : "special" ,
conduct : 0.5 ,
movable : false
} ;
2024-01-14 19:20:43 -05:00
elements . incinerate . category = "tools" ,
elements . cook . category = "tools" ,
elements . room _temp . category = "tools" ,
elements . beans . tempHigh = 349 ,
elements . beans . stateHigh = "burnt_beans"
2024-02-21 10:45:07 -05:00
elements . grass . onSelect = function ( ) {
logMessage ( "go touch this" ) ;
}
2024-01-14 19:20:43 -05:00
if ( ! elements . radiation . reactions ) elements . egg . reactions = { } ;
elements . radiation . reactions . meat = { elem1 : null , elem2 : "radioactive_meat" } ,
elements . radiation . reactions . grape = { elem1 : null , elem2 : "radioactive_grape" } ,
elements . radiation . reactions . egg = { elem1 : null , elem2 : "radioactive_egg" } ,
elements . radiation . reactions . potato = { elem1 : null , elem2 : "radioactive_potato" } ,
elements . radiation . reactions . water = { elem1 : null , elem2 : "radioactive_water" } ,
elements . radiation . reactions . chocolate = { elem1 : null , elem2 : "radioactive_chocolate" } ,
elements . radiation . reactions . milk = { elem1 : null , elem2 : "radioactive_milk" } ,
elements . radiation . reactions . bread = { elem1 : null , elem2 : "radioactive_bread" } ,
elements . radiation . reactions . toast = { elem1 : null , elem2 : "radioactive_toast" } ,
elements . radiation . reactions . beans = { elem1 : null , elem2 : "radioactive_beans" }
if ( ! elements . egg . reactions ) elements . egg . reactions = { } ;
elements . egg . reactions . water = { elem1 : "boiled_egg" , tempMin : 100 } ,
elements . egg . reactions . steam = { elem1 : "boiled_egg" , tempMin : 100 } ,
elements . egg . reactions . melted _chocolate = { elem1 : "chocolate_egg" } ,
elements . egg . reactions . chocolate = { elem1 : "chocolate_egg" , chance : 0.1 }
if ( ! elements . potato . reactions ) elements . potato . reactions = { } ;
elements . potato . reactions . water = { elem1 : "fries" , tempMin : 100 , chance : 50 } ,
elements . potato . reactions . steam = { elem1 : "fries" , tempMin : 100 , chance : 50 } ,
elements . potato . reactions . water = { elem1 : "chips" , tempMin : 100 , chance : 50 } ,
elements . potato . reactions . steam = { elem1 : "fries" , tempMin : 100 , chance : 50 }
if ( ! elements . water . reactions ) elements . water . reactions = { } ;
elements . water . reactions . cocaine = { elem1 : "solid_water" , elem2 : null }
2024-02-13 19:10:45 -05:00
if ( ! elements . alcohol . reactions ) elements . alcohol . reactions = { } ;
elements . alcohol . reactions . juice = { elem1 : "wine" , elem2 : null , chance : 5 }
2024-01-14 19:20:43 -05:00
if ( ! elements . paper . reactions ) elements . paper . reactions = { } ;
2024-01-25 21:19:29 -05:00
elements . paper . reactions . bless = { elem1 : "robux" , elem2 : null , chance : 0.0000001 }
2024-01-14 19:20:43 -05:00
if ( ! elements . uranium . reactions ) elements . uranium . reactions = { } ;
elements . uranium . reactions . ice _cream = { elem1 : "uranium_ice_cream" , elem2 : null } ,
2024-01-25 21:19:29 -05:00
elements . uranium . reactions . cream = { elem1 : "uranium_ice_cream" , elem2 : null } ,
elements . uranium . reactions . tea = { elem1 : "uranium_tea" , elem2 : null }
2024-01-15 17:49:36 -05:00
if ( ! elements . dough . reactions ) elements . dough . reactions = { } ;
elements . dough . reactions . yolk = { elem1 : null , elem2 : "spaghetti" , tempMin : 25 }
2024-01-25 21:19:29 -05:00
if ( ! elements . coffee . reactions ) elements . coffee . reactions = { } ;
elements . coffee . reactions . milk = { elem1 : null , elem2 : "coffee_milk" , }
2024-01-15 17:49:36 -05:00
elements . silver . breakInto = "silver_coin"