Bläddra i källkod

Fix Cat's forms

master
Fen Dweller 3 år sedan
förälder
incheckning
eac77be1a9
1 ändrade filer med 55 tillägg och 7 borttagningar
  1. +55
    -7
      presets/characters.js

+ 55
- 7
presets/characters.js Visa fil

@@ -32086,30 +32086,78 @@ characterMakers.push(() => makeCharacter(
[ [
{ {
name: "Really small", name: "Really small",
height: math.unit(1, "nm")
height: math.unit(1, "nm"),
allForms: true
}, },
{ {
name: "Micro", name: "Micro",
height: math.unit(5, "inches")
height: math.unit(5, "inches"),
allForms: true
}, },
{ {
name: "Normal", name: "Normal",
height: math.unit(5 + 6 / 12, "feet"), height: math.unit(5 + 6 / 12, "feet"),
default: true
default: true,
form: "cat"
},
{
name: "Normal",
height: math.unit(7, "feet"),
default: true,
form: "taur"
},
{
name: "Normal",
height: math.unit(4, "feet"),
default: true,
form: "lucario"
},
{
name: "Normal",
height: math.unit(2, "feet"),
default: true,
form: "nickit"
},
{
name: "Normal",
height: math.unit(5, "feet"),
default: true,
form: "lopunny"
}, },
{ {
name: "Macro", name: "Macro",
height: math.unit(50, "feet")
height: math.unit(50, "feet"),
allForms: true
}, },
{ {
name: "Macro+", name: "Macro+",
height: math.unit(150, "feet")
height: math.unit(150, "feet"),
allForms: true
}, },
{ {
name: "Megamacro", name: "Megamacro",
height: math.unit(100, "miles")
height: math.unit(100, "miles"),
allForms: true
}, },
]
],
{
"cat": {
name: "Cat",
default: true
},
"taur": {
name: "Taur",
},
"lucario": {
name: "Lucario",
},
"nickit": {
name: "Nickit",
},
"lopunny": {
name: "Lopunny",
}
}
)) ))


characterMakers.push(() => makeCharacter( characterMakers.push(() => makeCharacter(


Laddar…
Avbryt
Spara