fixed the formatting

This commit is contained in:
mrnoodleface 2023-03-22 15:27:41 -04:00 committed by GitHub
parent 99c65beb7b
commit bb799e5f82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 23 deletions

View File

@ -9,30 +9,27 @@ elements.exploder = {
};
elements.radiator = {
color: '#248c1c',
tool: function (pixel) {
if (pixel.element == 'cloud') {
pixel.element = 'rad_cloud'
}
if (pixel.element == 'cell') {
pixel.element = 'cancer'
}
if (pixel.element == 'steam') {
pixel.element = 'rad_steam'
}
if (pixel.element == 'dust') {
color: '#248c1c',
tool: function (pixel) {
if (pixel.element == 'cloud') {
pixel.element = 'rad_cloud'
}
if (pixel.element == 'cell') {
pixel.element = 'cancer'
}
if (pixel.element == 'steam') {
pixel.element = 'rad_steam'
}
if (pixel.element == 'dust') {
pixel.element = 'fallout'
}
if (pixel.element == 'explosion') {
}
if (pixel.element == 'explosion') {
pixel.element = 'n_explosion'
}
if (pixel.element == 'null') {
pixel.element = 'radiation'
}
},
category: 'tools',
}
if (pixel.element == 'null') {
pixel.element = 'radiation'
}
},
category: 'tools',
};
//im aware that theres more radiation stuf than this