Weighted Settings v4.0.1 rev1 - Fix a bug (it was a typo) causing the "puke" palettes to never be updated on weighted settings files generated from the website.
- Also added the "reduceflashing" option to weighted settings
This commit is contained in:
parent
cb02977c1c
commit
5e8b4ac3ce
|
@ -1604,8 +1604,8 @@
|
||||||
},
|
},
|
||||||
"reduceflashing": {
|
"reduceflashing": {
|
||||||
"keyString": "rom.reduceflashing",
|
"keyString": "rom.reduceflashing",
|
||||||
"friendlyName": "Reduce Flashing",
|
"friendlyName": "Full-Screen Flashing Effects",
|
||||||
"description": "Disable the amount of flashing effects in-game",
|
"description": "Enable or disable full-screen flashing effects in game.",
|
||||||
"inputType": "range",
|
"inputType": "range",
|
||||||
"subOptions": {
|
"subOptions": {
|
||||||
"on": {
|
"on": {
|
||||||
|
@ -1817,7 +1817,7 @@
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
},
|
},
|
||||||
"puke": {
|
"puke": {
|
||||||
"keyString": "rom.ow_palettes.Puke",
|
"keyString": "rom.ow_palettes.puke",
|
||||||
"friendlyName": "Puke",
|
"friendlyName": "Puke",
|
||||||
"description": "No logic at all.",
|
"description": "No logic at all.",
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
|
@ -1879,7 +1879,7 @@
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
},
|
},
|
||||||
"puke": {
|
"puke": {
|
||||||
"keyString": "rom.uw_palettes.Puke",
|
"keyString": "rom.uw_palettes.puke",
|
||||||
"friendlyName": "Puke",
|
"friendlyName": "Puke",
|
||||||
"description": "No logic at all.",
|
"description": "No logic at all.",
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
|
@ -1941,7 +1941,7 @@
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
},
|
},
|
||||||
"puke": {
|
"puke": {
|
||||||
"keyString": "rom.hud_palettes.Puke",
|
"keyString": "rom.hud_palettes.puke",
|
||||||
"friendlyName": "Puke",
|
"friendlyName": "Puke",
|
||||||
"description": "No logic at all.",
|
"description": "No logic at all.",
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
|
@ -2003,7 +2003,7 @@
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
},
|
},
|
||||||
"puke": {
|
"puke": {
|
||||||
"keyString": "rom.shield_palettes.Puke",
|
"keyString": "rom.shield_palettes.puke",
|
||||||
"friendlyName": "Puke",
|
"friendlyName": "Puke",
|
||||||
"description": "No logic at all.",
|
"description": "No logic at all.",
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
|
@ -2065,7 +2065,7 @@
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
},
|
},
|
||||||
"puke": {
|
"puke": {
|
||||||
"keyString": "rom.sword_palettes.Puke",
|
"keyString": "rom.sword_palettes.puke",
|
||||||
"friendlyName": "Puke",
|
"friendlyName": "Puke",
|
||||||
"description": "No logic at all.",
|
"description": "No logic at all.",
|
||||||
"defaultValue": 0
|
"defaultValue": 0
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
# For use with the weighted-settings page on the website. Changing this value will cause all users to be prompted
|
# For use with the weighted-settings page on the website. Changing this value will cause all users to be prompted
|
||||||
# to update their settings. The version number should match the current released version number, and the revision
|
# to update their settings. The version number should match the current released version number, and the revision
|
||||||
# should be updated manually by whoever edits this file.
|
# should be updated manually by whoever edits this file.
|
||||||
ws_version: 4.0.1 rev0
|
ws_version: 4.0.1 rev1
|
||||||
|
|
||||||
description: Template Name # Used to describe your yaml. Useful if you have multiple files
|
description: Template Name # Used to describe your yaml. Useful if you have multiple files
|
||||||
name: YourName # Your name in-game. Spaces will be replaced with underscores and there is a 16 character limit
|
name: YourName # Your name in-game. Spaces will be replaced with underscores and there is a 16 character limit
|
||||||
|
@ -363,6 +363,9 @@ rom:
|
||||||
quickswap: # Enable switching items by pressing the L+R shoulder buttons
|
quickswap: # Enable switching items by pressing the L+R shoulder buttons
|
||||||
on: 50
|
on: 50
|
||||||
off: 0
|
off: 0
|
||||||
|
reduceflashing: # Reduces instances of flashing such as lightning attacks, weather, ether and more.
|
||||||
|
on: 50
|
||||||
|
off: 0
|
||||||
menuspeed: # Controls how fast the item menu opens and closes
|
menuspeed: # Controls how fast the item menu opens and closes
|
||||||
normal: 50
|
normal: 50
|
||||||
instant: 0
|
instant: 0
|
||||||
|
|
Loading…
Reference in New Issue