-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathEggHatcher.json
More file actions
86 lines (86 loc) · 2.94 KB
/
EggHatcher.json
File metadata and controls
86 lines (86 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"0-ProgramName": "EggHatcher",
"1-Documentation": "Microcontroller/blob/master/Wiki/Programs/PokemonBDSP/EggHatcher.md",
"2-Description": "Hatch eggs from boxes.",
"3-Parameters": [
{
"00-Type": "SimpleInteger",
"01-Label": "<b>Boxes to Hatch:</b>",
"02-Declaration": "const uint8_t BOXES_TO_HATCH",
"03-MinValue": 0,
"04-MaxValue": 32,
"98-Default": 3,
"99-Current": 3
},
{
"00-Type": "EnumDropdown",
"01-Label": "<b>Step Count:</b><br>Lookup the # of egg cycles on <a href=\"https://rotomlabs.net/dex\">RotomLabs</a>.",
"02-Declaration": "const uint16_t STEPS_TO_HATCH",
"03-Options": [
[
"1280",
"5 Cycles"
],
[
"2560",
"10 Cycles"
],
[
"3840",
"15 Cycles"
],
[
"5120",
"20 Cycles"
],
[
"6400",
"25 Cycles"
],
[
"7680",
"30 Cycles"
],
[
"8960",
"35 Cycles"
],
[
"10240",
"40 Cycles"
]
],
"98-Default": "5120",
"99-Current": "5120"
},
{
"00-Type": "BooleanCheckBox",
"01-Label": "<b>Save and Reset:</b><br>After hatching a box, save the game and reset. This will recover from game crashes.",
"02-Declaration": "const bool SAVE_AND_RESET",
"98-Default": true,
"99-Current": true
},
{
"00-Type": "Divider",
"01-Label": "<font size=4><b>Advanced Options:</b> You should not need to touch anything below here.</font>"
},
{
"00-Type": "TimeExpression",
"01-Label": "<b>Safety Time:</b><br>Additional time added to the spinning.",
"02-Declaration": "const uint16_t SAFETY_TIME",
"03-MinValue": 0,
"04-MaxValue": 65535,
"98-Default": "10 * TICKS_PER_SECOND",
"99-Current": "10 * TICKS_PER_SECOND"
},
{
"00-Type": "TimeExpression",
"01-Label": "<b>Hatch Delay:</b><br>Total animation time for hatching 5 eggs when there are no shinies.",
"02-Declaration": "const uint16_t HATCH_DELAY",
"03-MinValue": 0,
"04-MaxValue": 65535,
"98-Default": "105 * TICKS_PER_SECOND",
"99-Current": "105 * TICKS_PER_SECOND"
}
]
}