Merge pull request #361 from JustAGenericUsername/main

This commit is contained in:
slweeb 2024-02-17 12:22:33 -05:00 committed by GitHub
commit a6fb7f790b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 0 deletions

View File

@ -1498,6 +1498,7 @@ elements.mixer = {
}
},
movable: false,
noMix: true,
},
elements.invisiblesupport = {
color: "#000000",
@ -2206,4 +2207,25 @@ elements.textured_gold = {
pixel.element = "gold"
}
}
}
elements.textured_rose_gold = {
color: ["#FF5991", "#E4386F", "#7F1037", "#FFCCCD", "#671133"],
colorPattern: textures.gold,
colorKey: {
"h": "#FF5991",
"H": "#FFCCCD",
"n": "#E4386F",
"B": "#511230",
"b": "#671133",
"d": "#BF1850",
"D": "#7F1037"
},
behavior: behaviors.WALL,
category: "solids",
state: "solid",
tick: function(pixel){
if (pixelTicks - pixel.start == 1){
pixel.element = "rose_gold"
}
}
}