{
	"style" : "groupbox",
	"title" : "Button Properties",
	"layout": [
		{
			"control": "comboBox",
			"name": "type",
			"title": "Type",
			"type": "int",
			"tooltip": "Which subvariation should it use? Check the behavior section in the NPC's tooltip for more info.",
			"value-default": 0,
			"elements": ["Normal", "Deteriorated Button"]
		},
        {
			"control": "spinBox",
			"type": "int",
			"name": "delay",
			"title": "Delay",
			"tooltip": "How long should the button stay pressed? Delay is in units of 10 frames ex <i>(1 = 10 frames, 2 = 20 frames)</i>",
			"value-default": 2,
			"value-min": 1,
			"value-max": 99,
			"single-step": 1
		},
		{
			"control": "comboBox",
			"name": "state",
			"title": "On/Off State",
			"type": "int",
			"tooltip": "Should the button initialize by being on or off?",
			"value-default": 0,
			"elements": ["Off", "On"]
		}
	]
}
