more trol fractions

This commit is contained in:
Lily-129 2022-02-11 20:14:54 -05:00 committed by GitHub
parent c96622d49b
commit 5c64800a59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

View File

@ -77,6 +77,15 @@ elements.troll4 = {
excludeRandom: true,
},
elements.offset_fourth_y = {
color: ["#000000", "#ff00ff", "#000000", "#ff00ff", "#000000", "#ff00ff", "#000000", "#ff00ff"],
tool: function(pixel) {
tryMove(pixel,pixel.x,pixel.y+0.25);
pixelTempCheck(pixel)
},
category: "tools",
},
elements.offset_half_y = {
color: ["#000000", "#ff00ff", "#000000", "#ff00ff", "#000000", "#ff00ff", "#000000", "#ff00ff"],
tool: function(pixel) {
@ -84,4 +93,13 @@ elements.offset_half_y = {
pixelTempCheck(pixel)
},
category: "tools",
},
elements.offset_three_fourth_y = {
color: ["#000000", "#ff00ff", "#000000", "#ff00ff", "#000000", "#ff00ff", "#000000", "#ff00ff"],
tool: function(pixel) {
tryMove(pixel,pixel.x,pixel.y+0.75);
pixelTempCheck(pixel)
},
category: "tools",
}