-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscan_codes.php
More file actions
executable file
·67 lines (63 loc) · 3.33 KB
/
scan_codes.php
File metadata and controls
executable file
·67 lines (63 loc) · 3.33 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
<?php
// https://www.reddit.com/r/lego/comments/i60725/i_reversed_engineered_lego_super_marios_barcodes/
$CONFIG = [
'colors' => [
'red' => '#C8161A', //R
'yellow' => '#FEDD0F', //Y
'lime' => '#B8CF3F', //L
'green' => '#1E8F46', //G
'teal' => '#00A4A0', //T
'blue' => '#1E6AB3', //B
'violet' => '#A479B4', //V
'pink' => '#D562A1', //P
],
'codes' => [
// https://twitter.com/SzczepanStaszak/status/1299349053524905984
'King Boo' => 'GRVYB',
'Cheep Cheep' => 'GRVYP',
'Star' => 'GRVBY',
'Explosion' => 'GRVBP',
'Block 3' => 'GRVPY',
'Piranha Plant' => 'GRVPB',
'Boo' => 'GRVPT',
'Pokey' => 'GRYVL',
'Stone-Eye' => 'GRYVP',
'Yoshi Speech' => 'GRYBV',
'P' => 'GRYBL',
'POW' => 'GRYBP',
'Super Mushroom' => 'GRYPT',
'Cyclical Arrows (71369)' => 'GRYTV',
'Koopa Troopa (71362)' => 'GRYTL',
'Coin (71362)' => 'GRYTP',
'Dry Bones' => 'GRBVY',
'Cyclical Arrows (71360)' => 'GRBVL',
'Cyclical Arrows (71368)' => 'GRBVP',
'Mario Mellody' => 'GRBYP',
'Bob-omb' => 'GRBYT',
'Bowser' => 'GRBLV',
'Hammer' => 'GRBLP',
'Cyclical Arrows (71366)' => 'GRBLT',
'Shy Guy' => 'GRBPV',
'Goomba, Monty Mole, Para Goomba, Bullet' => 'GRBPY',
'Whomp' => 'GRBPT',
'Oscillating Arrows (71369)' => 'GRBTY',
'Timer Block' => 'GRBTP',
'Start' => 'GRLBV',
'Goal' => 'GRLBY',
'Coin (71377)' => 'GRLPT',
'Spiny, Buzzy Beetle' => 'GRPVY',
'Cloud' => 'GRPVB',
'Bidirectional Arrows (71376)' => 'GRPVT',
'Block 2' => 'GRPYV',
'?' => 'GRPYB',
'Bidirectional Arrows (71364, 71368)' => 'GRPYT',
'Block 1' => 'GRPBV',
'Toadette Speech' => 'GRPBY',
'Bidirectional Arrow (71365)' => 'GRPLB',
'Toad Speech' => 'GRPLT',
'Koopa Troopa (71362)' => 'GRPTV',
'Lava' => 'GRPTY',
'Thwomp' => 'GRPTL',
'Bowser Jr' => 'GRTBY',
],
];