-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonpoc_stats.htm
163 lines (159 loc) · 3.57 KB
/
monpoc_stats.htm
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
$figures = array(
"voltron_black_lion" => array(
"name" => "voltron",
"type" => "monster",
"form" => "black lion",
"faction" => "galaxy garrison",
"agenda" => "protectors",
"energyType" => "mechanical",
"set" => "voltron",
"rarity" => 4,
"speed" => 5,
"defense" => 5,
"brawl" => 4,
"brawlBoost" => 1,
"blast" => 4,
"blastBoost" => 1,
"blastRange" => "short",
"health" => 5,
"hyper" => 0,
"abilities" => array(
"flight" => array(),
"toss" => array("trigger"=>"brawl"),
"crunch" => array("trigger"=>"blast"),
),
),
"sun_industries" => array(
"name" => "sun industries",
"type" => "building",
"faction" => "shadow sun syndicate",
"agenda" => "collaborators",
"hazard" => "rubble",
"set" => "all your base",
"rarity" => 3,
"defense" => 5,
"energy" => 5,
"abilities" => array(
"Business Center" => array(),
"Power Gorge" => array("color" => "red","trigger" => "blast"),
"Discount" => array(),
"force field" => array("color" => "red"),
"Shuffle" => array(),
),
),
"zor-maxim_mega" => array(
"name" => "zor-maxim",
"type" => "monster",
"form" => "mega",
"faction" => "shadow sun syndicate",
"agenda" => "collaborators",
"energyType" => "biotech",
"set" => "rise",
"rarity" => 3,
"speed" => 7,
"defense" => 7,
"brawl" => 6,
"brawlBoost" => 1,
"blast" => 7,
"blastBoost" => 4,
"blastRange" => "long",
"power" => 6,
"powerBoost" => 2,
"health" => 5,
"hyper" => 6,
"abilities" => array(
"beat back" => array("trigger" => "blast"),
"weapon master" => array("trigger" => "blast"),
"infiltrate" => array("color" => "blue"),
"jump" => array(),
"radar" => array(),
),
),
"nuclear_power_plant" => array(
"name" => "nuclear power plant",
"type" => "building",
"faction" => "neutral",
"hazard" => "radiation",
"set" => "rise",
"rarity" => 2,
"defense" => 5,
"energy" => 3,
"abilities" => array(
"Industrial Site" => array(),
"Nuclear Powered" => array(),
"Radiated Zone" => array(),
"Power Amplifier" => array(),
),
),
"arsia_outpost" => array(
"name" => "arsia outpost",
"type" => "building",
"faction" => "martian menace",
"agenda" => "invaders",
"hazard" => "radiation",
"set" => "all your base",
"rarity" => 3,
"defense" => 6,
"energy" => 5,
"blast" => 3,
"blastRange" => "short",
"abilities" => array(
"beacon" => array(),
"radiated zone" => array(),
"ground control" => array("color" => "red"),
"no-fly zone" => array(),
),
),
"marauder_shadow" => array(
"name" => "marauder",
"type" => "unit",
"form" => "shadow",
"faction" => "martian menace",
"agenda" => "invaders",
"energyType" => "radioactive",
"set" => "i chomp new york",
"rarity" => 2,
"speed" => 6,
"defense" => 2,
"blast" => 2,
"blastRange" => "long",
"cost" => 2,
"abilities" => array(
"cloak" => array(),
"explosion" => array(),
"flight" => array(),
"indirect fire" => array(),
),
),
"ares_mothership_alpha" => array(
"name" => "ares mothership",
"type" => "monster",
"form" => "alpha",
"faction" => "martian menace",
"agenda" => "invaders",
"energyType" => "radioactive",
"set" => "rise",
"rarity" => 3,
"speed" => 7,
"defense" => 5,
"brawl" => 6,
"brawlBoost" => 1,
"blast" => 6,
"blastBoost" => 2,
"blastRange" => "short",
"power" => 5,
"powerBoost" => 1,
"health" => 6,
"hyper" => 0,
"abilities" => array(
"abduct" => array(),
"transport" => array(),
"manufacture" => array(),
"power sink" => array(),
"flight_short" => array(),
"steady" => array(),
),
),
);
?>