more tools for moretools.js

This commit is contained in:
Sightnado 2022-02-20 12:38:55 -05:00 committed by GitHub
parent 6f1f319317
commit c698657795
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

View File

@ -38,3 +38,31 @@ elements.absolutezero = {
},
category: "tools",
};
elements.antigrav = {
color: ["#696969", "#969696"],
tool: function(pixel) {
pixel.r = 2
},
category: "tools",
};
elements.normalgrav = {
color: ["#969696", "#696969"],
tool: function(pixel) {
pixel.r = 0
},
category: "tools",
};
elements.leftgrav = {
color: ["#696969", "#969696"],
tool: function(pixel) {
pixel.r = 3
},
category: "tools",
};
elements.rightgrav = {
color: ["#969696", "#696969"],
tool: function(pixel) {
pixel.r = 1
},
category: "tools",
};