1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2025-04-17 11:11:08 +00:00
This commit is contained in:
Acamaeda 2020-10-16 18:45:44 -04:00
parent 708c7beeb5
commit dae67952a7
9 changed files with 84 additions and 36 deletions

View file

@ -237,7 +237,7 @@ addLayer("c", {
baseStyle: {'background-color' : "#000000"},
textStyle: {'text-shadow': '0px 0px 2px #000000'},
borderStyle() {return {}},
borderStyle() {return {'border-width': "7px"}},
direction: UP,
width: 50,
height: 200,
@ -500,3 +500,18 @@ addLayer("a", {
},
)
// This layer is mostly minimal but it uses a custom prestige type and a clickable
addLayer("spook", {
startData() { return {
unlocked: true,
points: new Decimal(0),
}},
color: "yellow",
resource: "achievement power",
type: "none",
row: 1,
layerShown: "ghost",
},
)