Skip to content

Commit d2e7b8c

Browse files
committed
Merge branch 'master' into bottle_tracking
2 parents 957e7e4 + 9a15f07 commit d2e7b8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+800
-220
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ All of the modes can be set by clicking the `Gear` in the `Modes` section. Addit
4040
- Compasses
4141
- Small Keys (Also has extra option for Universal Keys, commonly paired with Retro mode)
4242
- Big Keys
43+
- Prizes (In Dungeon vs Wild)
4344
- Entrance Shuffle
4445
- Vanilla
4546
- Dungeon (Only the dungeon entrances are shuffled)

images/items/bluecrystal.png

1.18 KB
Loading

images/items/bluependant.png

1.33 KB
Loading

images/items/greenpendant.png

1.27 KB
Loading

images/items/redcrystal.png

1.17 KB
Loading

images/items/redpendant.png

1.36 KB
Loading

images/modes/keysanity_bigkey.png

4.53 KB
Loading
7 Bytes
Loading

images/modes/keysanity_compass.png

3.81 KB
Loading
-3 Bytes
Loading

images/modes/keysanity_map.png

3.22 KB
Loading

images/modes/keysanity_map_small.png

0 Bytes
Loading

images/modes/keysanity_prize.png

8.75 KB
Loading
3.18 KB
Loading

images/modes/keysanity_prize_wild.png

8.33 KB
Loading
3.22 KB
Loading

images/modes/keysanity_smallkey.png

7.05 KB
Loading
-15 Bytes
Loading
Loading
Loading

items/modes.json

+22
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,28 @@
109109
}
110110
]
111111
},
112+
{
113+
"name": "Keysanity Prize",
114+
"type": "progressive",
115+
"allow_disabled": false,
116+
"stages": [
117+
{
118+
"img": "images/modes/keysanity_prize.png",
119+
"codes": "keysanity_prize_off",
120+
"inherit_codes": false
121+
},
122+
{
123+
"img": "images/modes/keysanity_prize.png",
124+
"codes": "keysanity_prize_on,keysanity_prize_dungeon",
125+
"inherit_codes": false
126+
},
127+
{
128+
"img": "images/modes/keysanity_prize_wild.png",
129+
"codes": "keysanity_prize_on,keysanity_prize_wild",
130+
"inherit_codes": false
131+
}
132+
]
133+
},
112134
// Entrance Mode
113135
{
114136
"name": "Entrance Shuffle",

items/prizes.json

+77
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,81 @@
11
[
2+
// Green Pendant
3+
{
4+
"name": "Green Pendant",
5+
"type": "toggle",
6+
"img": "images/items/greenpendant.png",
7+
"codes": "greenpendantalt,prizealt"
8+
},
9+
// Blue Pendant
10+
{
11+
"name": "Blue Pendant",
12+
"type": "toggle",
13+
"img": "images/items/bluependant.png",
14+
"codes": "bluependantalt,pendantalt,prizealt"
15+
},
16+
// Red Pendant
17+
{
18+
"name": "Red Pendant",
19+
"type": "toggle",
20+
"img": "images/items/redpendant.png",
21+
"codes": "redpendantalt,pendantalt,prizealt"
22+
},
23+
// Crystal 1
24+
{
25+
"name": "Crystal 1",
26+
"type": "toggle",
27+
"img": "images/items/bluecrystal.png",
28+
"mask_input": true,
29+
"codes": "crystal1,crystalalt,prizealt"
30+
},
31+
// Crystal 2
32+
{
33+
"name": "Crystal 2",
34+
"type": "toggle",
35+
"img": "images/items/bluecrystal.png",
36+
"mask_input": true,
37+
"codes": "crystal2,crystalalt,prizealt"
38+
},
39+
// Crystal 3
40+
{
41+
"name": "Crystal 3",
42+
"type": "toggle",
43+
"img": "images/items/bluecrystal.png",
44+
"mask_input": true,
45+
"codes": "crystal3,crystalalt,prizealt"
46+
},
47+
// Crystal 4
48+
{
49+
"name": "Crystal 4",
50+
"type": "toggle",
51+
"img": "images/items/bluecrystal.png",
52+
"mask_input": true,
53+
"codes": "crystal4,crystalalt,prizealt"
54+
},
55+
// Crystal 5
56+
{
57+
"name": "Crystal 5",
58+
"type": "toggle",
59+
"img": "images/items/redcrystal.png",
60+
"mask_input": true,
61+
"codes": "crystal5,crystalalt,prizealt"
62+
},
63+
// Crystal 6
64+
{
65+
"name": "Crystal 6",
66+
"type": "toggle",
67+
"img": "images/items/redcrystal.png",
68+
"mask_input": true,
69+
"codes": "crystal6,crystalalt,prizealt"
70+
},
71+
// Crystal 7
72+
{
73+
"name": "Crystal 7",
74+
"type": "toggle",
75+
"img": "images/items/bluecrystal.png",
76+
"mask_input": true,
77+
"codes": "crystal7,crystalalt,prizealt"
78+
},
279
// Eastern Palace
380
{
481
"name": "Eastern Palace",

items_only/layouts/tracker.json

+2-7
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,9 @@
5858
"margin": "1,0",
5959
"content": [
6060
{
61-
"type": "itemgrid",
61+
"type": "layout",
6262
"margin": 0,
63-
"item_margin": 0,
64-
"item_size": 20,
65-
"rows": [
66-
[ "keysanity_map_small", "keysanity_compass_small" ],
67-
[ "keysanity_smallkey_small", "keysanity_bigkey_small" ]
68-
]
63+
"key": "shared_keysanity_grid"
6964
},
7065
{
7166
"type": "itemgrid",

0 commit comments

Comments
 (0)