asdasdasdad

This commit is contained in:
JustAGenericUsername 2024-02-16 23:20:38 -05:00
parent 439b42bb2a
commit 20ad6ef34b
1 changed files with 21 additions and 0 deletions

View File

@ -2206,4 +2206,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"
}
}
}