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 = { elements.radiator = {
color: '#248c1c', color: '#248c1c',
tool: function (pixel) { tool: function (pixel) {
if (pixel.element == 'cloud') { if (pixel.element == 'cloud') {
pixel.element = 'rad_cloud' pixel.element = 'rad_cloud'
} }
if (pixel.element == 'cell') { if (pixel.element == 'cell') {
pixel.element = 'cancer' pixel.element = 'cancer'
} }
if (pixel.element == 'steam') { if (pixel.element == 'steam') {
pixel.element = 'rad_steam' pixel.element = 'rad_steam'
} }
if (pixel.element == 'dust') { if (pixel.element == 'dust') {
pixel.element = 'fallout' pixel.element = 'fallout'
} }
if (pixel.element == 'explosion') { if (pixel.element == 'explosion') {
pixel.element = 'n_explosion' pixel.element = 'n_explosion'
} }
if (pixel.element == 'null') { if (pixel.element == 'null') {
pixel.element = 'radiation' pixel.element = 'radiation'
} }
},
}, category: 'tools',
category: 'tools',
}; };
//im aware that theres more radiation stuf than this //im aware that theres more radiation stuf than this