fixed my screwed up brackets
This commit is contained in:
parent
72b65cac1a
commit
d83b56fded
|
|
@ -9,21 +9,30 @@ elements.exploder = {
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.radiator = {
|
elements.radiator = {
|
||||||
color: "#248c1c",
|
color: '#248c1c',
|
||||||
tool: function(pixel) {
|
tool: function (pixel) {
|
||||||
if (pixel.element == "null") {
|
if (pixel.element == 'cloud') {
|
||||||
pixel.element = "radiation"
|
pixel.element = 'rad_cloud';
|
||||||
}
|
}
|
||||||
if (pixel.element == "cloud") {
|
if (pixel.element == 'cell') {
|
||||||
pixel.element = "rad_cloud"
|
pixel.element = 'cancer';
|
||||||
}
|
}
|
||||||
if (pixel.element == "cell") {
|
if (pixel.element == 'steam') {
|
||||||
pixel.element = "cancer"
|
pixel.element = 'rad_steam';
|
||||||
}
|
}
|
||||||
if (pixel.element == "steam" {
|
if (pixel.element == 'dust') {
|
||||||
pixel.element = "rad_steam"
|
pixel.element = 'fallout';
|
||||||
}
|
}
|
||||||
},
|
if (pixel.element == 'explosion') {
|
||||||
category: "tools",
|
pixel.element = 'n_explosion';
|
||||||
|
}
|
||||||
|
if (pixel.element == 'null') {
|
||||||
|
pixel.element = 'radiation';
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
category: 'tools',
|
||||||
};
|
};
|
||||||
//im aware that theres more radiation stuf than this
|
//im aware that theres more radiation stuf than this
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue