JSONify Enemizer options

Fix set_sprite when cancelling custom sprite file selector
This commit is contained in:
Mike A. Trethewey
2020-02-17 00:45:37 -08:00
parent 663ed3442a
commit 20bc14ba12
6 changed files with 113 additions and 94 deletions

View File

@@ -0,0 +1,8 @@
{
"potshuffle": {
"type": "checkbox",
"label": {
"text": "Pot Shuffle"
}
}
}

View File

@@ -0,0 +1,41 @@
{
"enemyshuffle": {
"type": "selectbox",
"label": {
"text": "Enemy Shuffle"
},
"packAttrs": {
"label": {
"side": "left"
},
"selectbox": {
"side": "right"
}
},
"options": {
"Vanilla": "none",
"Shuffled": "shuffled",
"Chaos": "chaos"
}
},
"bossshuffle": {
"type": "selectbox",
"label": {
"text": "Boss Shuffle"
},
"packAttrs": {
"label": {
"side": "left"
},
"selectbox": {
"side": "right"
}
},
"options": {
"Vanilla": "none",
"Basic": "basic",
"Shuffled": "shuffled",
"Chaos": "chaos"
}
}
}

View File

@@ -0,0 +1,42 @@
{
"enemydamage": {
"type": "selectbox",
"label": {
"text": "Enemy Damage"
},
"packAttrs": {
"label": {
"side": "left"
},
"selectbox": {
"side": "right"
}
},
"options": {
"Vanilla": "default",
"Shuffled": "shuffled",
"Chaos": "chaos"
}
},
"enemyhealth": {
"type": "selectbox",
"label": {
"text": "Enemy Health"
},
"packAttrs": {
"label": {
"side": "left"
},
"selectbox": {
"side": "right"
}
},
"options": {
"Vanilla": "default",
"Easy": "easy",
"Normal": "normal",
"Hard": "hard",
"Expert": "expert"
}
}
}