Show
Ignore:
Timestamp:
06/01/07 01:31:02 (3 years ago)
Author:
eevee
Message:

Created very uninteresting item pages. (#10)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/script/pokedex.sql

    r192 r196  
    40794079CREATE TABLE items ( 
    40804080  id int(10) unsigned NOT NULL, 
     4081  game_id smallint(5) unsigned NOT NULL, 
    40814082  `name` varchar(12) NOT NULL, 
    40824083  cost smallint(5) unsigned NOT NULL, 
     
    40874088  fling_power tinyint(3) unsigned NOT NULL, 
    40884089  natural_gift_power tinyint(3) unsigned NOT NULL, 
    4089   natural_gift_type tinyint(3) unsigned NOT NULL, 
     4090  natural_gift_type varchar(8) NOT NULL, 
    40904091  col12 tinyint(3) unsigned NOT NULL, 
    40914092  col13 tinyint(3) unsigned NOT NULL, 
     
    41114112  happiness2 tinyint(4) NOT NULL, 
    41124113  happiness3 tinyint(4) NOT NULL, 
     4114  dpblurb varchar(128) NOT NULL, 
    41134115  PRIMARY KEY  (id) 
    41144116) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     
    41204122LOCK TABLES items WRITE; 
    41214123/*!40000 ALTER TABLE items DISABLE KEYS */; 
    4122 INSERT INTO items VALUES (1,'Master Ball',0,0,0,0,0,0,0,31,9,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4123 (2,'Ultra Ball',1200,0,0,0,0,0,0,31,9,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4124 (3,'Great Ball',600,0,0,0,0,0,0,31,9,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4125 (4,'Poké Ball',200,0,0,0,0,0,0,31,9,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4126 (5,'Safari Ball',0,0,0,0,0,0,0,31,9,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4127 (6,'Net Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4128 (7,'Dive Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4129 (8,'Nest Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4130 (9,'Repeat Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4131 (10,'Timer Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4132 (11,'Luxury Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4133 (12,'Premier Ball',200,0,0,0,0,0,0,31,9,0,1,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4134 (13,'Dusk Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4135 (14,'Heal Ball',300,0,0,0,0,0,0,31,9,0,1,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4136 (15,'Quick Ball',1000,0,0,0,0,0,0,31,9,0,1,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4137 (16,'Cherish Ball',200,0,0,0,0,0,0,31,9,0,1,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4138 (17,'Potion',300,0,20,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,20,0,0,0,0), 
    4139 (18,'Antidote',100,0,0,0,0,30,0,159,64,1,2,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4140 (19,'Burn Heal',250,0,0,0,0,30,0,159,64,1,2,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4141 (20,'Ice Heal',250,0,0,0,0,30,0,159,64,1,2,1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4142 (21,'Awakening',250,0,0,0,0,30,0,159,64,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4143 (22,'Parlyz Heal',200,0,0,0,0,30,0,159,64,1,2,1,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4144 (23,'Full Restore',3000,0,255,0,0,30,0,159,96,1,2,1,0,63,0,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0), 
    4145 (24,'Max Potion',2500,0,255,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0), 
    4146 (25,'Hyper Potion',1200,0,200,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,200,0,0,0,0), 
    4147 (26,'Super Potion',700,0,50,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,50,0,0,0,0), 
    4148 (27,'Full Heal',600,0,0,0,0,30,0,159,64,1,2,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4149 (28,'Revive',1500,0,0,0,0,30,0,159,64,1,2,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,254,0,0,0,0), 
    4150 (29,'Max Revive',4000,0,0,0,0,30,0,159,64,1,2,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0), 
    4151 (30,'Fresh Water',200,0,50,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,50,0,0,0,0), 
    4152 (31,'Soda Pop',300,0,60,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,60,0,0,0,0), 
    4153 (32,'Lemonade',350,0,80,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,80,0,0,0,0), 
    4154 (33,'Moomoo Milk',500,0,100,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,100,0,0,0,0), 
    4155 (34,'EnergyPowder',500,0,0,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,14,0,0,0,0,0,0,50,0,-5,-5,-10), 
    4156 (35,'Energy Root',800,0,0,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,14,0,0,0,0,0,0,200,0,-10,-10,-15), 
    4157 (36,'Heal Powder',450,0,0,0,0,30,0,159,64,1,2,1,0,63,0,0,0,0,0,14,0,0,0,0,0,0,0,0,-5,-5,-10), 
    4158 (37,'Revival Herb',2800,0,0,0,0,30,0,159,64,1,2,1,0,0,1,0,0,0,4,14,0,0,0,0,0,0,255,0,-15,-15,-20), 
    4159 (38,'Ether',1200,0,10,0,0,30,0,159,128,1,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0), 
    4160 (39,'Max Ether',2000,0,255,0,0,30,0,159,128,1,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0), 
    4161 (40,'Elixir',3000,0,10,0,0,30,0,159,128,1,2,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0), 
    4162 (41,'Max Elixir',4500,0,255,0,0,30,0,159,128,1,2,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,127,0,0,0), 
    4163 (42,'Lava Cookie',200,0,0,0,0,30,0,159,64,1,2,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4164 (43,'Berry Juice',100,1,20,0,0,30,0,159,32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,20,0,0,0,0), 
    4165 (44,'Sacred Ash',200,0,0,0,0,30,0,159,0,1,0,1,0,0,3,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0), 
    4166 (45,'HP Up',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,0,8,14,10,0,0,0,0,0,0,0,5,3,2), 
    4167 (46,'Protein',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,0,16,14,0,10,0,0,0,0,0,0,5,3,2), 
    4168 (47,'Iron',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,0,32,14,0,0,10,0,0,0,0,0,5,3,2), 
    4169 (48,'Carbos',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,0,64,14,0,0,0,10,0,0,0,0,5,3,2), 
    4170 (49,'Calcium',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,0,128,14,0,0,0,0,10,0,0,0,5,3,2), 
    4171 (50,'Rare Candy',4800,0,0,0,0,30,0,159,0,1,0,1,0,0,5,0,0,0,0,14,0,0,0,0,0,0,0,0,5,3,2), 
    4172 (51,'PP Up',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,64,0,14,0,0,0,0,0,0,0,0,5,3,2), 
    4173 (52,'Zinc',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,0,0,15,0,0,0,0,0,10,0,0,5,3,2), 
    4174 (53,'PP Max',9800,0,0,0,0,30,0,159,0,1,0,1,0,0,0,0,0,128,0,14,0,0,0,0,0,0,0,0,5,3,2), 
    4175 (54,'Old Gateau',200,0,0,0,0,30,0,159,64,1,2,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4176 (55,'Guard Spec.',700,0,0,0,0,30,0,31,19,0,0,1,0,128,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0), 
    4177 (56,'Dire Hit',650,0,0,0,0,30,0,31,19,0,0,1,0,0,0,0,0,16,0,6,0,0,0,0,0,0,0,0,1,1,0), 
    4178 (57,'X Attack',500,0,0,0,0,30,0,31,19,0,0,1,0,0,16,0,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0), 
    4179 (58,'X Defend',550,0,0,0,0,30,0,31,19,0,0,1,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0), 
    4180 (59,'X Speed',350,0,0,0,0,30,0,31,19,0,0,1,0,0,0,0,16,0,0,6,0,0,0,0,0,0,0,0,1,1,0), 
    4181 (60,'X Accuracy',950,0,0,0,0,30,0,31,19,0,0,1,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,1,1,0), 
    4182 (61,'X Special',350,0,0,0,0,30,0,31,19,0,0,1,0,0,0,16,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0), 
    4183 (62,'X Sp.',350,0,0,0,0,30,0,31,19,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4184 (63,'Poké Doll',1000,0,0,0,0,30,0,31,19,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4185 (64,'Fluffy Tail',1000,0,0,0,0,30,0,31,19,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4186 (65,'Blue Flute',100,0,0,0,0,30,0,31,67,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4187 (66,'Yellow Flute',200,0,0,0,0,30,0,31,67,0,0,1,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4188 (67,'Red Flute',300,0,0,0,0,30,0,31,67,0,0,1,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4189 (68,'Black Flute',400,0,50,0,0,30,0,31,0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4190 (69,'White Flute',500,0,150,0,0,30,0,31,0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4191 (70,'Shoal Salt',20,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4192 (71,'Shoal Shell',20,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4193 (72,'Red Shard',200,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4194 (73,'Blue Shard',200,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4195 (74,'Yellow Shard',200,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4196 (75,'Green Shard',200,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4197 (76,'Super Repel',500,0,200,0,0,30,0,31,0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4198 (77,'Max Repel',700,0,250,0,0,30,0,31,0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4199 (78,'Escape Rope',550,0,0,0,0,30,0,31,0,21,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4200 (79,'Repel',350,0,100,0,0,30,0,31,0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4201 (80,'Sun Stone',2100,0,0,0,0,30,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4202 (81,'Moon Stone',2100,0,0,0,0,30,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4203 (82,'Fire Stone',2100,0,0,0,0,30,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4204 (83,'Thunderstone',2100,0,0,0,0,30,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4205 (84,'Water Stone',2100,0,0,0,0,30,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4206 (85,'Leaf Stone',2100,0,0,0,0,30,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4207 (86,'TinyMushroom',500,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4208 (87,'Big Mushroom',5000,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4209 (88,'Pearl',1400,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4210 (89,'Big Pearl',7500,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4211 (90,'Stardust',2000,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4212 (91,'Star Piece',9800,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4213 (92,'Nugget',10000,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4214 (93,'Heart Scale',100,0,0,0,0,30,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4215 (94,'Honey',100,0,0,0,0,30,0,31,0,14,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4216 (95,'Growth Mulch',200,0,0,0,0,30,0,31,0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4217 (96,'Damp Mulch',200,0,0,0,0,30,0,31,0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4218 (97,'Stable Mulch',200,0,0,0,0,30,0,31,0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4219 (98,'Gooey Mulch',200,0,0,0,0,30,0,31,0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4220 (99,'Root Fossil',1000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4221 (100,'Claw Fossil',1000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4222 (101,'Helix Fossil',1000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4223 (102,'Dome Fossil',1000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4224 (103,'Old Amber',1000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4225 (104,'Armor Fossil',1000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4226 (105,'Skull Fossil',1000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4227 (106,'Rare Bone',10000,0,0,0,0,100,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4228 (107,'Shiny Stone',2100,0,0,0,0,80,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4229 (108,'Dusk Stone',2100,0,0,0,0,80,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4230 (109,'Dawn Stone',2100,0,0,0,0,80,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4231 (110,'Oval Stone',2100,0,0,0,0,80,0,31,0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4232 (111,'Odd Keystone',2100,0,0,0,0,80,0,31,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4233 (135,'Adamant Orb',10000,2,20,0,0,60,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4234 (136,'Lustrous Orb',10000,3,20,0,0,60,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4235 (137,'Grass Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4236 (138,'Flame Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4237 (139,'Bubble Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4238 (140,'Bloom Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4239 (141,'Tunnel Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4240 (142,'Steel Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4241 (143,'Heart Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4242 (144,'Snow Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4243 (145,'Space Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4244 (146,'Air Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4245 (147,'Mosaic Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4246 (148,'Brick Mail',50,0,0,0,0,0,0,159,2,7,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4247 (149,'Cheri Berry',20,4,0,1,1,10,60,10,66,8,0,1,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4248 (150,'Chesto Berry',20,5,0,2,2,10,60,11,66,8,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4249 (151,'Pecha Berry',20,6,0,3,3,10,60,13,66,8,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4250 (152,'Rawst Berry',20,7,0,4,4,10,60,12,66,8,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4251 (153,'Aspear Berry',20,8,0,5,5,10,60,15,66,8,0,1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4252 (154,'Leppa Berry',20,9,10,6,6,10,60,1,130,8,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0), 
    4253 (155,'Oran Berry',20,1,10,7,7,10,60,3,34,8,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,10,0,0,0,0), 
    4254 (156,'Persim Berry',20,10,0,8,8,10,60,4,66,8,0,1,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4255 (157,'Lum Berry',20,11,0,9,9,10,60,2,66,8,0,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4256 (158,'Sitrus Berry',20,12,25,10,10,10,60,14,34,8,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,253,0,0,0,0), 
    4257 (159,'Figy Berry',20,13,8,11,11,10,60,6,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4258 (160,'Wiki Berry',20,14,8,12,12,10,60,5,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4259 (161,'Mago Berry',20,15,8,13,13,10,60,7,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4260 (162,'Aguav Berry',20,16,8,14,14,10,60,16,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4261 (163,'Iapapa Berry',20,17,8,15,15,10,60,17,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4262 (164,'Razz Berry',20,0,0,0,0,10,60,8,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4263 (165,'Bluk Berry',20,0,0,0,0,10,70,10,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4264 (166,'Nanab Berry',20,0,0,0,0,10,70,11,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4265 (167,'Wepear Berry',20,0,0,0,0,10,70,13,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4266 (168,'Pinap Berry',20,0,0,0,0,10,70,12,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4267 (169,'Pomeg Berry',20,0,0,0,0,10,70,15,2,8,0,1,0,0,0,0,0,0,8,14,-10,0,0,0,0,0,0,0,10,5,2), 
    4268 (170,'Kelpsy Berry',20,0,0,0,0,10,70,1,2,8,0,1,0,0,0,0,0,0,16,14,0,-10,0,0,0,0,0,0,10,5,2), 
    4269 (171,'Qualot Berry',20,0,0,0,0,10,70,3,2,8,0,1,0,0,0,0,0,0,32,14,0,0,-10,0,0,0,0,0,10,5,2), 
    4270 (172,'Hondew Berry',20,0,0,0,0,10,70,4,2,8,0,1,0,0,0,0,0,0,128,14,0,0,0,0,-10,0,0,0,10,5,2), 
    4271 (173,'Grepa Berry',20,0,0,0,0,10,70,2,2,8,0,1,0,0,0,0,0,0,0,15,0,0,0,0,0,-10,0,0,10,5,2), 
    4272 (174,'Tamato Berry',20,0,0,0,0,10,70,14,2,8,0,1,0,0,0,0,0,0,64,14,0,0,0,-10,0,0,0,0,10,5,2), 
    4273 (175,'Cornn Berry',20,0,0,0,0,10,70,6,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4274 (176,'Magost Berry',20,0,0,0,0,10,70,5,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4275 (177,'Rabuta Berry',20,0,0,0,0,10,70,7,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4276 (178,'Nomel Berry',20,0,0,0,0,10,70,16,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4277 (179,'Spelon Berry',20,0,0,0,0,10,70,17,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4278 (180,'Pamtre Berry',20,0,0,0,0,10,70,8,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4279 (181,'Watmel Berry',20,0,0,0,0,10,80,10,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4280 (182,'Durin Berry',20,0,0,0,0,10,80,11,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4281 (183,'Belue Berry',20,0,0,0,0,10,80,13,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4282 (184,'Occa Berry',20,18,0,0,0,10,60,10,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4283 (185,'Passho Berry',20,19,0,0,0,10,60,11,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4284 (186,'Wacan Berry',20,20,0,0,0,10,60,13,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4285 (187,'Rindo Berry',20,21,0,0,0,10,60,12,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4286 (188,'Yache Berry',20,22,0,0,0,10,60,15,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4287 (189,'Chople Berry',20,23,0,0,0,10,60,1,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4288 (190,'Kebia Berry',20,24,0,0,0,10,60,3,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4289 (191,'Shuca Berry',20,25,0,0,0,10,60,4,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4290 (192,'Coba Berry',20,26,0,0,0,10,60,2,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4291 (193,'Payapa Berry',20,27,0,0,0,10,60,14,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4292 (194,'Tanga Berry',20,28,0,0,0,10,60,6,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4293 (195,'Charti Berry',20,29,0,0,0,10,60,5,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4294 (196,'Kasib Berry',20,30,0,0,0,10,60,7,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4295 (197,'Haban Berry',20,31,0,0,0,10,60,16,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4296 (198,'Colbur Berry',20,32,0,0,0,10,60,17,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4297 (199,'Babiri Berry',20,33,0,0,0,10,60,8,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4298 (200,'Chilan Berry',20,34,0,0,0,10,60,0,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4299 (201,'Liechi Berry',20,35,4,16,16,10,80,12,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4300 (202,'Ganlon Berry',20,36,4,17,17,10,80,15,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4301 (203,'Salac Berry',20,37,4,18,18,10,80,1,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4302 (204,'Petaya Berry',20,38,4,19,19,10,80,3,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4303 (205,'Apicot Berry',20,39,4,20,20,10,80,4,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4304 (206,'Lansat Berry',20,40,4,21,21,10,80,2,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4305 (207,'Starf Berry',20,41,4,22,22,10,80,14,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4306 (208,'Enigma Berry',20,42,4,0,0,10,80,6,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4307 (209,'Micle Berry',20,43,4,23,23,10,80,5,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4308 (210,'Custap Berry',20,44,4,0,0,10,80,7,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4309 (211,'Jaboca Berry',20,45,8,0,0,10,80,16,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4310 (212,'Rowap Berry',20,46,8,0,0,10,80,17,2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4311 (213,'BrightPowder',10,47,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4312 (214,'White Herb',100,48,0,0,24,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4313 (215,'Macho Brace',3000,49,0,0,0,60,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4314 (216,'Exp. Share',3000,50,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4315 (217,'Quick Claw',100,51,20,0,0,80,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4316 (218,'Soothe Bell',100,52,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4317 (219,'Mental Herb',100,53,0,0,25,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4318 (220,'Choice Band',100,54,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4319 (221,'King’s Rock',100,55,10,0,26,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4320 (222,'SilverPowder',100,56,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4321 (223,'Amulet Coin',100,57,10,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4322 (224,'Cleanse Tag',200,58,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4323 (225,'Soul Dew',200,59,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4324 (226,'DeepSeaTooth',200,60,0,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4325 (227,'DeepSeaScale',200,61,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4326 (228,'Smoke Ball',200,62,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4327 (229,'Everstone',200,63,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4328 (230,'Focus Band',200,64,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4329 (231,'Lucky Egg',200,65,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4330 (232,'Scope Lens',200,66,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4331 (233,'Metal Coat',100,67,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4332 (234,'Leftovers',200,68,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4333 (235,'Dragon Scale',2100,69,10,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4334 (236,'Light Ball',100,70,0,0,27,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4335 (237,'Soft Sand',100,71,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4336 (238,'Hard Stone',100,72,20,0,0,100,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4337 (239,'Miracle Seed',100,73,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4338 (240,'BlackGlasses',100,74,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4339 (241,'Black Belt',100,75,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4340 (242,'Magnet',100,76,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4341 (243,'Mystic Water',100,77,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4342 (244,'Sharp Beak',100,78,20,0,0,50,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4343 (245,'Poison Barb',100,79,20,0,28,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4344 (246,'NeverMeltIce',100,80,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4345 (247,'Spell Tag',100,81,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4346 (248,'TwistedSpoon',100,82,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4347 (249,'Charcoal',9800,83,20,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4348 (250,'Dragon Fang',100,84,20,0,0,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4349 (251,'Silk Scarf',100,85,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4350 (252,'Up-Grade',2100,86,0,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4351 (253,'Shell Bell',200,87,8,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4352 (254,'Sea Incense',9600,77,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4353 (255,'Lax Incense',9600,47,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4354 (256,'Lucky Punch',10,88,0,0,0,40,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4355 (257,'Metal Powder',10,89,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4356 (258,'Thick Club',500,90,0,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4357 (259,'Stick',200,91,0,0,0,60,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4358 (260,'Red Scarf',100,0,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4359 (261,'Blue Scarf',100,0,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4360 (262,'Pink Scarf',100,0,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4361 (263,'Green Scarf',100,0,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4362 (264,'Yellow Scarf',100,0,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4363 (265,'Wide Lens',200,92,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4364 (266,'Muscle Band',200,93,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4365 (267,'Wise Glasses',200,94,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4366 (268,'Expert Belt',200,95,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4367 (269,'Light Clay',200,96,3,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4368 (270,'Life Orb',200,97,30,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4369 (271,'Power Herb',100,98,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4370 (272,'Toxic Orb',100,99,0,0,29,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4371 (273,'Flame Orb',100,100,0,0,30,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4372 (274,'Quick Powder',10,101,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4373 (275,'Focus Sash',200,102,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4374 (276,'Zoom Lens',200,103,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4375 (277,'Metronome',200,104,10,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4376 (278,'Iron Ball',200,105,0,0,0,130,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4377 (279,'Lagging Tail',200,106,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4378 (280,'Destiny Knot',200,107,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4379 (281,'Black Sludge',200,108,16,0,0,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4380 (282,'Icy Rock',200,109,3,0,0,40,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4381 (283,'Smooth Rock',200,110,3,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4382 (284,'Heat Rock',200,111,3,0,0,60,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4383 (285,'Damp Rock',200,112,3,0,0,60,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4384 (286,'Grip Claw',200,113,0,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4385 (287,'Choice Scarf',200,114,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4386 (288,'Sticky Barb',200,115,8,0,0,80,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4387 (289,'Power Bracer',3000,116,4,0,0,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4388 (290,'Power Belt',3000,117,4,0,0,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4389 (291,'Power Lens',3000,118,4,0,0,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4390 (292,'Power Band',3000,119,4,0,0,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4391 (293,'Power Anklet',3000,120,4,0,0,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4392 (294,'Power Weight',3000,121,4,0,0,70,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4393 (295,'Shed Shell',100,122,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4394 (296,'Big Root',200,123,30,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4395 (297,'Choice Specs',200,124,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4396 (298,'Flame Plate',1000,125,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4397 (299,'Splash Plate',1000,126,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4398 (300,'Zap Plate',1000,127,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4399 (301,'Meadow Plate',1000,128,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4400 (302,'Icicle Plate',1000,129,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4401 (303,'Fist Plate',1000,130,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4402 (304,'Toxic Plate',1000,131,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4403 (305,'Earth Plate',1000,132,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4404 (306,'Sky Plate',1000,133,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4405 (307,'Mind Plate',1000,134,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4406 (308,'Insect Plate',1000,135,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4407 (309,'Stone Plate',1000,136,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4408 (310,'Spooky Plate',1000,137,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4409 (311,'Draco Plate',1000,138,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4410 (312,'Dread Plate',1000,139,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4411 (313,'Iron Plate',1000,140,20,0,0,90,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4412 (314,'Odd Incense',9600,82,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4413 (315,'Rock Incense',9600,72,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4414 (316,'Full Incense',9600,106,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4415 (317,'Wave Incense',9600,77,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4416 (318,'Rose Incense',9600,73,20,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4417 (319,'Luck Incense',9600,57,10,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4418 (320,'Pure Incense',9600,58,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4419 (321,'Protector',2100,141,0,0,0,80,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4420 (322,'Electirizer',2100,142,0,0,0,80,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4421 (323,'Magmarizer',2100,143,0,0,0,80,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4422 (324,'Dubious Disc',2100,144,0,0,0,50,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4423 (325,'Reaper Cloth',2100,145,0,0,0,10,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4424 (326,'Razor Claw',2100,66,0,0,0,80,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4425 (327,'Razor Fang',2100,55,10,0,26,30,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4426 (328,'TM01',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4427 (329,'TM02',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4428 (330,'TM03',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4429 (331,'TM04',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4430 (332,'TM05',1000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4431 (333,'TM06',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4432 (334,'TM07',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4433 (335,'TM08',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4434 (336,'TM09',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4435 (337,'TM10',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4436 (338,'TM11',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4437 (339,'TM12',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4438 (340,'TM13',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4439 (341,'TM14',5500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4440 (342,'TM15',7500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4441 (343,'TM16',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4442 (344,'TM17',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4443 (345,'TM18',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4444 (346,'TM19',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4445 (347,'TM20',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4446 (348,'TM21',1000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4447 (349,'TM22',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4448 (350,'TM23',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4449 (351,'TM24',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4450 (352,'TM25',5500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4451 (353,'TM26',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4452 (354,'TM27',1000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4453 (355,'TM28',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4454 (356,'TM29',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4455 (357,'TM30',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4456 (358,'TM31',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4457 (359,'TM32',1000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4458 (360,'TM33',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4459 (361,'TM34',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4460 (362,'TM35',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4461 (363,'TM36',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4462 (364,'TM37',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4463 (365,'TM38',5500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4464 (366,'TM39',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4465 (367,'TM40',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4466 (368,'TM41',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4467 (369,'TM42',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4468 (370,'TM43',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4469 (371,'TM44',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4470 (372,'TM45',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4471 (373,'TM46',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4472 (374,'TM47',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4473 (375,'TM48',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4474 (376,'TM49',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4475 (377,'TM50',5500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4476 (378,'TM51',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4477 (379,'TM52',5500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4478 (380,'TM53',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4479 (381,'TM54',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4480 (382,'TM55',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4481 (383,'TM56',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4482 (384,'TM57',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4483 (385,'TM58',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4484 (386,'TM59',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4485 (387,'TM60',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4486 (388,'TM61',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4487 (389,'TM62',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4488 (390,'TM63',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4489 (391,'TM64',7500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4490 (392,'TM65',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4491 (393,'TM66',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4492 (394,'TM67',1000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4493 (395,'TM68',7500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4494 (396,'TM69',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4495 (397,'TM70',1000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4496 (398,'TM71',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4497 (399,'TM72',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4498 (400,'TM73',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4499 (401,'TM74',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4500 (402,'TM75',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4501 (403,'TM76',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4502 (404,'TM77',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4503 (405,'TM78',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4504 (406,'TM79',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4505 (407,'TM80',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4506 (408,'TM81',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4507 (409,'TM82',1000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4508 (410,'TM83',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4509 (411,'TM84',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4510 (412,'TM85',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4511 (413,'TM86',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4512 (414,'TM87',1500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4513 (415,'TM88',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4514 (416,'TM89',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4515 (417,'TM90',2000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4516 (418,'TM91',3000,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4517 (419,'TM92',5500,0,0,0,0,0,0,159,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4518 (420,'HM01',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4519 (421,'HM02',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4520 (422,'HM03',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4521 (423,'HM04',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4522 (424,'HM05',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4523 (425,'HM06',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4524 (426,'HM07',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4525 (427,'HM08',0,0,0,0,0,0,0,191,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4526 (428,'Explorer Kit',0,0,0,0,0,0,0,255,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4527 (429,'Loot Sack',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4528 (430,'Rule Book',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4529 (431,'Poké Radar',0,0,0,0,0,0,0,255,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4530 (432,'Point Card',0,0,0,0,0,0,0,255,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4531 (433,'Journal',0,0,0,0,0,0,0,255,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4532 (434,'Seal Case',0,0,0,0,0,0,0,255,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4533 (435,'Fashion Case',0,0,0,0,0,0,0,255,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4534 (436,'Seal Bag',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4535 (437,'Pal Pad',0,0,0,0,0,0,0,255,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4536 (438,'Works Key',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4537 (439,'Old Charm',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4538 (440,'Galactic Key',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4539 (441,'Red Chain',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4540 (442,'Town Map',0,0,0,0,0,0,0,255,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4541 (443,'Vs. Seeker',0,0,0,0,0,0,0,255,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4542 (444,'Coin Case',0,0,0,0,0,0,0,255,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4543 (445,'Old Rod',0,0,0,0,0,0,0,255,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4544 (446,'Good Rod',0,0,0,0,0,0,0,255,3,17,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4545 (447,'Super Rod',0,0,0,0,0,0,0,255,3,18,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4546 (448,'Sprayduck',0,0,0,0,0,0,0,255,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4547 (449,'Poffin Case',0,0,0,0,0,0,0,255,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4548 (450,'Bicycle',0,0,0,0,0,0,0,255,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4549 (451,'Suite Key',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4550 (452,'Oak’s Letter',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4551 (453,'Lunar Wing',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4552 (454,'Member Card',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4553 (455,'Azure Flute',0,0,0,0,0,0,0,255,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4554 (456,'S.S. Ticket',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4555 (457,'Contest Pass',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4556 (458,'Magma Stone',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4557 (459,'Parcel',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4558 (460,'Coupon 1',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4559 (461,'Coupon 2',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4560 (462,'Coupon 3',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4561 (463,'Storage Key',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), 
    4562 (464,'SecretPotion',0,0,0,0,0,0,0,191,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); 
     4124INSERT INTO items VALUES (1,1,'Master Ball',0,0,0,0,0,0,0,'31',9,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The best Ball with the ultimate level of performance. It will catch any wild Pokémon without fail.'), 
     4125(2,2,'Ultra Ball',1200,0,0,0,0,0,0,'31',9,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An ultra-performance Ball that provides a higher Pokémon catch rate than a Great Ball.'), 
     4126(3,3,'Great Ball',600,0,0,0,0,0,0,'31',9,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A good, high-performance Ball that provides a higher Pokémon catch rate than a standard Poké Ball.'), 
     4127(4,4,'Poke Ball',200,0,0,0,0,0,0,'31',9,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A device for catching wild Pokémon. It is thrown like a ball at the target. It is designed as a capsule system.'), 
     4128(5,5,'Safari Ball',0,0,0,0,0,0,0,'31',9,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A special Poké Ball that is used only in the Great Marsh. It is decorated in a camouflage pattern.'), 
     4129(6,6,'Net Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat different Poké Ball that works especially well on Water- and Bug-type Pokémon.'), 
     4130(7,7,'Dive Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat different Poké Ball that works especially well on Pokémon that live in the sea.'), 
     4131(8,8,'Nest Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat different Poké Ball that works especially well on weaker Pokémon in the wild.'), 
     4132(9,9,'Repeat Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat different Poké Ball that works especially well on Pokémon species that were previously caught.'), 
     4133(10,10,'Timer Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat different Ball that becomes progressively better the more turns there are in a battle.'), 
     4134(11,11,'Luxury Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A comfortable Poké Ball that makes a caught wild Pokémon quickly grow friendly.'), 
     4135(12,12,'Premier Ball',200,0,0,0,0,0,0,'31',9,0,1,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat rare Poké Ball that has been specially made to commemorate an event of some sort.'), 
     4136(13,13,'Dusk Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat different Poké Ball that makes it easier to catch wild Pokémon at night or in dark places like caves.'), 
     4137(14,14,'Heal Ball',300,0,0,0,0,0,0,'31',9,0,1,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A remedial Poké Ball that restores the caught Pokémon\'s HP and eliminates any status problem.'), 
     4138(15,15,'Quick Ball',1000,0,0,0,0,0,0,'31',9,0,1,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat different Poké Ball that provides a better catch rate if it is used at the start of a wild encounter.'), 
     4139(16,16,'Cherish Ball',200,0,0,0,0,0,0,'31',9,0,1,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A quite rare Poké Ball that has been specially crafted to commemorate an occasion of some sort.'), 
     4140(17,17,'Potion',300,0,20,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,20,0,0,0,0,'A spray-type medicine for wounds. It restores the HP of one Pokémon by just 20 points.'), 
     4141(18,18,'Antidote',100,0,0,0,0,30,0,'159',64,1,2,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A spray-type medicine. It lifts the effect of poison from one Pokémon.'), 
     4142(19,19,'Burn Heal',250,0,0,0,0,30,0,'159',64,1,2,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A spray-type medicine. It heals a single Pokémon that is suffering from a burn.'), 
     4143(20,20,'Ice Heal',250,0,0,0,0,30,0,'159',64,1,2,1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A spray-type medicine. It defrosts a Pokémon that has been frozen solid.'), 
     4144(21,21,'Awakening',250,0,0,0,0,30,0,'159',64,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A spray-type medicine. It awakens a Pokémon from the clutches of sleep.'), 
     4145(22,22,'Parlyz Heal',200,0,0,0,0,30,0,'159',64,1,2,1,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A spray-type medicine. It eliminates paralysis from a single Pokémon.'), 
     4146(23,23,'Full Restore',3000,0,255,0,0,30,0,'159',96,1,2,1,0,63,0,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0,'A medicine that fully restores the HP and heals any status problems of a single Pokémon.'), 
     4147(24,24,'Max Potion',2500,0,255,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0,'A spray-type medicine for wounds. It completely restores the HP of a single Pokémon.'), 
     4148(25,25,'Hyper Potion',1200,0,200,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,200,0,0,0,0,'A spray-type medicine for wounds. It restores the HP of one Pokémon by 200 points.'), 
     4149(26,26,'Super Potion',700,0,50,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,50,0,0,0,0,'A spray-type medicine for wounds. It restores the HP of one Pokémon by 50 points.'), 
     4150(27,27,'Full Heal',600,0,0,0,0,30,0,'159',64,1,2,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A spray-type medicine. It heals all the status problems of a single Pokémon.'), 
     4151(28,28,'Revive',1500,0,0,0,0,30,0,'159',64,1,2,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,254,0,0,0,0,'A medicine that revives a fainted Pokémon. It restores half the Pokémon\'s maximum HP.'), 
     4152(29,29,'Max Revive',4000,0,0,0,0,30,0,'159',64,1,2,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0,'A medicine that revives a fainted Pokémon. It fully restores the Pokémon\'s HP.'), 
     4153(30,30,'Fresh Water',200,0,50,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,50,0,0,0,0,'Water with a high mineral content. It restores the HP of one Pokémon by 50 points.'), 
     4154(31,31,'Soda Pop',300,0,60,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,60,0,0,0,0,'A fizzy soda drink. It restores the HP of one Pokémon by 60 points.'), 
     4155(32,32,'Lemonade',350,0,80,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,80,0,0,0,0,'A very sweet drink. It restores the HP of one Pokémon by 80 points.'), 
     4156(33,33,'Moomoo Milk',500,0,100,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,100,0,0,0,0,'Milk with a very high nutrition content. It restores the HP of one Pokémon by 100 points.'), 
     4157(34,34,'EnergyPowder',500,0,0,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,14,0,0,0,0,0,0,50,0,-5,-5,-10,'A very bitter medicine powder. It restores the HP of one Pokémon by 50 points.'), 
     4158(35,35,'Energy Root',800,0,0,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,14,0,0,0,0,0,0,200,0,-10,-10,-15,'A very bitter root. It restores the HP of one Pokémon by 200 points.'), 
     4159(36,36,'Heal Powder',450,0,0,0,0,30,0,'159',64,1,2,1,0,63,0,0,0,0,0,14,0,0,0,0,0,0,0,0,-5,-5,-10,'A very bitter medicine powder. It heals all the status problems of a single Pokémon.'), 
     4160(37,37,'Revival Herb',2800,0,0,0,0,30,0,'159',64,1,2,1,0,0,1,0,0,0,4,14,0,0,0,0,0,0,255,0,-15,-15,-20,'A very bitter medicinal herb. It revives a fainted Pokémon, fully restoring its HP.'), 
     4161(38,38,'Ether',1200,0,10,0,0,30,0,'159',128,1,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,'It restores the PP of a Pokémon\'s selected move by a maximum of 10 points.'), 
     4162(39,39,'Max Ether',2000,0,255,0,0,30,0,'159',128,1,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,'It fully restores the PP of a single selected move that has been learned by the target Pokémon.'), 
     4163(40,40,'Elixir',3000,0,10,0,0,30,0,'159',128,1,2,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,'It restores the PP of all the moves learned by the targeted Pokémon by 10 points each.'), 
     4164(41,41,'Max Elixir',4500,0,255,0,0,30,0,'159',128,1,2,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,127,0,0,0,'It fully restores the PP of all the moves learned by the targeted Pokémon.'), 
     4165(42,42,'Lava Cookie',200,0,0,0,0,30,0,'159',64,1,2,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Lavaridge Town\'s local specialty. It heals all the status problems of one Pokémon.'), 
     4166(43,43,'Berry Juice',100,1,20,0,0,30,0,'159',32,1,2,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,20,0,0,0,0,'A 100% pure juice made of Berries. It restores the HP of one Pokémon by just 20 points.'), 
     4167(44,44,'Sacred Ash',200,0,0,0,0,30,0,'159',0,1,0,1,0,0,3,0,0,0,4,0,0,0,0,0,0,0,255,0,0,0,0,'It revives all fainted Pokémon. In doing so, it also fully restores their HP.'), 
     4168(45,45,'HP Up',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,0,8,14,10,0,0,0,0,0,0,0,5,3,2,'A nutritious drink for Pokémon. It raises the base HP of a single Pokémon.'), 
     4169(46,46,'Protein',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,0,16,14,0,10,0,0,0,0,0,0,5,3,2,'A nutritious drink for Pokémon. It raises the base Attack stat of a single Pokémon.'), 
     4170(47,47,'Iron',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,0,32,14,0,0,10,0,0,0,0,0,5,3,2,'A nutritious drink for Pokémon. It raises the base Defense stat of a single Pokémon.'), 
     4171(48,48,'Carbos',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,0,64,14,0,0,0,10,0,0,0,0,5,3,2,'A nutritious drink for Pokémon. It raises the base Speed stat of a single Pokémon.'), 
     4172(49,49,'Calcium',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,0,128,14,0,0,0,0,10,0,0,0,5,3,2,'A nutritious drink for Pokémon. It raises the base Sp. Atk (Special Attack) stat of a single Pokémon.'), 
     4173(50,50,'Rare Candy',4800,0,0,0,0,30,0,'159',0,1,0,1,0,0,5,0,0,0,0,14,0,0,0,0,0,0,0,0,5,3,2,'A candy that is packed with energy. It raises the level of a single Pokémon by one.'), 
     4174(51,51,'PP Up',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,64,0,14,0,0,0,0,0,0,0,0,5,3,2,'It slightly raises the maximum PP of a selected move that has been learned by the target Pokémon.'), 
     4175(52,52,'Zinc',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,0,0,15,0,0,0,0,0,10,0,0,5,3,2,'A nutritious drink for Pokémon. It raises the base Sp. Def (Special Defense) stat of a single Pokémon.'), 
     4176(53,53,'PP Max',9800,0,0,0,0,30,0,'159',0,1,0,1,0,0,0,0,0,128,0,14,0,0,0,0,0,0,0,0,5,3,2,'It maximally raises the top PP of a selected move that has been learned by the target Pokémon.'), 
     4177(54,54,'Old Gateau',200,0,0,0,0,30,0,'159',64,1,2,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Old Chateau\'s hidden specialty. It heals all the status problems of a single Pokémon.'), 
     4178(55,55,'Guard Spec.',700,0,0,0,0,30,0,'31',19,0,0,1,0,128,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0,'An item that prevents stat reduction among the Trainer\'s party Pokémon for five turns after use.'), 
     4179(56,56,'Dire Hit',650,0,0,0,0,30,0,'31',19,0,0,1,0,0,0,0,0,16,0,6,0,0,0,0,0,0,0,0,1,1,0,'An item that raises the critical-hit ratio of a Pokémon in battle. It wears off if the Pokémon is withdrawn.'), 
     4180(57,57,'X Attack',500,0,0,0,0,30,0,'31',19,0,0,1,0,0,16,0,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0,'An item that raises the Attack stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn.'), 
     4181(58,58,'X Defend',550,0,0,0,0,30,0,'31',19,0,0,1,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0,'An item that raises the Defense stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn.'), 
     4182(59,59,'X Speed',350,0,0,0,0,30,0,'31',19,0,0,1,0,0,0,0,16,0,0,6,0,0,0,0,0,0,0,0,1,1,0,'An item that raises the Speed stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn.'), 
     4183(60,60,'X Accuracy',950,0,0,0,0,30,0,'31',19,0,0,1,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,1,1,0,'An item that raises the accuracy of a Pokémon in battle. It wears off if the Pokémon is withdrawn.'), 
     4184(61,61,'X Special',350,0,0,0,0,30,0,'31',19,0,0,1,0,0,0,16,0,0,0,6,0,0,0,0,0,0,0,0,1,1,0,'An item that raises the Sp. Atk stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn.'), 
     4185(62,62,'X Sp.',350,0,0,0,0,30,0,'31',19,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item that raises the Sp. Def stat of a Pokémon in battle. It wears off if the Pokémon is withdrawn.'), 
     4186(63,63,'Poké Doll',1000,0,0,0,0,30,0,'31',19,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A doll that attracts Pokémon. Use it to flee from any battle with a wild Pokémon.'), 
     4187(64,64,'Fluffy Tail',1000,0,0,0,0,30,0,'31',19,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item that attracts Pokémon. Use it to flee from any battle with a wild Pokémon.'), 
     4188(65,65,'Blue Flute',100,0,0,0,0,30,0,'31',67,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A blue flute made from blown glass. Its melody awakens a single Pokémon from sleep.'), 
     4189(66,66,'Yellow Flute',200,0,0,0,0,30,0,'31',67,0,0,1,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A yellow flute made from blown glass. Its melody snaps a single Pokémon out of confusion.'), 
     4190(67,67,'Red Flute',300,0,0,0,0,30,0,'31',67,0,0,1,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A red flute made from blown glass. Its melody snaps a single Pokémon out of infatuation.'), 
     4191(68,68,'Black Flute',400,0,50,0,0,30,0,'31',0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A black flute made from blown glass. Its melody makes wild Pokémon less likely to appear.'), 
     4192(69,69,'White Flute',500,0,150,0,0,30,0,'31',0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A white flute made from blown glass. Its melody makes wild Pokémon more likely to appear.'), 
     4193(70,70,'Shoal Salt',20,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Pure salt that was discovered deep inside the Shoal Cave. It is extremely salty.'), 
     4194(71,71,'Shoal Shell',20,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A pretty seashell that was found deep inside the Shoal Cave. It is striped in blue and white.'), 
     4195(72,72,'Red Shard',200,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A small red shard. It appears to be from some sort of implement made long ago.'), 
     4196(73,73,'Blue Shard',200,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A small blue shard. It appears to be from some sort of implement made long ago.'), 
     4197(74,74,'Yellow Shard',200,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A small yellow shard. It appears to be from some sort of implement made long ago.'), 
     4198(75,75,'Green Shard',200,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A small green shard. It appears to be from some sort of implement made long ago.'), 
     4199(76,76,'Super Repel',500,0,200,0,0,30,0,'31',0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item that prevents weak wild Pokémon from appearing for 200 steps after its use.'), 
     4200(77,77,'Max Repel',700,0,250,0,0,30,0,'31',0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item that prevents weak wild Pokémon from appearing for 250 steps after its use.'), 
     4201(78,78,'Escape Rope',550,0,0,0,0,30,0,'31',0,21,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A long, durable rope. Use it to escape instantly from a cave or a dungeon.'), 
     4202(79,79,'Repel',350,0,100,0,0,30,0,'31',0,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item that prevents weak wild Pokémon from appearing for 100 steps after its use.'), 
     4203(80,80,'Sun Stone',2100,0,0,0,0,30,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It is as red as the sun.'), 
     4204(81,81,'Moon Stone',2100,0,0,0,0,30,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It is as black as the night sky.'), 
     4205(82,82,'Fire Stone',2100,0,0,0,0,30,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It is colored orange.'), 
     4206(83,83,'Thunderstone',2100,0,0,0,0,30,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It has a thunderbolt pattern.'), 
     4207(84,84,'Water Stone',2100,0,0,0,0,30,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It is a clear, light blue.'), 
     4208(85,85,'Leaf Stone',2100,0,0,0,0,30,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It has a leaf pattern.'), 
     4209(86,86,'TinyMushroom',500,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A small and rare mushroom. It is quite popular among certain maniacal fan segments.'), 
     4210(87,87,'Big Mushroom',5000,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A large and rare mushroom. It is very popular among certain maniacal fan segments.'), 
     4211(88,88,'Pearl',1400,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A somewhat-small pearl that sparkles in a pretty silver color. It can be sold cheaply to shops.'), 
     4212(89,89,'Big Pearl',7500,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A quite-large pearl that sparkles in a pretty silver color. It can be sold at a high price to shops.'), 
     4213(90,90,'Stardust',2000,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Lovely, red-colored sand with a loose, silky feel. It can be sold at a high price to shops.'), 
     4214(91,91,'Star Piece',9800,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A shard of a pretty gem that sparkles in a red color. It can be sold at a high price to shops.'), 
     4215(92,92,'Nugget',10000,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A nugget of pure gold that gives off a lustrous gleam. It can be sold at a high price to shops.'), 
     4216(93,93,'Heart Scale',100,0,0,0,0,30,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A pretty, heart-shaped scale that is extremely rare. It glows faintly in the colors of the rainbow.'), 
     4217(94,94,'Honey',100,0,0,0,0,30,0,'31',0,14,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A sweet honey with a lush aroma that attracts wild Pokémon when it is used in grass, caves, or on special trees.'), 
     4218(95,95,'Growth Mulch',200,0,0,0,0,30,0,'31',0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A plant fertilizer spread on soft soil. It speeds up the growth of Berries. However, it also dries the soil faster.'), 
     4219(96,96,'Damp Mulch',200,0,0,0,0,30,0,'31',0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A plant fertilizer spread on soft soil. It slows the growth of Berries and causes the soil to dry slower.'), 
     4220(97,97,'Stable Mulch',200,0,0,0,0,30,0,'31',0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A plant fertilizer spread on soft soil. It extends the time ripened Berries remain on their plants before falling.'), 
     4221(98,98,'Gooey Mulch',200,0,0,0,0,30,0,'31',0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A plant fertilizer spread on soft soil. It ups the number of times new plants grow where mature plants withered.'), 
     4222(99,99,'Root Fossil',1000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a plant root.'), 
     4223(100,100,'Claw Fossil',1000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a claw.'), 
     4224(101,101,'Helix Fossil',1000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a seashell.'), 
     4225(102,102,'Dome Fossil',1000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fossil of an ancient Pokémon that lived in the sea. It appears to be part of a shell.'), 
     4226(103,103,'Old Amber',1000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A piece of amber that contains the genetic material of an ancient Pokémon. It is clear with a reddish tint.'), 
     4227(104,104,'Armor Fossil',1000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a collar.'), 
     4228(105,105,'Skull Fossil',1000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fossil from a prehistoric Pokémon that lived on the land. It appears to be part of a head.'), 
     4229(106,106,'Rare Bone',10000,0,0,0,0,100,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A bone that is extremely valuable for Pokémon archaeology. It can be sold for a high price to shops.'), 
     4230(107,107,'Shiny Stone',2100,0,0,0,0,80,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It shines with a dazzling light.'), 
     4231(108,108,'Dusk Stone',2100,0,0,0,0,80,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It is as dark as dark can be.'), 
     4232(109,109,'Dawn Stone',2100,0,0,0,0,80,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It sparkles like eyes.'), 
     4233(110,110,'Oval Stone',2100,0,0,0,0,80,0,'31',0,20,0,1,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A peculiar stone that makes certain species of Pokémon evolve. It is shaped like an egg.'), 
     4234(111,111,'Odd Keystone',2100,0,0,0,0,80,0,'31',0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A vital item that is needed to keep a stone tower from collapsing. Voices can be heard from it occasionally.'), 
     4235(112,135,'Adamant Orb',10000,2,20,0,0,60,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A brightly gleaming orb to be held by DIALGA. It boosts the power of Dragon- and Steel-type moves.'), 
     4236(113,136,'Lustrous Orb',10000,3,20,0,0,60,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A beautifully glowing orb to be held by PALKIA. It boosts the power of Dragon- and Water-type moves.'), 
     4237(114,137,'Grass Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of a refreshingly green field. Let a Pokémon hold it for delivery.'), 
     4238(115,138,'Flame Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of flames in blazing red. Let a Pokémon hold it for delivery.'), 
     4239(116,139,'Bubble Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of a blue world underwater. Let a Pokémon hold it for delivery.'), 
     4240(117,140,'Bloom Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of pretty floral patterns. Let a Pokémon hold it for delivery.'), 
     4241(118,141,'Tunnel Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of a dimly lit coal mine. Let a Pokémon hold it for delivery.'), 
     4242(119,142,'Steel Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of cool mechanical designs. Let a Pokémon hold it for delivery.'), 
     4243(120,143,'Heart Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of giant heart patterns. Let a Pokémon hold it for delivery.'), 
     4244(121,144,'Snow Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of a chilly, snow-covered world. Let a Pokémon hold it for delivery.'), 
     4245(122,145,'Space Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print depicting the huge expanse of space. Let a Pokémon hold it for delivery.'), 
     4246(123,146,'Air Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of colorful letter sets. Let a Pokémon hold it for delivery.'), 
     4247(124,147,'Mosaic Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of a vivid rainbow pattern. Let a Pokémon hold it for delivery.'), 
     4248(125,148,'Brick Mail',50,0,0,0,0,0,0,'159',2,7,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Stationery featuring a print of a tough-looking brick pattern. Let a Pokémon hold it for delivery.'), 
     4249(126,149,'Cheri Berry',20,4,0,1,1,10,60,'fire',66,8,0,1,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to recover from paralysis.'), 
     4250(127,150,'Chesto Berry',20,5,0,2,2,10,60,'water',66,8,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to recover from sleep.'), 
     4251(128,151,'Pecha Berry',20,6,0,3,3,10,60,'electric',66,8,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to recover from poison.'), 
     4252(129,152,'Rawst Berry',20,7,0,4,4,10,60,'grass',66,8,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to recover from a burn.'), 
     4253(130,153,'Aspear Berry',20,8,0,5,5,10,60,'ice',66,8,0,1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to defrost it. '), 
     4254(131,154,'Leppa Berry',20,9,10,6,6,10,60,'fighting',130,8,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to restore a move\'s PP by 10.'), 
     4255(132,155,'Oran Berry',20,1,10,7,7,10,60,'poison',34,8,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,10,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to heal the user by just 10 HP.'), 
     4256(133,156,'Persim Berry',20,10,0,8,8,10,60,'ground',66,8,0,1,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to recover from confusion.'), 
     4257(134,157,'Lum Berry',20,11,0,9,9,10,60,'flying',66,8,0,1,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to recover from any status problem.'), 
     4258(135,158,'Sitrus Berry',20,12,25,10,10,10,60,'psychic',34,8,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,253,0,0,0,0,'A Poffin ingredient. It may be used or held by a Pokémon to heal the user\'s HP a little.'), 
     4259(136,159,'Figy Berry',20,13,8,11,11,10,60,'bug',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it restores the user\'s HP in a pinch, but may also cause confusion.'), 
     4260(137,160,'Wiki Berry',20,14,8,12,12,10,60,'rock',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it restores the user\'s HP in a pinch, but may also cause confusion.'), 
     4261(138,161,'Mago Berry',20,15,8,13,13,10,60,'ghost',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it restores the user\'s HP in a pinch, but may also cause confusion.'), 
     4262(139,162,'Aguav Berry',20,16,8,14,14,10,60,'dragon',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it restores the user\'s HP in a pinch, but may also cause confusion.'), 
     4263(140,163,'Iapapa Berry',20,17,8,15,15,10,60,'dark',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it restores the user\'s HP in a pinch, but may also cause confusion.'), 
     4264(141,164,'Razz Berry',20,0,0,0,0,10,60,'steel',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Razz Plant.'), 
     4265(142,165,'Bluk Berry',20,0,0,0,0,10,70,'fire',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Bluk Plant.'), 
     4266(143,166,'Nanab Berry',20,0,0,0,0,10,70,'water',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Nanab Plant.'), 
     4267(144,167,'Wepear Berry',20,0,0,0,0,10,70,'electric',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Wepear Plant.'), 
     4268(145,168,'Pinap Berry',20,0,0,0,0,10,70,'grass',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Pinap Plant.'), 
     4269(146,169,'Pomeg Berry',20,0,0,0,0,10,70,'ice',2,8,0,1,0,0,0,0,0,0,8,14,-10,0,0,0,0,0,0,0,10,5,2,'A Poffin ingredient. Using it on a Pokémon makes it more friendly, but it also lowers its base HP.'), 
     4270(147,170,'Kelpsy Berry',20,0,0,0,0,10,70,'fighting',2,8,0,1,0,0,0,0,0,0,16,14,0,-10,0,0,0,0,0,0,10,5,2,'A Poffin ingredient. Using it on a Pokémon makes it more friendly, but it also lowers its base Attack stat.'), 
     4271(148,171,'Qualot Berry',20,0,0,0,0,10,70,'poison',2,8,0,1,0,0,0,0,0,0,32,14,0,0,-10,0,0,0,0,0,10,5,2,'A Poffin ingredient. Using it on a Pokémon makes it more friendly, but it also lowers its base Defense stat.'), 
     4272(149,172,'Hondew Berry',20,0,0,0,0,10,70,'ground',2,8,0,1,0,0,0,0,0,0,128,14,0,0,0,0,-10,0,0,0,10,5,2,'A Poffin ingredient. Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Atk stat.'), 
     4273(150,173,'Grepa Berry',20,0,0,0,0,10,70,'flying',2,8,0,1,0,0,0,0,0,0,0,15,0,0,0,0,0,-10,0,0,10,5,2,'A Poffin ingredient. Using it on a Pokémon makes it more friendly, but it also lowers its base Sp. Def stat.'), 
     4274(151,174,'Tamato Berry',20,0,0,0,0,10,70,'psychic',2,8,0,1,0,0,0,0,0,0,64,14,0,0,0,-10,0,0,0,0,10,5,2,'A Poffin ingredient. Using it on a Pokémon makes it more friendly, but it also lowers its base Speed stat.'), 
     4275(152,175,'Cornn Berry',20,0,0,0,0,10,70,'bug',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Cornn Plant.'), 
     4276(153,176,'Magost Berry',20,0,0,0,0,10,70,'rock',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Magost Plant.'), 
     4277(154,177,'Rabuta Berry',20,0,0,0,0,10,70,'ghost',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Rabuta Plant.'), 
     4278(155,178,'Nomel Berry',20,0,0,0,0,10,70,'dragon',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Nomel Plant.'), 
     4279(156,179,'Spelon Berry',20,0,0,0,0,10,70,'dark',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Spelon Plant.'), 
     4280(157,180,'Pamtre Berry',20,0,0,0,0,10,70,'steel',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Pamtre Plant.'), 
     4281(158,181,'Watmel Berry',20,0,0,0,0,10,80,'fire',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Watmel Plant.'), 
     4282(159,182,'Durin Berry',20,0,0,0,0,10,80,'water',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Durin Plant.'), 
     4283(160,183,'Belue Berry',20,0,0,0,0,10,80,'electric',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. Bury it in soft soil to grow a Belue Plant.'), 
     4284(161,184,'Occa Berry',20,18,0,0,0,10,60,'fire',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Fire-type attack.'), 
     4285(162,185,'Passho Berry',20,19,0,0,0,10,60,'water',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Water-type attack.'), 
     4286(163,186,'Wacan Berry',20,20,0,0,0,10,60,'electric',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Electric-type attack.'), 
     4287(164,187,'Rindo Berry',20,21,0,0,0,10,60,'grass',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Grass-type attack.'), 
     4288(165,188,'Yache Berry',20,22,0,0,0,10,60,'ice',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Ice-type attack.'), 
     4289(166,189,'Chople Berry',20,23,0,0,0,10,60,'fighting',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Fighting-type attack.'), 
     4290(167,190,'Kebia Berry',20,24,0,0,0,10,60,'poison',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Poison-type attack.'), 
     4291(168,191,'Shuca Berry',20,25,0,0,0,10,60,'ground',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Ground-type attack.'), 
     4292(169,192,'Coba Berry',20,26,0,0,0,10,60,'flying',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Flying-type attack.'), 
     4293(170,193,'Payapa Berry',20,27,0,0,0,10,60,'psychic',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Psychic-type attack.'), 
     4294(171,194,'Tanga Berry',20,28,0,0,0,10,60,'bug',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Bug-type attack.'), 
     4295(172,195,'Charti Berry',20,29,0,0,0,10,60,'rock',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Rock-type attack.'), 
     4296(173,196,'Kasib Berry',20,30,0,0,0,10,60,'ghost',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Ghost-type attack.'), 
     4297(174,197,'Haban Berry',20,31,0,0,0,10,60,'dragon',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Dragon-type attack.'), 
     4298(175,198,'Colbur Berry',20,32,0,0,0,10,60,'dark',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Dark-type attack.'), 
     4299(176,199,'Babiri Berry',20,33,0,0,0,10,60,'steel',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s supereffective Steel-type attack.'), 
     4300(177,200,'Chilan Berry',20,34,0,0,0,10,60,'normal',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it weakens a foe\'s Normal-type attack.'), 
     4301(178,201,'Liechi Berry',20,35,4,16,16,10,80,'grass',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it raises its Attack stat in a pinch.'), 
     4302(179,202,'Ganlon Berry',20,36,4,17,17,10,80,'ice',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it raises its Defense stat in a pinch.'), 
     4303(180,203,'Salac Berry',20,37,4,18,18,10,80,'fighting',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it raises its Speed stat in a pinch.'), 
     4304(181,204,'Petaya Berry',20,38,4,19,19,10,80,'poison',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it raises its Sp. Atk stat in a pinch.'), 
     4305(182,205,'Apicot Berry',20,39,4,20,20,10,80,'ground',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it raises its Sp. Def stat in a pinch.'), 
     4306(183,206,'Lansat Berry',20,40,4,21,21,10,80,'flying',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it raises its critical-hit ratio in a pinch.'), 
     4307(184,207,'Starf Berry',20,41,4,22,22,10,80,'psychic',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it sharply raises one of its stats in a pinch.'), 
     4308(185,208,'Enigma Berry',20,42,4,0,0,10,80,'bug',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it restores its HP if it is hit by a foe\'s supereffective attack.'), 
     4309(186,209,'Micle Berry',20,43,4,23,23,10,80,'rock',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it raises the accuracy of a move just once in a pinch.'), 
     4310(187,210,'Custap Berry',20,44,4,0,0,10,80,'ghost',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, it gets to move first just once in a pinch.'), 
     4311(188,211,'Jaboca Berry',20,45,8,0,0,10,80,'dragon',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, and if a foe\'s physical attack lands, the foe also takes damage.'), 
     4312(189,212,'Rowap Berry',20,46,8,0,0,10,80,'dark',2,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Poffin ingredient. If held by a Pokémon, and if a foe\'s special attack lands, the foe also takes damage.'), 
     4313(190,213,'BrightPowder',10,47,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It casts a tricky glare that lowers the opponent\'s accuracy.'), 
     4314(191,214,'White Herb',100,48,0,0,24,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It restores any lowered stat in battle. It can be used only once.'), 
     4315(192,215,'Macho Brace',3000,49,0,0,0,60,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stiff and heavy brace that promotes strong growth but lowers Speed.'), 
     4316(193,216,'Exp. Share',3000,50,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. The holder gets a share of a battle\'s Exp. Points without battling.'), 
     4317(194,217,'Quick Claw',100,51,20,0,0,80,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. A light, sharp claw that lets the bearer move first occasionally.'), 
     4318(195,218,'Soothe Bell',100,52,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a bell with a comforting chime that calms the holder and makes it friendly.'), 
     4319(196,219,'Mental Herb',100,53,0,0,25,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It snaps the holder out of infatuation. It can be used only once.'), 
     4320(197,220,'Choice Band',100,54,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. This headband ups Attack, but allows the use of only one kind of move.'), 
     4321(198,221,'King’s Rock',100,55,10,0,26,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It may cause the foe to flinch when the holder inflicts damage.'), 
     4322(199,222,'SilverPowder',100,56,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a shiny, silver powder that ups the power of Bug-type moves.'), 
     4323(200,223,'Amulet Coin',100,57,10,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It doubles a battle\'s prize money if the holding Pokémon joins in.'), 
     4324(201,224,'Cleanse Tag',200,58,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party.'), 
     4325(202,225,'Soul Dew',200,59,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A wondrous orb to be held by LATIOS or LATIAS. It raises both the Sp. Atk and Sp. Def stats.'), 
     4326(203,226,'DeepSeaTooth',200,60,0,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by CLAMPERL. A fang that gleams a sharp silver, it raises the Sp. Atk stat.'), 
     4327(204,227,'DeepSeaScale',200,61,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by CLAMPERL. A scale that shines a faint pink, it raises the Sp. Def stat.'), 
     4328(205,228,'Smoke Ball',200,62,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It enables the holder to flee from any wild Pokémon without fail.'), 
     4329(206,229,'Everstone',200,63,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. The Pokémon holding this peculiar stone is prevented from evolving.'), 
     4330(207,230,'Focus Band',200,64,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. The holder may endure a potential KO attack, leaving it with just 1 HP.'), 
     4331(208,231,'Lucky Egg',200,65,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is an egg filled with happiness that earns extra Exp. Points in battle.'), 
     4332(209,232,'Scope Lens',200,66,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a lens that boosts the holder\'s critical-hit ratio.'), 
     4333(210,233,'Metal Coat',100,67,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a special metallic film that ups the power of Steel-type moves.'), 
     4334(211,234,'Leftovers',200,68,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. The holder\'s HP is gradually restored during battle.'), 
     4335(212,235,'Dragon Scale',2100,69,10,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A thick and tough scale. Dragon-type Pokémon may be holding this item when caught.'), 
     4336(213,236,'Light Ball',100,70,0,0,27,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by PIKACHU. It is a puzzling orb that raises the Sp. Atk stat.'), 
     4337(214,237,'Soft Sand',100,71,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves.'), 
     4338(215,238,'Hard Stone',100,72,20,0,0,100,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is an unbreakable stone that ups the power of Rock-type moves.'), 
     4339(216,239,'Miracle Seed',100,73,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a seed imbued with life that ups the power of Grass-type moves.'), 
     4340(217,240,'BlackGlasses',100,74,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a shady-looking pair of glasses that boosts Dark-type moves.'), 
     4341(218,241,'Black Belt',100,75,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a belt that boosts determination and Fighting-type moves.'), 
     4342(219,242,'Magnet',100,76,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a powerful magnet that boosts the power of Electric-type moves.'), 
     4343(220,243,'Mystic Water',100,77,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a teardrop-shaped gem that ups the power of Water-type moves.'), 
     4344(221,244,'Sharp Beak',100,78,20,0,0,50,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a long, sharp beak that boosts the power of Flying-type moves.'), 
     4345(222,245,'Poison Barb',100,79,20,0,28,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a small, poisonous barb that ups the power of Poison-type moves.'), 
     4346(223,246,'NeverMeltIce',100,80,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a piece of ice that repels heat and boosts Ice-type moves.'), 
     4347(224,247,'Spell Tag',100,81,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a sinister, eerie tag that boosts the power of Ghost-type moves.'), 
     4348(225,248,'TwistedSpoon',100,82,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a spoon imbued with telekinetic power that boosts Psychic-type moves.'), 
     4349(226,249,'Charcoal',9800,83,20,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a combustible fuel that boosts the power of Fire-type moves.'), 
     4350(227,250,'Dragon Fang',100,84,20,0,0,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a hard and sharp fang that ups the power of Dragon-type moves.'), 
     4351(228,251,'Silk Scarf',100,85,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a sumptuous scarf that boosts the power of Normal-type moves.'), 
     4352(229,252,'Up-Grade',2100,86,0,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A transparent device filled with all sorts of data. It was produced by Silph Co.'), 
     4353(230,253,'Shell Bell',200,87,8,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. The holder\'s HP is restored a little every time it inflicts damage.'), 
     4354(231,254,'Sea Incense',9600,77,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is incense with a curious aroma that boosts the power of Water-type moves.'), 
     4355(232,255,'Lax Incense',9600,47,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. The tricky aroma of this incense lowers the foe\'s accuracy.'), 
     4356(233,256,'Lucky Punch',10,88,0,0,0,40,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by CHANSEY. It is a pair of gloves that boosts CHANSEY\'s critical-hit ratio.'), 
     4357(234,257,'Metal Powder',10,89,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by DITTO. Extremely fine yet hard, this odd powder boosts the Defense stat.'), 
     4358(235,258,'Thick Club',500,90,0,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by CUBONE or MAROWAK. It is a hard bone of some sort that boosts the Attack stat.'), 
     4359(236,259,'Stick',200,91,0,0,0,60,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by FARFETCH\'D. It is a very long and stiff stalk of leek that boosts the critical-hit ratio.'), 
     4360(237,260,'Red Scarf',100,0,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It boosts the \"Cool\" aspect of the holder in a Contest.'), 
     4361(238,261,'Blue Scarf',100,0,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It boosts the \"Beauty\" aspect of the holder in a Contest.'), 
     4362(239,262,'Pink Scarf',100,0,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It boosts the \"Cute\" aspect of the holder in a Contest.'), 
     4363(240,263,'Green Scarf',100,0,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It boosts the \"Smart\" aspect of the holder in a Contest.'), 
     4364(241,264,'Yellow Scarf',100,0,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It boosts the \"Tough\" aspect of the holder in a Contest.'), 
     4365(242,265,'Wide Lens',200,92,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a magnifying lens that slightly boosts the accuracy of moves.'), 
     4366(243,266,'Muscle Band',200,93,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a headband that slightly boosts the power of physical moves.'), 
     4367(244,267,'Wise Glasses',200,94,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a thick pair of glasses that slightly boosts the power of special moves.'), 
     4368(245,268,'Expert Belt',200,95,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a well-worn belt that slightly boosts the power of supereffective moves.'), 
     4369(246,269,'Light Clay',200,96,3,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that extends the duration of barrier moves like Light Screen and Reflect used by the holder.'), 
     4370(247,270,'Life Orb',200,97,30,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It boosts the power of moves, but at the cost of some HP on each hit.'), 
     4371(248,271,'Power Herb',100,98,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A single-use item to be held by a Pokémon. It allows the immediate use of a move that charges on the first turn.'), 
     4372(249,272,'Toxic Orb',100,99,0,0,29,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a bizarre orb that badly poisons the holder in battle.'), 
     4373(250,273,'Flame Orb',100,100,0,0,30,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a bizarre orb that inflicts a burn on the holder in battle.'), 
     4374(251,274,'Quick Powder',10,101,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by DITTO. Extremely fine yet hard, this odd powder boosts the Speed stat.'), 
     4375(252,275,'Focus Sash',200,102,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. If it has full HP, the holder will endure one potential KO attack, leaving 1 HP.'), 
     4376(253,276,'Zoom Lens',200,103,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. If the holder moves after the foe, its critical-hit ratio will be boosted.'), 
     4377(254,277,'Metronome',200,104,10,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that boosts a move used consecutively. Its effect is reset if another move is used.'), 
     4378(255,278,'Iron Ball',200,105,0,0,0,130,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that cuts Speed. It makes Flying-type and levitating holders susceptible to Ground moves.'), 
     4379(256,279,'Lagging Tail',200,106,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is tremendously heavy and makes the holder move slower than usual.'), 
     4380(257,280,'Destiny Knot',200,107,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A long, thin, bright red string to be held by a Pokémon. If the holder becomes infatuated, the foe does too.'), 
     4381(258,281,'Black Sludge',200,108,16,0,0,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A hold item that gradually restores the HP of Poison-type Pokémon. It inflicts damage on all other types.'), 
     4382(259,282,'Icy Rock',200,109,3,0,0,40,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that extends the duration of the move Hail used by the holder.'), 
     4383(260,283,'Smooth Rock',200,110,3,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that extends the duration of the move Sandstorm used by the holder.'), 
     4384(261,284,'Heat Rock',200,111,3,0,0,60,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that extends the duration of the move Sunny Day used by the holder.'), 
     4385(262,285,'Damp Rock',200,112,3,0,0,60,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that extends the duration of the move Rain Dance used by the holder.'), 
     4386(263,286,'Grip Claw',200,113,0,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that extends the duration of multiturn attacks like Bind and Wrap.'), 
     4387(264,287,'Choice Scarf',200,114,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. This scarf boosts Speed, but allows the use of only one kind of move.'), 
     4388(265,288,'Sticky Barb',200,115,8,0,0,80,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A hold item that damages the holder on every turn. It may latch on to foes that touch the holder.'), 
     4389(266,289,'Power Bracer',3000,116,4,0,0,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that promotes Attack gain on leveling, but reduces the Speed stat.'), 
     4390(267,290,'Power Belt',3000,117,4,0,0,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that promotes Defense gain on leveling, but reduces the Speed stat.'), 
     4391(268,291,'Power Lens',3000,118,4,0,0,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that promotes Sp. Atk gain on leveling, but reduces the Speed stat.'), 
     4392(269,292,'Power Band',3000,119,4,0,0,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that promotes Sp. Def gain on leveling, but reduces the Speed stat.'), 
     4393(270,293,'Power Anklet',3000,120,4,0,0,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that promotes Speed gain on leveling, but reduces the Speed stat.'), 
     4394(271,294,'Power Weight',3000,121,4,0,0,70,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that promotes HP gain on leveling, but reduces the Speed stat.'), 
     4395(272,295,'Shed Shell',100,122,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A tough, discarded carapace to be held by a Pokémon. It enables the holder to switch with a waiting Pokémon in battle.'), 
     4396(273,296,'Big Root',200,123,30,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A Pokémon hold item that boosts the power of HP-stealing moves to let the holder recover more HP.'), 
     4397(274,297,'Choice Specs',200,124,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. These distinctive glasses boost Sp. Atk, but allow only one kind of move to be used.'), 
     4398(275,298,'Flame Plate',1000,125,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fire-type moves.'), 
     4399(276,299,'Splash Plate',1000,126,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Water-type moves.'), 
     4400(277,300,'Zap Plate',1000,127,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Electric-type moves.'), 
     4401(278,301,'Meadow Plate',1000,128,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Grass-type moves.'), 
     4402(279,302,'Icicle Plate',1000,129,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ice-type moves.'), 
     4403(280,303,'Fist Plate',1000,130,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Fighting-type moves.'), 
     4404(281,304,'Toxic Plate',1000,131,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Poison-type moves.'), 
     4405(282,305,'Earth Plate',1000,132,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ground-type moves.'), 
     4406(283,306,'Sky Plate',1000,133,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Flying-type moves.'), 
     4407(284,307,'Mind Plate',1000,134,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Psychic-type moves.'), 
     4408(285,308,'Insect Plate',1000,135,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Bug-type moves.'), 
     4409(286,309,'Stone Plate',1000,136,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Rock-type moves.'), 
     4410(287,310,'Spooky Plate',1000,137,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Ghost-type moves.'), 
     4411(288,311,'Draco Plate',1000,138,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dragon-type moves.'), 
     4412(289,312,'Dread Plate',1000,139,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Dark-type moves.'), 
     4413(290,313,'Iron Plate',1000,140,20,0,0,90,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a stone tablet that boosts the power of Steel-type moves.'), 
     4414(291,314,'Odd Incense',9600,82,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is an exotic-smelling incense that boosts the power of Psychic-type moves.'), 
     4415(292,315,'Rock Incense',9600,72,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is an exotic-smelling incense that boosts the power of Rock-type moves.'), 
     4416(293,316,'Full Incense',9600,106,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is an exotic-smelling incense that makes the holder bloated and slow moving.'), 
     4417(294,317,'Wave Incense',9600,77,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is an exotic-smelling incense that boosts the power of Water-type moves.'), 
     4418(295,318,'Rose Incense',9600,73,20,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is an exotic-smelling incense that boosts the power of Grass-type moves.'), 
     4419(296,319,'Luck Incense',9600,57,10,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It doubles a battle\'s prize money if the holding Pokémon joins in.'), 
     4420(297,320,'Pure Incense',9600,58,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the first one in the party.'), 
     4421(298,321,'Protector',2100,141,0,0,0,80,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A protective item of some sort. It is extremely stiff and heavy. It is loved by a certain Pokémon.'), 
     4422(299,322,'Electirizer',2100,142,0,0,0,80,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A box packed with a tremendous amount of electric energy. It is loved by a certain Pokémon.'), 
     4423(300,323,'Magmarizer',2100,143,0,0,0,80,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A box packed with a tremendous amount of magma energy. It is loved by a certain Pokémon.'), 
     4424(301,324,'Dubious Disc',2100,144,0,0,0,50,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A transparent device overflowing with dubious data. Its producer is unknown.'), 
     4425(302,325,'Reaper Cloth',2100,145,0,0,0,10,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A cloth imbued with horrifyingly strong spiritual energy. It is loved by a certain Pokémon.'), 
     4426(303,326,'Razor Claw',2100,66,0,0,0,80,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It is a sharply hooked claw that ups the holder\'s critical-hit ratio.'), 
     4427(304,327,'Razor Fang',2100,55,10,0,26,30,0,'31',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An item to be held by a Pokémon. It may cause the foe to flinch when the holder inflicts damage.'), 
     4428(305,328,'TM01',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user focuses its mind before launching this attack. It will fail if the user is hit before it is used.'), 
     4429(306,329,'TM02',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Sharp, huge claws hook and slash the foe quickly and with great power.'), 
     4430(307,330,'TM03',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is hit with a pulsing blast of water. It may also confuse the target.'), 
     4431(308,331,'TM04',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats.'), 
     4432(309,332,'TM05',1000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is scared off, to be replaced by another Pokémon in its party. In the wild, the battle ends.'), 
     4433(310,333,'TM06',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A move that leaves the foe badly poisoned. This poison damage worsens every turn.'), 
     4434(311,334,'TM07',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Summons a hailstorm that lasts for five turns. The hailstorm damages all types except Ice.'), 
     4435(312,335,'TM08',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user tenses its muscles to bulk up its body, boosting both its Attack and Defense stats.'), 
     4436(313,336,'TM09',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user forcefully shoots seeds at the foe. Two to five seeds are shot in rapid succession.'), 
     4437(314,337,'TM10',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A variable move that changes type and power depending on the hidden ability of the Pokémon using it.'), 
     4438(315,338,'TM11',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user intensifies the sun for five turns, powering up Fire-type moves.'), 
     4439(316,339,'TM12',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is taunted into a rage that allows it to use only attack moves for two to four turns.'), 
     4440(317,340,'TM13',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is struck with an icy-cold beam of energy. It may also freeze the target solid.'), 
     4441(318,341,'TM14',5500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A howling blizzard is summoned to strike the foe. It may also freeze the target solid.'), 
     4442(319,342,'TM15',7500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is attacked with a powerful beam. The user must rest on the next turn to regain its energy.'), 
     4443(320,343,'TM16',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A wondrous wall of light is put up to suppress damage from special attacks for five turns.'), 
     4444(321,344,'TM17',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'It enables the user to evade all attacks. Its chance of failing rises if it is used in succession.'), 
     4445(322,345,'TM18',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user summons a heavy rain that falls for five turns, powering up Water-type moves.'), 
     4446(323,346,'TM19',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A nutrient-draining attack. The user\'s HP is restored by half the damage taken by the target.'), 
     4447(324,347,'TM20',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user creates a protective field that prevents status problems like poison, paralysis, burn, and sleep.'), 
     4448(325,348,'TM21',1000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A full-power attack that grows more powerful the less the user likes its Trainer.'), 
     4449(326,349,'TM22',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A two-turn attack. The user gathers light, then blasts a bundled beam on the second turn.'), 
     4450(327,350,'TM23',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is slammed with a sturdy tail of steel. It may also lower the target\'s Defense stat if it hits.'), 
     4451(328,351,'TM24',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A strong electric blast is loosed at the foe. It may also leave the foe paralyzed.'), 
     4452(329,352,'TM25',5500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A wicked thunderbolt is dropped on the foe to inflict damage. It may also leave the target paralyzed.'), 
     4453(330,353,'TM26',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user sets off an earthquake that hits all the Pokémon in the battle.'), 
     4454(331,354,'TM27',1000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A full-power attack that grows more powerful the more the user likes its Trainer.'), 
     4455(332,355,'TM28',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user burrows, then attacks on the second turn. It can also be used to exit dungeons.'), 
     4456(333,356,'TM29',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is hit by a strong telekinetic force. It may also reduce the foe\'s Sp. Def stat.'), 
     4457(334,357,'TM30',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user hurls a shadowy blob at the foe. It may also lower the foe\'s Sp. Def stat.'), 
     4458(335,358,'TM31',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user attacks with tough fists, etc. It can also break any barrier such as Light Screen and Reflect.'), 
     4459(336,359,'TM32',1000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user begins moving so quickly that it creates illusory copies to raise its evasiveness.'), 
     4460(337,360,'TM33',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A wondrous wall of light is put up to suppress damage from physical attacks for five turns.'), 
     4461(338,361,'TM34',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user strikes the foe with a quick jolt of electricity. This attack cannot be evaded.'), 
     4462(339,362,'TM35',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is scorched with an intense blast of fire. The target may also be left with a burn.'), 
     4463(340,363,'TM36',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Unsanitary sludge is hurled at the foe. It may also poison the target.'), 
     4464(341,364,'TM37',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A five-turn sandstorm is summoned to hurt all combatants except the Rock, Ground, and Steel types.'), 
     4465(342,365,'TM38',5500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is attacked with an intense blast of all-consuming fire. It may also leave the target with a burn.'), 
     4466(343,366,'TM39',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Large boulders are hurled at the foe to inflict damage. It may also make the target flinch.'), 
     4467(344,367,'TM40',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user confounds the foe with speed, then strikes. The attack lands without fail.'), 
     4468(345,368,'TM41',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user torments and enrages the foe, making it incapable of using the same move twice in a row.'), 
     4469(346,369,'TM42',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An attack move that doubles its power if the user is poisoned, paralyzed, or has a burn.'), 
     4470(347,370,'TM43',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An attack move with effects that vary depending on the user\'s environment.'), 
     4471(348,371,'TM44',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user goes to sleep for two turns. It fully restores the user\'s HP and heals any status problem.'), 
     4472(349,372,'TM45',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'If it is the opposite gender of the user, the foe becomes infatuated and less likely to attack.'), 
     4473(350,373,'TM46',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user attacks and steals the foe\'s held item simultaneously. It can\'t steal if the user holds an item.'), 
     4474(351,374,'TM47',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is hit with wings of steel. It may also raise the user\'s Defense stat.'), 
     4475(352,375,'TM48',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user employs its psychic power to exchange abilities with the foe. '), 
     4476(353,376,'TM49',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user steals the effects of any healing or status-changing move the foe attempts to use.'), 
     4477(354,377,'TM50',5500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user attacks the foe at full power using fiery energy. It also sharply reduces the user\'s Sp. Atk.'), 
     4478(355,378,'TM51',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user lands and rests its body. It restores the user\'s HP by up to half of its top HP.'), 
     4479(356,379,'TM52',5500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user attacks at full power. It may also lower the foe\'s Sp. Def stat if it hits.'), 
     4480(357,380,'TM53',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user draws power from nature and fires it at the foe. It may also lower the target\'s Sp. Def.'), 
     4481(358,381,'TM54',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A restrained attack that prevents the foe from fainting. The target is left with at least 1 HP.'), 
     4482(359,382,'TM55',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'If the foe\'s HP is down to under half, this attack will hit with double the power.'), 
     4483(360,383,'TM56',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user flings its held item at the foe to attack. Its power and effects depend on the item.'), 
     4484(361,384,'TM57',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user attacks with an electric charge. The user may use any remaining electricity to raise its Sp. Atk stat.'), 
     4485(362,385,'TM58',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user endures any attack, leaving 1 HP. Its chance of failing rises if it is used in succession.'), 
     4486(363,386,'TM59',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is attacked with a shock wave generated by the user\'s gaping mouth.'), 
     4487(364,387,'TM60',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An energy-draining punch. The user\'s HP is restored by half the damage taken by the target.'), 
     4488(365,388,'TM61',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user shoots a sinister, bluish white flame at the foe to inflict a burn.'), 
     4489(366,389,'TM62',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is attacked with powdery scales blown by wind. It may also raise all the user\'s stats.'), 
     4490(367,390,'TM63',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'It prevents the foe from using its held item. Its Trainer is also prevented from using items on it.'), 
     4491(368,391,'TM64',7500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user explodes to inflict damage on all Pokémon in battle. The user faints upon using this move.'), 
     4492(369,392,'TM65',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user slashes with a sharp claw made from shadows. It has a high critical-hit ratio.'), 
     4493(370,393,'TM66',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user stores power, then attacks. If the user can use this attack after the foe, its power is doubled.'), 
     4494(371,394,'TM67',1000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user recycles a single-use item that has been used in battle so it can be used again.'), 
     4495(372,395,'TM68',7500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user charges the foe using every bit of its power. It must rest on the next turn to recover.'), 
     4496(373,396,'TM69',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user polishes its body to reduce drag. It sharply raises the Speed stat.'), 
     4497(374,397,'TM70',1000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user flashes a light that cuts the foe\'s accuracy. It can also be used to illuminate caves.'), 
     4498(375,398,'TM71',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user stabs the foe with a sharpened stone from below. It has a high critical-hit ratio.'), 
     4499(376,399,'TM72',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An attack move that inflicts double the damage if the user has been hurt by the foe in the same turn.'), 
     4500(377,400,'TM73',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A weak electric charge is launched at the foe. It causes paralysis if it hits.'), 
     4501(378,401,'TM74',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user tackles the foe from a high-speed spin. The slower the user, the greater the damage.'), 
     4502(379,402,'TM75',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A frenetic dance to uplift the fighting spirit. It sharply raises the user\'s Attack stat.'), 
     4503(380,403,'TM76',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user lays a trap of levitating stones around the foe. The trap hurts foes that switch into battle.'), 
     4504(381,404,'TM77',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user hypnotizes itself into copying any stat change made by the foe.'), 
     4505(382,405,'TM78',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'If it is the opposite gender of the user, the foe is charmed into sharply lowering its Sp. Atk stat.'), 
     4506(383,406,'TM79',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user releases a horrible aura imbued with dark thoughts. It may also make the target flinch.'), 
     4507(384,407,'TM80',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Large boulders are hurled at the foe to inflict damage. It may also make the target flinch.'), 
     4508(385,408,'TM81',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user slashes at the foe by crossing its scythes or claws as if they were a pair of scissors.'), 
     4509(386,409,'TM82',1000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'While it is asleep, the user randomly uses one of the moves it knows.'), 
     4510(387,410,'TM83',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user draws power from the Berry it is holding to attack. The Berry determines its type and power.'), 
     4511(388,411,'TM84',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is stabbed with a tentacle or arm seeped with poison. It may also poison the foe.'), 
     4512(389,412,'TM85',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An attack that works only on a sleeping foe. It absorbs half the damage caused to heal the user\'s HP.'), 
     4513(390,413,'TM86',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user snares the foe with grass and trips it. The heavier the foe, the greater the damage.'), 
     4514(391,414,'TM87',1500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user enrages the foe into confusion. However, it also sharply raises the foe\'s Attack stat.'), 
     4515(392,415,'TM88',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user pecks the foe. If the foe is holding a Berry, the user plucks it and gains its effect.'), 
     4516(393,416,'TM89',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'After making its attack, the user rushes back to switch places with a party Pokémon in waiting.'), 
     4517(394,417,'TM90',2000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user makes a copy of itself using some of its HP. The copy serves as the user\'s decoy.'), 
     4518(395,418,'TM91',3000,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user gathers all its light energy and releases it in one shot. It may also lower the foe\'s Sp. Def stat.'), 
     4519(396,419,'TM92',5500,0,0,0,0,0,0,'159',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user creates a bizarre space in which slower Pokémon get to move first for five turns.'), 
     4520(397,420,'HM01',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is cut with a scythe or a claw. It can also be used to cut down thin trees.'), 
     4521(398,421,'HM02',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user soars, then strikes on the second turn. It can also be used to fly to any familiar town.'), 
     4522(399,422,'HM03',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'It swamps the entire battlefield with a giant wave. It can also be used to cross water.'), 
     4523(400,423,'HM04',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The foe is slugged with a punch thrown at maximum power. It can also be used to move boulders.'), 
     4524(401,424,'HM05',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Obstacles are moved, reducing the foe\'s evasion stat. It can also be used to clear deep fog.'), 
     4525(402,425,'HM06',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user slugs the foe with a shattering punch. It can also smash cracked boulders.'), 
     4526(403,426,'HM07',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The user charges the foe at an awesome speed. It can also be used to climb a waterfall.'), 
     4527(404,427,'HM08',0,0,0,0,0,0,0,'191',1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A charging attack that may also leave the foe confused. It can also be used to scale rocky walls.'), 
     4528(405,428,'Explorer Kit',0,0,0,0,0,0,0,'255',3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A bag filled with convenient tools for exploring. It provides access to the Underground.'), 
     4529(406,429,'Loot Sack',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A sturdy, spacious bag that is used to carry loot obtained in the coal mine.'), 
     4530(407,430,'Rule Book',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'It lists the rules for holding battles. For linked battles, you may choose which set of rules you wish to use.'), 
     4531(408,431,'Poké Radar',0,0,0,0,0,0,0,'255',3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A tool that can search out Pokémon that are hiding in grass. Its battery is recharged as you walk.'), 
     4532(409,432,'Point Card',0,0,0,0,0,0,0,'255',3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A card that lists the Battle Points you have earned. '), 
     4533(410,433,'Journal',0,0,0,0,0,0,0,'255',3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A notebook that keeps a day-to-day record of your adventure so far. '), 
     4534(411,434,'Seal Case',0,0,0,0,0,0,0,'255',3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A case for storing Seals that can be applied to the capsule cases of Poké Balls.'), 
     4535(412,435,'Fashion Case',0,0,0,0,0,0,0,'255',3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fancy case for the tidy and organized storage of colorful Pokémon Accessories.'), 
     4536(413,436,'Seal Bag',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A tiny bag that can hold ten Seals for decorating Poké Balls.'), 
     4537(414,437,'Pal Pad',0,0,0,0,0,0,0,'255',3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A convenient notepad that is used for registering your friends and keeping a record of game play.'), 
     4538(415,438,'Works Key',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A large key for operating the doors of the Valley Windworks in the canyon. It was held by a Team Galactic Grunt.'), 
     4539(416,439,'Old Charm',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An ancient good-luck charm made of Pokémon bones to be taken to the elder of Celestic Town.'), 
     4540(417,440,'Galactic Key',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A card key for disengaging security systems in the Galactic HQ. Losing it can result in punishment, apparently.'), 
     4541(418,441,'Red Chain',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A mythical chain that is said to link the legendary Pokémon that created the Sinnoh region.'), 
     4542(419,442,'Town Map',0,0,0,0,0,0,0,'255',3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A very convenient map that can be viewed anytime. It even shows your  present location.'), 
     4543(420,443,'Vs. Seeker',0,0,0,0,0,0,0,'255',3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A device that indicates Trainers who want to battle. Its battery charges while you walk.'), 
     4544(421,444,'Coin Case',0,0,0,0,0,0,0,'255',3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A case for holding Coins obtained at the Game Corner. It holds up to 50,000 Coins.'), 
     4545(422,445,'Old Rod',0,0,0,0,0,0,0,'255',3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An old and beat-up fishing rod. Use it by any body of water to fish for wild aquatic Pokémon.'), 
     4546(423,446,'Good Rod',0,0,0,0,0,0,0,'255',3,17,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A new, good-quality fishing rod. Use it by any body of water to fish for wild aquatic Pokémon.'), 
     4547(424,447,'Super Rod',0,0,0,0,0,0,0,'255',3,18,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'An awesome, high-tech fishing rod. Use it by any body of water to fish for wild aquatic Pokémon.'), 
     4548(425,448,'Sprayduck',0,0,0,0,0,0,0,'255',3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A watering can shaped like a PSYDUCK. It helps promote healthy growth of Berries planted in soft soil.'), 
     4549(426,449,'Poffin Case',0,0,0,0,0,0,0,'255',3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A case for storing Poffin cooked from Berries. '), 
     4550(427,450,'Bicycle',0,0,0,0,0,0,0,'255',3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A folding Bicycle that enables much faster movement than the Running Shoes.'), 
     4551(428,451,'Suite Key',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A key to one of the suites at the luxury hotel by a lake. For some odd reason, it often disappears.'), 
     4552(429,452,'Oak’s Letter',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A letter from Prof. Oak. Written in it is a request for you to go to Rt. 224.'), 
     4553(430,453,'Lunar Wing',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A feather that glows like the moon. It is said to possess the power to dispel nightmares.'), 
     4554(431,454,'Member Card',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A card needed for entering the inn in Canalave City. Oddly, the last date marked on it was 50 years ago.'), 
     4555(432,455,'Azure Flute',0,0,0,0,0,0,0,'255',3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A flute that puts out echoing sounds that do not seem to be of this world. It is unknown who made it.'), 
     4556(433,456,'S.S. Ticket',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The ticket required for sailing on the ferry S.S. Anne. It has a drawing of a ship on it.'), 
     4557(434,457,'Contest Pass',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The pass required for entering Pokémon Contests. It has a drawing of an award ribbon on it.'), 
     4558(435,458,'Magma Stone',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A stone formed when boulders melted in intensely hot magma, then hardened. Magma remains sealed inside.'), 
     4559(436,459,'Parcel',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A parcel entrusted in your care. You are supposed to deliver it to your childhood friend who left Twinleaf Town.'), 
     4560(437,460,'Coupon 1',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A coupon to be exchanged for a Pokémon Watch (Pokétch for short). Three coupons are needed.'), 
     4561(438,461,'Coupon 2',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A coupon to be exchanged for a Pokémon Watch (Pokétch for short). Three coupons are needed.'), 
     4562(439,462,'Coupon 3',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A coupon to be exchanged for a Pokémon Watch (Pokétch for short). Three coupons are needed.'), 
     4563(440,463,'Storage Key',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'The key to Team Galactic\'s sinister warehouse located at the edge of Veilstone City.'), 
     4564(441,464,'SecretPotion',0,0,0,0,0,0,0,'191',3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'A fantastic medicine dispensed by the pharmacy in Cianwood City. It fully heals a Pokémon of any ailment.'); 
    45634565/*!40000 ALTER TABLE items ENABLE KEYS */; 
    45644566UNLOCK TABLES;