15 lines
80 KiB
SQL
15 lines
80 KiB
SQL
# noinspection LongLineForFile
|
|
|
|
DROP TABLE IF EXISTS perk;
|
|
CREATE TABLE IF NOT EXISTS perk (id INT NOT NULL PRIMARY KEY, name VARCHAR(25) NOT NULL);
|
|
DROP TABLE IF EXISTS perk_level;
|
|
CREATE TABLE IF NOT EXISTS perk_level (id INT NOT NULL PRIMARY KEY, perk_id INT NOT NULL, number INT NOT NULL, min_level INT NOT NULL);
|
|
DROP TABLE IF EXISTS perk_prof;
|
|
CREATE TABLE IF NOT EXISTS perk_prof (perk_id INT NOT NULL, profession VARCHAR(25) NOT NULL);
|
|
DROP TABLE IF EXISTS perk_level_buffs;
|
|
CREATE TABLE IF NOT EXISTS perk_level_buffs (perk_level_id INT NOT NULL, skill VARCHAR(50) NOT NULL, amount INT NOT NULL);
|
|
INSERT INTO perk (id, name) VALUES (1,'Enhance DNA'), (2,'First Aid'), (3,'Freak Strength'), (4,'Genius'), (5,'Kung-Fu Master'), (6,'Ambidextrous'), (7,'Cartographer'), (8,'Enhance Health'), (9,'Enhance Nano'), (10,'Explorer'), (11,'Motorist'), (12,'NCU Extensions'), (13,'Training Seminar'), (14,'Notum Repulsor'), (15,'Edged Mastery'), (16,'Blunt Mastery'), (17,'Mountaineer'), (18,'Acrobat'), (19,'Notum Source'), (20,'Careful in Battle'), (21,'Brawler'), (22,'Colossal Health'), (23,'Infantry'), (24,'Power Up'), (25,'Shotgun Mastery'), (26,'SMG Mastery'), (27,'Alchemist'), (28,'Pistol Mastery'), (29,'Tinkerer'), (30,'Nano Doctorate'), (31,'Starfall'), (32,'Theoretical Research'), (33,'Disharmony'), (34,'Spiritual Master'), (35,'Thief'), (36,'Grid NCU Extension'), (37,'Hit and Run'), (38,'Lightstalker'), (39,'Shadowstalker'), (40,'Ferocity of Nature'), (41,'Outdoorsman'), (42,'Assault Force Medic'), (43,'Nano Surgeon'), (44,'Specialist Healer'), (45,'Heavy Ranged'), (46,'Special Forces'), (47,'Demolitions'), (48,'Gadgeteer'), (49,'Mechanic'), (50,'Assassin'), (51,'Black Ops'), (52,'Shadowsneak'), (53,'Sharpshoooter'), (54,'Form of Troll'), (55,'Manners of Mongo'), (56,'Bone Crusher'), (57,'Directorship'), (58,'Insurance Agent'), (59,'Bureaucratic Shuffle'), (60,'Piercing Mastery'), (61,'Totemic Rites'), (62,'Shade Touch'), (63,'Sublime Rapport'), (64,'Spirit Phylactery'), (65,'Notum Siphon'), (66,'Essence of Notum'), (67,'Enhanced Nano Damage'), (68,'Channel Rage'), (69,'Soothing Spirits'), (70,'Accumulator'), (71,'Distill Life'), (72,'Blessing'), (73,'Holy Mark'), (74,'Reaver');;
|
|
INSERT INTO perk_level (id, perk_id, number, min_level) VALUES (1,1,1,10), (2,1,2,30), (3,1,3,50), (4,1,4,70), (5,1,5,90), (6,1,6,110), (7,1,7,130), (8,1,8,150), (9,1,9,170), (10,1,10,190), (11,2,1,30), (12,2,2,70), (13,2,3,130), (14,2,4,180), (15,3,1,120), (16,3,2,200), (17,3,3,208), (18,4,1,60), (19,4,2,110), (20,4,3,190), (21,5,1,50), (22,5,2,100), (23,5,3,150), (24,5,4,200), (25,5,5,203), (26,6,1,10), (27,6,2,30), (28,6,3,80), (29,6,4,110), (30,6,5,150), (31,7,1,20), (32,7,2,30), (33,7,3,50), (34,7,4,80), (35,7,5,100), (36,8,1,30), (37,8,2,60), (38,8,3,80), (39,8,4,100), (40,8,5,140), (41,8,6,180), (42,8,7,201), (43,9,1,30), (44,9,2,60), (45,9,3,80), (46,9,4,100), (47,9,5,140), (48,9,6,180), (49,9,7,201), (50,10,1,30), (51,10,2,60), (52,10,3,90), (53,10,4,140), (54,11,1,30), (55,11,2,70), (56,11,3,100), (57,11,4,140), (58,12,1,40), (59,12,2,70), (60,12,3,110), (61,12,4,150), (62,12,5,190), (63,12,6,201), (64,12,7,204), (65,12,8,210), (66,13,1,20), (67,13,2,60), (68,13,3,100), (69,13,4,150), (70,14,1,30), (71,14,2,60), (72,14,3,90), (73,14,4,110), (74,14,5,130), (75,14,6,200), (76,14,7,203), (77,14,8,207), (78,15,1,20), (79,15,2,50), (80,15,3,70), (81,15,4,100), (82,15,5,130), (83,15,6,160), (84,15,7,180), (85,15,8,201), (86,15,9,204), (87,15,10,209), (88,16,1,10), (89,16,2,30), (90,16,3,50), (91,16,4,80), (92,16,5,110), (93,16,6,140), (94,16,7,170), (95,16,8,200), (96,16,9,201), (97,16,10,203), (98,17,1,50), (99,17,2,110), (100,17,3,190), (101,17,4,202), (102,17,5,207), (103,18,1,30), (104,18,2,60), (105,18,3,100), (106,18,4,140), (107,19,1,20), (108,19,2,50), (109,19,3,80), (110,19,4,110), (111,19,5,140), (112,19,6,180), (113,19,7,201), (114,19,8,203), (115,19,9,207), (116,19,10,210), (117,20,1,40), (118,20,2,70), (119,20,3,100), (120,20,4,130), (121,20,5,160), (122,20,6,200), (123,20,7,205), (124,20,8,207), (125,20,9,212), (126,20,10,219), (127,21,1,30), (128,21,2,70), (129,21,3,120), (130,21,4,190), (131,21,5,201), (132,21,6,205), (133,22,1,10), (134,22,2,30), (135,22,3,60), (136,22,4,90), (137,22,5,130), (138,22,6,150), (139,22,7,190), (140,22,8,201), (141,22,9,202), (142,22,10,206), (143,23,1,10), (144,23,2,40), (145,23,3,60), (146,23,4,90), (147,23,5,120), (148,23,6,140), (149,23,7,160), (150,23,8,190), (151,23,9,201), (152,23,10,204), (153,24,1,10), (154,24,2,40), (155,24,3,70), (156,24,4,100), (157,24,5,130), (158,24,6,150), (159,24,7,180), (160,24,8,201), (161,24,9,203), (162,24,10,205), (163,25,1,10), (164,25,2,30), (165,25,3,60), (166,25,4,90), (167,25,5,120), (168,25,6,140), (169,25,7,160), (170,25,8,180), (171,25,9,200), (172,25,10,202), (173,26,1,20), (174,26,2,40), (175,26,3,60), (176,26,4,80), (177,26,5,100), (178,26,6,130), (179,26,7,160), (180,26,8,190), (181,26,9,201), (182,26,10,203), (183,27,1,20), (184,27,2,40), (185,27,3,70), (186,27,4,100), (187,27,5,130), (188,27,6,160), (189,28,1,10), (190,28,2,30), (191,28,3,60), (192,28,4,90), (193,28,5,120), (194,28,6,150), (195,28,7,180), (196,28,8,201), (197,28,9,203), (198,28,10,205), (199,29,1,60), (200,29,2,120), (201,29,3,180), (202,29,4,200), (203,30,1,50), (204,30,2,80), (205,30,3,120), (206,30,4,160), (207,30,5,200), (208,30,6,202), (209,30,7,205), (210,30,8,210), (211,30,9,213), (212,30,10,216), (213,31,1,20), (214,31,2,50), (215,31,3,90), (216,31,4,120), (217,31,5,150), (218,31,6,190), (219,31,7,202), (220,31,8,205), (221,31,9,210), (222,31,10,214), (223,32,1,40), (224,32,2,70), (225,32,3,110), (226,32,4,140), (227,32,5,180), (228,32,6,201), (229,32,7,203), (230,32,8,205), (231,32,9,208), (232,32,10,209), (233,33,1,60), (234,33,2,80), (235,33,3,110), (236,33,4,130), (237,33,5,150), (238,33,6,170), (239,33,7,190), (240,33,8,201), (241,33,9,205), (242,33,10,213), (243,34,1,10), (244,34,2,40), (245,34,3,70), (246,34,4,100), (247,34,5,130), (248,34,6,180), (249,34,7,201), (250,34,8,203), (251,34,9,205), (252,34,10,210), (253,35,1,30), (254,35,2,60), (255,35,3,100), (256,35,4,170), (257,36,1,50), (258,36,2,120), (259,36,3,190), (260,36,4,201), (261,37,1,180), (262,37,2,190), (263,37,3,202), (264,37,4,204), (265,37,5,206), (266,37,6,208), (267,38,1,20), (268,38,2,70), (269,38,3,110), (270,38,4,150), (271,38,5,200), (272,38,6,206), (273,39,1,20), (274,39,2,70), (275,39,3,110), (276,39,4,150), (277,39,5,200), (278,39,6,206), (279,40,1,205), (280,41,1,80), (281,41,2,140), (282,41,3,200), (283,42,1,60), (284,42,2,80), (285,42,3,100), (286,42,4,120), (287,42,5,150), (288,42,6,190), (289,42,7,200), (290,42,8,204), (291,42,9,208), (292,42,10,212), (293,43,1,40), (294,43,2,80), (295,43,3,120), (296,43,4,150), (297,43,5,180), (298,43,6,201), (299,44,1,70), (300,44,2,90), (301,44,3,130), (302,44,4,150), (303,44,5,160), (304,44,6,180), (305,44,7,200), (306,44,8,204), (307,44,9,209), (308,44,10,211), (309,45,1,20), (310,45,2,30), (311,45,3,60), (312,45,4,90), (313,45,5,140), (314,45,6,180), (315,45,7,202), (316,45,8,205), (317,46,1,20), (318,46,2,50), (319,46,3,70), (320,46,4,90), (321,46,5,110), (322,46,6,130), (323,46,7,170), (324,46,8,201), (325,46,9,203), (326,46,10,205), (327,47,1,20), (328,47,2,50), (329,47,3,90), (330,47,4,120), (331,47,5,150), (332,47,6,190), (333,47,7,201), (334,47,8,203), (335,47,9,206), (336,47,10,209), (337,48,1,10), (338,48,2,20), (339,48,3,40), (340,48,4,70), (341,48,5,100), (342,48,6,120), (343,48,7,150), (344,48,8,180), (345,48,9,200), (346,48,10,203), (347,49,1,30), (348,49,2,50), (349,49,3,70), (350,49,4,100), (351,49,5,130), (352,49,6,160), (353,49,7,201), (354,49,8,206), (355,49,9,212), (356,49,10,217), (357,50,1,10), (358,50,2,20), (359,50,3,30), (360,50,4,40), (361,50,5,80), (362,50,6,120), (363,50,7,170), (364,50,8,190), (365,50,9,201), (366,50,10,203), (367,51,1,20), (368,51,2,50), (369,51,3,80), (370,51,4,120), (371,51,5,150), (372,51,6,170), (373,51,7,190), (374,51,8,201), (375,51,9,203), (376,51,10,208), (377,52,1,10), (378,52,2,30), (379,52,3,70), (380,52,4,100), (381,52,5,130), (382,52,6,160), (383,52,7,200), (384,52,8,203), (385,52,9,208), (386,52,10,213), (387,53,1,50), (388,53,2,100), (389,53,3,160), (390,53,4,201), (391,53,5,203), (392,53,6,218), (393,54,1,30), (394,54,2,60), (395,54,3,90), (396,54,4,110), (397,54,5,130), (398,54,6,160), (399,54,7,200), (400,54,8,202), (401,54,9,204), (402,54,10,215), (403,55,1,20), (404,55,2,40), (405,55,3,70), (406,55,4,100), (407,55,5,150), (408,55,6,201), (409,55,7,205), (410,55,8,209), (411,55,9,214), (412,55,10,219), (413,56,1,10), (414,56,2,30), (415,56,3,50), (416,56,4,80), (417,56,5,110), (418,56,6,140), (419,56,7,170), (420,56,8,200), (421,56,9,201), (422,56,10,203), (423,57,1,30), (424,57,2,60), (425,57,3,90), (426,57,4,110), (427,57,5,140), (428,57,6,160), (429,57,7,190), (430,57,8,201), (431,57,9,205), (432,57,10,208), (433,58,1,80), (434,58,2,140), (435,58,3,190), (436,58,4,203), (437,58,5,209), (438,59,1,50), (439,59,2,70), (440,59,3,100), (441,59,4,140), (442,59,5,160), (443,59,6,180), (444,59,7,201), (445,59,8,202), (446,59,9,203), (447,59,10,206), (448,60,1,10), (449,60,2,30), (450,60,3,60), (451,60,4,90), (452,60,5,130), (453,60,6,160), (454,60,7,190), (455,60,8,201), (456,60,9,202), (457,60,10,208), (458,61,1,10), (459,61,2,40), (460,61,3,60), (461,61,4,90), (462,61,5,120), (463,61,6,150), (464,61,7,170), (465,61,8,190), (466,61,9,201), (467,61,10,204), (468,62,1,20), (469,62,2,60), (470,62,3,90), (471,62,4,130), (472,62,5,160), (473,62,6,200), (474,62,7,205), (475,63,1,10), (476,63,2,30), (477,63,3,60), (478,63,4,90), (479,63,5,120), (480,63,6,150), (481,63,7,170), (482,63,8,190), (483,63,9,201), (484,63,10,203), (485,64,1,20), (486,64,2,40), (487,64,3,60), (488,64,4,100), (489,64,5,130), (490,64,6,150), (491,64,7,160), (492,64,8,200), (493,64,9,202), (494,64,10,203), (495,65,1,30), (496,65,2,60), (497,65,3,90), (498,65,4,130), (499,65,5,170), (500,65,6,200), (501,65,7,203), (502,65,8,209), (503,65,9,214), (504,65,10,218), (505,66,1,80), (506,66,2,180), (507,66,3,203), (508,67,1,160), (509,67,2,180), (510,67,3,200), (511,67,4,203), (512,67,5,209), (513,67,6,215), (514,68,1,10), (515,68,2,30), (516,68,3,60), (517,68,4,100), (518,68,5,130), (519,68,6,170), (520,68,7,200), (521,68,8,201), (522,68,9,205), (523,68,10,208), (524,69,1,30), (525,69,2,30), (526,69,3,30), (527,69,4,30), (528,69,5,30), (529,69,6,30), (530,69,7,30), (531,69,8,30), (532,69,9,30), (533,69,10,30), (534,70,1,10), (535,70,2,20), (536,70,3,40), (537,70,4,60), (538,70,5,90), (539,70,6,110), (540,70,7,130), (541,70,8,160), (542,70,9,190), (543,70,10,202), (544,71,1,30), (545,71,2,60), (546,71,3,90), (547,71,4,110), (548,71,5,130), (549,71,6,150), (550,71,7,201), (551,71,8,202), (552,71,9,205), (553,71,10,208), (554,72,1,10), (555,72,2,30), (556,72,3,50), (557,72,4,80), (558,72,5,110), (559,72,6,150), (560,72,7,170), (561,72,8,190), (562,72,9,202), (563,72,10,207), (564,73,1,20), (565,73,2,20), (566,73,3,20), (567,73,4,20), (568,73,5,20), (569,73,6,20), (570,73,7,20), (571,73,8,20), (572,73,9,20), (573,73,10,20), (574,74,1,20), (575,74,2,50), (576,74,3,70), (577,74,4,100), (578,74,5,130), (579,74,6,160), (580,74,7,180), (581,74,8,201), (582,74,9,204), (583,74,10,209);
|
|
INSERT INTO perk_prof (perk_id, profession) VALUES (1, 'Adventurer'), (1, 'Agent'), (1, 'Bureaucrat'), (1, 'Doctor'), (1, 'Enforcer'), (1, 'Engineer'), (1, 'Fixer'), (1, 'Keeper'), (1, 'Martial Artist'), (1, 'Meta-Physicist'), (1, 'Nano-Technician'), (1, 'Shade'), (1, 'Soldier'), (1, 'Trader'), (2, 'Adventurer'), (2, 'Agent'), (2, 'Bureaucrat'), (2, 'Doctor'), (2, 'Enforcer'), (2, 'Engineer'), (2, 'Fixer'), (2, 'Keeper'), (2, 'Martial Artist'), (2, 'Meta-Physicist'), (2, 'Nano-Technician'), (2, 'Shade'), (2, 'Soldier'), (2, 'Trader'), (3, 'Adventurer'), (3, 'Agent'), (3, 'Bureaucrat'), (3, 'Doctor'), (3, 'Enforcer'), (3, 'Engineer'), (3, 'Fixer'), (3, 'Keeper'), (3, 'Martial Artist'), (3, 'Meta-Physicist'), (3, 'Nano-Technician'), (3, 'Shade'), (3, 'Soldier'), (3, 'Trader'), (4, 'Adventurer'), (4, 'Agent'), (4, 'Bureaucrat'), (4, 'Doctor'), (4, 'Enforcer'), (4, 'Engineer'), (4, 'Fixer'), (4, 'Keeper'), (4, 'Martial Artist'), (4, 'Meta-Physicist'), (4, 'Nano-Technician'), (4, 'Shade'), (4, 'Soldier'), (4, 'Trader'), (5, 'Adventurer'), (5, 'Agent'), (5, 'Bureaucrat'), (5, 'Doctor'), (5, 'Enforcer'), (5, 'Engineer'), (5, 'Fixer'), (5, 'Keeper'), (5, 'Martial Artist'), (5, 'Meta-Physicist'), (5, 'Nano-Technician'), (5, 'Shade'), (5, 'Soldier'), (5, 'Trader'), (6, 'Adventurer'), (6, 'Agent'), (6, 'Bureaucrat'), (6, 'Doctor'), (6, 'Enforcer'), (6, 'Engineer'), (6, 'Fixer'), (6, 'Keeper'), (6, 'Martial Artist'), (6, 'Meta-Physicist'), (6, 'Nano-Technician'), (6, 'Shade'), (6, 'Soldier'), (6, 'Trader'), (7, 'Adventurer'), (7, 'Agent'), (7, 'Bureaucrat'), (7, 'Doctor'), (7, 'Enforcer'), (7, 'Engineer'), (7, 'Fixer'), (7, 'Keeper'), (7, 'Martial Artist'), (7, 'Meta-Physicist'), (7, 'Nano-Technician'), (7, 'Shade'), (7, 'Soldier'), (7, 'Trader'), (8, 'Adventurer'), (8, 'Agent'), (8, 'Bureaucrat'), (8, 'Doctor'), (8, 'Enforcer'), (8, 'Engineer'), (8, 'Fixer'), (8, 'Keeper'), (8, 'Martial Artist'), (8, 'Meta-Physicist'), (8, 'Nano-Technician'), (8, 'Shade'), (8, 'Soldier'), (8, 'Trader'), (9, 'Adventurer'), (9, 'Agent'), (9, 'Bureaucrat'), (9, 'Doctor'), (9, 'Enforcer'), (9, 'Engineer'), (9, 'Fixer'), (9, 'Keeper'), (9, 'Martial Artist'), (9, 'Meta-Physicist'), (9, 'Nano-Technician'), (9, 'Shade'), (9, 'Soldier'), (9, 'Trader'), (10, 'Adventurer'), (10, 'Agent'), (10, 'Bureaucrat'), (10, 'Doctor'), (10, 'Enforcer'), (10, 'Engineer'), (10, 'Fixer'), (10, 'Keeper'), (10, 'Martial Artist'), (10, 'Meta-Physicist'), (10, 'Nano-Technician'), (10, 'Shade'), (10, 'Soldier'), (10, 'Trader'), (11, 'Adventurer'), (11, 'Agent'), (11, 'Bureaucrat'), (11, 'Doctor'), (11, 'Enforcer'), (11, 'Engineer'), (11, 'Fixer'), (11, 'Keeper'), (11, 'Martial Artist'), (11, 'Meta-Physicist'), (11, 'Nano-Technician'), (11, 'Shade'), (11, 'Soldier'), (11, 'Trader'), (12, 'Adventurer'), (12, 'Agent'), (12, 'Bureaucrat'), (12, 'Doctor'), (12, 'Enforcer'), (12, 'Engineer'), (12, 'Fixer'), (12, 'Keeper'), (12, 'Martial Artist'), (12, 'Meta-Physicist'), (12, 'Nano-Technician'), (12, 'Shade'), (12, 'Soldier'), (12, 'Trader'), (13, 'Adventurer'), (13, 'Agent'), (13, 'Bureaucrat'), (13, 'Doctor'), (13, 'Enforcer'), (13, 'Engineer'), (13, 'Fixer'), (13, 'Keeper'), (13, 'Martial Artist'), (13, 'Meta-Physicist'), (13, 'Nano-Technician'), (13, 'Shade'), (13, 'Soldier'), (13, 'Trader'), (14, 'Adventurer'), (14, 'Agent'), (14, 'Bureaucrat'), (14, 'Doctor'), (14, 'Enforcer'), (14, 'Engineer'), (14, 'Fixer'), (14, 'Keeper'), (14, 'Martial Artist'), (14, 'Meta-Physicist'), (14, 'Nano-Technician'), (14, 'Shade'), (14, 'Soldier'), (14, 'Trader'), (15, 'Adventurer'), (15, 'Enforcer'), (16, 'Enforcer'), (16, 'Meta-Physicist'), (17, 'Adventurer'), (17, 'Agent'), (17, 'Enforcer'), (17, 'Fixer'), (17, 'Keeper'), (17, 'Soldier'), (18, 'Adventurer'), (18, 'Fixer'), (18, 'Martial Artist'), (18, 'Shade'), (19, 'Meta-Physicist'), (19, 'Nano-Technician'), (20, 'Bureaucrat'), (20, 'Martial Artist'), (20, 'Shade'), (21, 'Enforcer'), (21, 'Martial Artist'), (22, 'Enforcer'), (22, 'Soldier'), (23, 'Agent'), (23, 'Soldier'), (24, 'Agent'), (24, 'Doctor'), (24, 'Engineer'), (24, 'Fixer'), (24, 'Soldier'), (24, 'Trader'), (25, 'Engineer'), (25, 'Soldier'), (25, 'Trader'), (26, 'Fixer'), (26, 'Soldier'), (27, 'Doctor'), (27, 'Engineer'), (27, 'Trader'), (28, 'Adventurer'), (28, 'Bureaucrat'), (28, 'Doctor'), (28, 'Engineer'), (28, 'Meta-Physicist'), (29, 'Engineer'), (29, 'Trader'), (30, 'Agent'), (30, 'Bureaucrat'), (30, 'Doctor'), (30, 'Meta-Physicist'), (30, 'Nano-Technician'), (30, 'Trader'), (31, 'Bureaucrat'), (31, 'Doctor'), (31, 'Meta-Physicist'), (31, 'Nano-Technician'), (32, 'Meta-Physicist'), (32, 'Nano-Technician'), (33, 'Martial Artist'), (34, 'Martial Artist'), (35, 'Fixer'), (36, 'Fixer'), (37, 'Fixer'), (38, 'Adventurer'), (39, 'Adventurer'), (40, 'Adventurer'), (41, 'Adventurer'), (42, 'Doctor'), (43, 'Doctor'), (44, 'Doctor'), (45, 'Soldier'), (46, 'Soldier'), (47, 'Engineer'), (48, 'Engineer'), (49, 'Engineer'), (50, 'Agent'), (51, 'Agent'), (52, 'Agent'), (53, 'Agent'), (54, 'Enforcer'), (55, 'Enforcer'), (56, 'Enforcer'), (57, 'Bureaucrat'), (58, 'Bureaucrat'), (59, 'Agent'), (60, 'Shade'), (61, 'Shade'), (62, 'Shade'), (63, 'Shade'), (64, 'Shade'), (65, 'Nano-Technician'), (66, 'Nano-Technician'), (67, 'Nano-Technician'), (68, 'Meta-Physicist'), (69, 'Meta-Physicist'), (70, 'Trader'), (71, 'Trader'), (72, 'Keeper'), (73, 'Keeper'), (74, 'Keeper'), (74, 'Enforcer');
|
|
INSERT INTO perk_level_buffs (perk_level_id, skill, amount) VALUES (1,'Strength',4), (1,'Stamina',4), (1,'Intelligence',4), (1,'Psychic',4), (1,'Sense',4), (1,'Agility',4), (1,'Body development',3), (2,'Strength',4), (2,'Stamina',4), (2,'Intelligence',4), (2,'Psychic',4), (2,'Sense',4), (2,'Agility',4), (2,'Body development',3), (3,'Strength',4), (3,'Stamina',4), (3,'Intelligence',4), (3,'Psychic',4), (3,'Sense',4), (3,'Agility',4), (3,'Body development',3), (4,'Strength',4), (4,'Stamina',4), (4,'Intelligence',4), (4,'Psychic',4), (4,'Sense',4), (4,'Agility',4), (4,'Body development',3), (5,'Strength',4), (5,'Stamina',4), (5,'Intelligence',4), (5,'Psychic',4), (5,'Sense',4), (5,'Agility',4), (5,'Body development',3), (6,'Strength',4), (6,'Stamina',4), (6,'Intelligence',4), (6,'Psychic',4), (6,'Sense',4), (6,'Agility',4), (6,'Body development',4), (7,'Strength',5), (7,'Stamina',5), (7,'Intelligence',5), (7,'Psychic',5), (7,'Sense',5), (7,'Agility',5), (7,'Body development',4), (8,'Strength',5), (8,'Stamina',5), (8,'Intelligence',5), (8,'Psychic',5), (8,'Sense',5), (8,'Agility',5), (8,'Body development',5), (9,'Strength',5), (9,'Stamina',5), (9,'Intelligence',5), (9,'Psychic',5), (9,'Sense',5), (9,'Agility',5), (9,'Body development',5), (10,'Strength',6), (10,'Stamina',6), (10,'Intelligence',6), (10,'Psychic',6), (10,'Sense',6), (10,'Agility',6), (10,'Body development',7), (11,'Treatment',10), (11,'First Aid',10), (12,'Treatment',20), (12,'First Aid',20), (13,'Treatment',30), (13,'First Aid',30), (14,'Treatment',40), (14,'First Aid',40), (15,'Strength',5), (15,'Stamina',5), (15,'Body development',10), (16,'Strength',5), (16,'Stamina',5), (16,'Body development',14), (17,'Strength',10), (17,'Stamina',10), (17,'Body development',25), (18,'Intelligence',8), (18,'Psychic',8), (18,'Nano pool',25), (19,'Intelligence',12), (19,'Psychic',12), (19,'Nano pool',35), (20,'Intelligence',20), (20,'Psychic',20), (20,'Nano pool',60), (21,'Martial arts',5), (22,'Martial arts',6), (23,'Martial arts',8), (24,'Martial arts',11), (25,'Martial arts',20), (26,'Multi melee',10), (26,'Multi ranged',10), (27,'Multi melee',15), (27,'Multi ranged',15), (28,'Multi melee',20), (28,'Multi ranged',20), (29,'Multi melee',30), (29,'Multi ranged',30), (29,'Cold damage modifier',5), (29,'Chemical damage modifier',5), (29,'Energy damage modifier',5), (29,'Fire damage modifier',5), (29,'Melee damage modifier',5), (29,'Poison damage modifier',5), (29,'Radiation damage modifier',5), (29,'Projectile damage modifier',5), (30,'Multi melee',45), (30,'Multi ranged',45), (30,'Defense modifier',8), (30,'Cold damage modifier',15), (30,'Chemical damage modifier',15), (30,'Energy damage modifier',15), (30,'Fire damage modifier',15), (30,'Melee damage modifier',15), (30,'Poison damage modifier',15), (30,'Radiation damage modifier',15), (30,'Projectile damage modifier',15), (31,'Map navigation',20), (31,'Adventuring',5), (32,'Map navigation',25), (32,'Adventuring',6), (33,'Map navigation',30), (33,'Adventuring',8), (34,'Map navigation',40), (34,'Adventuring',15), (35,'Map navigation',85), (35,'Adventuring',26), (36,'Max health',40), (37,'Max health',80), (38,'Max health',100), (39,'Max health',150), (40,'Max health',230), (41,'Max health',320), (42,'Max health',580), (43,'Max Nano',80), (44,'Max Nano',130), (45,'Max Nano',210), (46,'Max Nano',290), (47,'Max Nano',370), (48,'Max Nano',530), (49,'Max Nano',890), (50,'Run Speed',14), (50,'XP Modifier',1), (51,'Run Speed',18), (51,'XP Modifier',1), (52,'Run Speed',23), (52,'XP Modifier',1), (53,'Run Speed',45), (53,'XP Modifier',2), (54,'Vehicle air',22), (54,'Vehicle ground',22), (54,'Vehicle water',22), (55,'Vehicle air',38), (55,'Vehicle ground',38), (55,'Vehicle water',38), (56,'Vehicle air',50), (56,'Vehicle ground',50), (56,'Vehicle water',50), (57,'Vehicle air',90), (57,'Vehicle ground',90), (57,'Vehicle water',90), (58,'Computer literacy',10), (58,'NCU memory',10), (59,'Computer literacy',10), (59,'NCU memory',11), (60,'Computer literacy',10), (60,'NCU memory',12), (61,'Computer literacy',10), (61,'NCU memory',12), (62,'Computer literacy',10), (62,'NCU memory',15), (63,'Computer literacy',14), (63,'NCU memory',17), (64,'Computer literacy',16), (64,'NCU memory',18), (65,'Computer literacy',20), (65,'NCU memory',35), (66,'XP Modifier',1), (67,'XP Modifier',1), (68,'XP Modifier',2), (69,'XP Modifier',3), (70,'Biological metamorphosis',-200), (70,'Matter creation',-200), (70,'Matter metamorphosis',-200), (70,'Psychological modifications',-200), (70,'Sensory improvement',-200), (70,'Time and space',-200), (70,'Nano resist',300), (71,'Biological metamorphosis',-400), (71,'Matter creation',-400), (71,'Matter metamorphosis',-400), (71,'Psychological modifications',-400), (71,'Sensory improvement',-400), (71,'Time and space',-400), (71,'Nano resist',900), (72,'Biological metamorphosis',-800), (72,'Matter creation',-800), (72,'Matter metamorphosis',-800), (72,'Psychological modifications',-800), (72,'Sensory improvement',-800), (72,'Time and space',-800), (72,'Nano resist',1200), (73,'Biological metamorphosis',-1000), (73,'Matter creation',-1000), (73,'Matter metamorphosis',-1000), (73,'Psychological modifications',-1000), (73,'Sensory improvement',-1000), (73,'Time and space',-1000), (73,'Nano resist',1500), (74,'Biological metamorphosis',-1100), (74,'Matter creation',-1100), (74,'Matter metamorphosis',-1100), (74,'Psychological modifications',-1100), (74,'Sensory improvement',-1100), (74,'Time and space',-1100), (74,'Nano resist',1900), (75,'Biological metamorphosis',-1200), (75,'Matter creation',-1200), (75,'Matter metamorphosis',-1200), (75,'Psychological modifications',-1200), (75,'Sensory improvement',-1200), (75,'Time and space',-1200), (75,'Nano resist',2200), (76,'Biological metamorphosis',-1300), (76,'Matter creation',-1300), (76,'Matter metamorphosis',-1300), (76,'Psychological modifications',-1300), (76,'Sensory improvement',-1300), (76,'Time and space',-1300), (76,'Nano resist',4000), (77,'Biological metamorphosis',-2000), (77,'Matter creation',-2000), (77,'Matter metamorphosis',-2000), (77,'Psychological modifications',-2000), (77,'Sensory improvement',-2000), (77,'Time and space',-2000), (77,'Nano resist',8000), (78,'1h Edged',10), (78,'Fast attack',2), (79,'1h Edged',10), (79,'Fast attack',2), (80,'1h Edged',11), (80,'Fast attack',3), (81,'1h Edged',12), (81,'Fast attack',3), (82,'1h Edged',13), (82,'Fast attack',4), (83,'1h Edged',15), (83,'Fast attack',4), (84,'1h Edged',16), (84,'Fast attack',5), (85,'1h Edged',22), (85,'Fast attack',7), (86,'1h Edged',28), (86,'Fast attack',8), (87,'1h Edged',43), (87,'Fast attack',12), (88,'1h Blunt',10), (89,'1h Blunt',10), (90,'1h Blunt',12), (91,'1h Blunt',13), (92,'1h Blunt',14), (93,'1h Blunt',16), (94,'1h Blunt',18), (95,'1h Blunt',22), (96,'1h Blunt',30), (97,'1h Blunt',55), (98,'Strength',4), (98,'Stamina',4), (99,'Strength',6), (99,'Stamina',6), (100,'Strength',7), (100,'Stamina',7), (101,'Strength',8), (101,'Stamina',8), (102,'Strength',10), (102,'Stamina',10), (103,'Agility',4), (104,'Agility',6), (105,'Agility',8), (106,'Agility',12), (107,'Intelligence',1), (107,'Psychic',1), (108,'Intelligence',1), (108,'Psychic',1), (109,'Intelligence',1), (109,'Psychic',1), (110,'Intelligence',1), (110,'Psychic',1), (111,'Intelligence',1), (111,'Psychic',1), (112,'Intelligence',1), (112,'Psychic',1), (113,'Intelligence',1), (113,'Psychic',1), (114,'Intelligence',2), (114,'Psychic',2), (115,'Intelligence',2), (115,'Psychic',2), (116,'Intelligence',4), (116,'Psychic',4), (117,'Defense modifier',20), (117,'Critical decrease',2), (118,'Defense modifier',20), (118,'Critical decrease',2), (119,'Defense modifier',22), (119,'Critical decrease',3), (120,'Defense modifier',23), (120,'Critical decrease',3), (121,'Defense modifier',24), (121,'Critical decrease',4), (122,'Defense modifier',26), (122,'Critical decrease',7), (123,'Defense modifier',28), (123,'Critical decrease',9), (124,'Defense modifier',32), (124,'Critical decrease',12), (125,'Defense modifier',40), (125,'Critical decrease',15), (126,'Defense modifier',65), (126,'Critical decrease',23), (127,'Brawl',15), (127,'Cold damage modifier',5), (127,'Chemical damage modifier',5), (127,'Energy damage modifier',5), (127,'Fire damage modifier',5), (127,'Melee damage modifier',5), (127,'Poison damage modifier',5), (127,'Radiation damage modifier',5), (127,'Projectile damage modifier',5), (128,'Brawl',20), (128,'Cold damage modifier',5), (128,'Chemical damage modifier',5), (128,'Energy damage modifier',5), (128,'Fire damage modifier',5), (128,'Melee damage modifier',5), (128,'Poison damage modifier',5), (128,'Radiation damage modifier',5), (128,'Projectile damage modifier',5), (129,'Brawl',25), (129,'Cold damage modifier',6), (129,'Chemical damage modifier',6), (129,'Energy damage modifier',6), (129,'Fire damage modifier',6), (129,'Melee damage modifier',6), (129,'Poison damage modifier',6), (129,'Radiation damage modifier',6), (129,'Projectile damage modifier',6), (130,'Brawl',30), (130,'Cold damage modifier',8), (130,'Chemical damage modifier',8), (130,'Energy damage modifier',8), (130,'Fire damage modifier',8), (130,'Melee damage modifier',8), (130,'Poison damage modifier',8), (130,'Radiation damage modifier',8), (130,'Projectile damage modifier',8), (131,'Brawl',45), (131,'Cold damage modifier',10), (131,'Chemical damage modifier',10), (131,'Energy damage modifier',10), (131,'Fire damage modifier',10), (131,'Melee damage modifier',10), (131,'Poison damage modifier',10), (131,'Radiation damage modifier',10), (131,'Projectile damage modifier',10), (132,'Brawl',65), (132,'Cold damage modifier',16), (132,'Chemical damage modifier',16), (132,'Energy damage modifier',16), (132,'Fire damage modifier',16), (132,'Melee damage modifier',16), (132,'Poison damage modifier',16), (132,'Radiation damage modifier',16), (132,'Projectile damage modifier',16), (133,'Max health',50), (134,'Max health',85), (135,'Max health',115), (136,'Max health',150), (137,'Max health',210), (138,'Max health',290), (139,'Max health',370), (140,'Max health',480), (141,'Max health',590), (142,'Max health',840), (143,'Rifle',6), (143,'Fling Shot',1), (143,'Max Health',10), (144,'Rifle',7), (144,'Fling Shot',1), (144,'Max Health',19), (145,'Rifle',8), (145,'Fling Shot',1), (145,'Max Health',23), (146,'Rifle',9), (146,'Fling Shot',1), (146,'Max Health',27), (147,'Rifle',10), (147,'Fling Shot',2), (147,'Max Health',32), (148,'Rifle',11), (148,'Fling Shot',2), (148,'Max Health',36), (149,'Rifle',12), (149,'Fling Shot',2), (149,'Max Health',44), (150,'Rifle',14), (150,'Fling Shot',2), (150,'Max Health',53), (151,'Rifle',18), (151,'Fling Shot',3), (151,'Max Health',62), (152,'Rifle',25), (152,'Fling Shot',5), (152,'Max Health',94), (153,'Ranged Energy',10), (153,'Cold damage modifier',2), (153,'Chemical damage modifier',2), (153,'Energy damage modifier',2), (153,'Fire damage modifier',2), (153,'Melee damage modifier',2), (153,'Poison damage modifier',2), (153,'Radiation damage modifier',2), (153,'Projectile damage modifier',2), (154,'Ranged Energy',10), (154,'Cold damage modifier',3), (154,'Chemical damage modifier',3), (154,'Energy damage modifier',3), (154,'Fire damage modifier',3), (154,'Melee damage modifier',3), (154,'Poison damage modifier',3), (154,'Radiation damage modifier',3), (154,'Projectile damage modifier',3), (155,'Ranged Energy',12), (155,'Cold damage modifier',3), (155,'Chemical damage modifier',3), (155,'Energy damage modifier',3), (155,'Fire damage modifier',3), (155,'Melee damage modifier',3), (155,'Poison damage modifier',3), (155,'Radiation damage modifier',3), (155,'Projectile damage modifier',3), (156,'Ranged Energy',13), (156,'Cold damage modifier',3), (156,'Chemical damage modifier',3), (156,'Energy damage modifier',3), (156,'Fire damage modifier',3), (156,'Melee damage modifier',3), (156,'Poison damage modifier',3), (156,'Radiation damage modifier',3), (156,'Projectile damage modifier',3), (157,'Ranged Energy',14), (157,'Cold damage modifier',3), (157,'Chemical damage modifier',3), (157,'Energy damage modifier',3), (157,'Fire damage modifier',3), (157,'Melee damage modifier',3), (157,'Poison damage modifier',3), (157,'Radiation damage modifier',3), (157,'Projectile damage modifier',3), (158,'Ranged Energy',16), (158,'Cold damage modifier',4), (158,'Chemical damage modifier',4), (158,'Energy damage modifier',4), (158,'Fire damage modifier',4), (158,'Melee damage modifier',4), (158,'Poison damage modifier',4), (158,'Radiation damage modifier',4), (158,'Projectile damage modifier',4), (159,'Ranged Energy',18), (159,'Cold damage modifier',4), (159,'Chemical damage modifier',4), (159,'Energy damage modifier',4), (159,'Fire damage modifier',4), (159,'Melee damage modifier',4), (159,'Poison damage modifier',4), (159,'Radiation damage modifier',4), (159,'Projectile damage modifier',4), (160,'Ranged Energy',22), (160,'Cold damage modifier',6), (160,'Chemical damage modifier',6), (160,'Energy damage modifier',6), (160,'Fire damage modifier',6), (160,'Melee damage modifier',6), (160,'Poison damage modifier',6), (160,'Radiation damage modifier',6), (160,'Projectile damage modifier',6), (161,'Ranged Energy',30), (161,'Cold damage modifier',8), (161,'Chemical damage modifier',8), (161,'Energy damage modifier',8), (161,'Fire damage modifier',8), (161,'Melee damage modifier',8), (161,'Poison damage modifier',8), (161,'Radiation damage modifier',8), (161,'Projectile damage modifier',8), (162,'Ranged Energy',55), (162,'Cold damage modifier',14), (162,'Chemical damage modifier',14), (162,'Energy damage modifier',14), (162,'Fire damage modifier',14), (162,'Melee damage modifier',14), (162,'Poison damage modifier',14), (162,'Radiation damage modifier',14), (162,'Projectile damage modifier',14), (163,'Shotgun',10), (163,'Cold damage modifier',2), (163,'Chemical damage modifier',2), (163,'Energy damage modifier',2), (163,'Fire damage modifier',2), (163,'Melee damage modifier',2), (163,'Poison damage modifier',2), (163,'Radiation damage modifier',2), (163,'Projectile damage modifier',2), (164,'Shotgun',10), (164,'Cold damage modifier',3), (164,'Chemical damage modifier',3), (164,'Energy damage modifier',3), (164,'Fire damage modifier',3), (164,'Melee damage modifier',3), (164,'Poison damage modifier',3), (164,'Radiation damage modifier',3), (164,'Projectile damage modifier',3), (165,'Shotgun',12), (165,'Cold damage modifier',3), (165,'Chemical damage modifier',3), (165,'Energy damage modifier',3), (165,'Fire damage modifier',3), (165,'Melee damage modifier',3), (165,'Poison damage modifier',3), (165,'Radiation damage modifier',3), (165,'Projectile damage modifier',3), (166,'Shotgun',13), (166,'Cold damage modifier',4), (166,'Chemical damage modifier',4), (166,'Energy damage modifier',4), (166,'Fire damage modifier',4), (166,'Melee damage modifier',4), (166,'Poison damage modifier',4), (166,'Radiation damage modifier',4), (166,'Projectile damage modifier',4), (167,'Shotgun',14), (167,'Cold damage modifier',4), (167,'Chemical damage modifier',4), (167,'Energy damage modifier',4), (167,'Fire damage modifier',4), (167,'Melee damage modifier',4), (167,'Poison damage modifier',4), (167,'Radiation damage modifier',4), (167,'Projectile damage modifier',4), (168,'Shotgun',16), (168,'Cold damage modifier',5), (168,'Chemical damage modifier',5), (168,'Energy damage modifier',5), (168,'Fire damage modifier',5), (168,'Melee damage modifier',5), (168,'Poison damage modifier',5), (168,'Radiation damage modifier',5), (168,'Projectile damage modifier',5), (169,'Shotgun',18), (169,'Cold damage modifier',6), (169,'Chemical damage modifier',6), (169,'Energy damage modifier',6), (169,'Fire damage modifier',6), (169,'Melee damage modifier',6), (169,'Poison damage modifier',6), (169,'Radiation damage modifier',6), (169,'Projectile damage modifier',6), (170,'Shotgun',22), (170,'Cold damage modifier',9), (170,'Chemical damage modifier',9), (170,'Energy damage modifier',9), (170,'Fire damage modifier',9), (170,'Melee damage modifier',9), (170,'Poison damage modifier',9), (170,'Radiation damage modifier',9), (170,'Projectile damage modifier',9), (171,'Shotgun',30), (171,'Cold damage modifier',14), (171,'Chemical damage modifier',14), (171,'Energy damage modifier',14), (171,'Fire damage modifier',14), (171,'Melee damage modifier',14), (171,'Poison damage modifier',14), (171,'Radiation damage modifier',14), (171,'Projectile damage modifier',14), (172,'Shotgun',55), (172,'Cold damage modifier',30), (172,'Chemical damage modifier',30), (172,'Energy damage modifier',30), (172,'Fire damage modifier',30), (172,'Melee damage modifier',30), (172,'Poison damage modifier',30), (172,'Radiation damage modifier',30), (172,'Projectile damage modifier',30), (173,'Smg',10), (173,'Burst',1), (174,'Smg',10), (174,'Burst',1), (175,'Smg',12), (175,'Burst',1), (176,'Smg',13), (176,'Burst',1), (177,'Smg',14), (177,'Burst',2), (178,'Smg',16), (178,'Burst',2), (179,'Smg',18), (179,'Burst',2), (180,'Smg',22), (180,'Burst',3), (181,'Smg',30), (181,'Burst',3), (182,'Smg',55), (182,'Burst',4), (183,'Chemistry',15), (183,'Pharmaceuticals',15), (184,'Chemistry',20), (184,'Pharmaceuticals',20), (185,'Chemistry',25), (185,'Pharmaceuticals',25), (186,'Chemistry',30), (186,'Pharmaceuticals',30), (187,'Chemistry',40), (187,'Pharmaceuticals',40), (188,'Chemistry',70), (188,'Pharmaceuticals',70), (189,'Pistol',10), (189,'Fling shot',1), (189,'Cold damage modifier',2), (189,'Chemical damage modifier',2), (189,'Energy damage modifier',2), (189,'Fire damage modifier',2), (189,'Melee damage modifier',2), (189,'Poison damage modifier',2), (189,'Radiation damage modifier',2), (189,'Projectile damage modifier',2), (190,'Pistol',10), (190,'Fling shot',1), (190,'Cold damage modifier',3), (190,'Chemical damage modifier',3), (190,'Energy damage modifier',3), (190,'Fire damage modifier',3), (190,'Melee damage modifier',3), (190,'Poison damage modifier',3), (190,'Radiation damage modifier',3), (190,'Projectile damage modifier',3), (191,'Pistol',12), (191,'Fling shot',1), (191,'Cold damage modifier',3), (191,'Chemical damage modifier',3), (191,'Energy damage modifier',3), (191,'Fire damage modifier',3), (191,'Melee damage modifier',3), (191,'Poison damage modifier',3), (191,'Radiation damage modifier',3), (191,'Projectile damage modifier',3), (192,'Pistol',13), (192,'Fling shot',1), (192,'Cold damage modifier',4), (192,'Chemical damage modifier',4), (192,'Energy damage modifier',4), (192,'Fire damage modifier',4), (192,'Melee damage modifier',4), (192,'Poison damage modifier',4), (192,'Radiation damage modifier',4), (192,'Projectile damage modifier',4), (193,'Pistol',14), (193,'Fling shot',2), (193,'Cold damage modifier',4), (193,'Chemical damage modifier',4), (193,'Energy damage modifier',4), (193,'Fire damage modifier',4), (193,'Melee damage modifier',4), (193,'Poison damage modifier',4), (193,'Radiation damage modifier',4), (193,'Projectile damage modifier',4), (194,'Pistol',16), (194,'Fling shot',2), (194,'Cold damage modifier',5), (194,'Chemical damage modifier',5), (194,'Energy damage modifier',5), (194,'Fire damage modifier',5), (194,'Melee damage modifier',5), (194,'Poison damage modifier',5), (194,'Radiation damage modifier',5), (194,'Projectile damage modifier',5), (195,'Pistol',18), (195,'Fling shot',2), (195,'Cold damage modifier',5), (195,'Chemical damage modifier',5), (195,'Energy damage modifier',5), (195,'Fire damage modifier',5), (195,'Melee damage modifier',5), (195,'Poison damage modifier',5), (195,'Radiation damage modifier',5), (195,'Projectile damage modifier',5), (196,'Pistol',22), (196,'Fling shot',3), (196,'Cold damage modifier',7), (196,'Chemical damage modifier',7), (196,'Energy damage modifier',7), (196,'Fire damage modifier',7), (196,'Melee damage modifier',7), (196,'Poison damage modifier',7), (196,'Radiation damage modifier',7), (196,'Projectile damage modifier',7), (197,'Pistol',30), (197,'Fling shot',3), (197,'Cold damage modifier',9), (197,'Chemical damage modifier',9), (197,'Energy damage modifier',9), (197,'Fire damage modifier',9), (197,'Melee damage modifier',9), (197,'Poison damage modifier',9), (197,'Radiation damage modifier',9), (197,'Projectile damage modifier',9), (198,'Pistol',55), (198,'Fling shot',4), (198,'Cold damage modifier',18), (198,'Chemical damage modifier',18), (198,'Energy damage modifier',18), (198,'Fire damage modifier',18), (198,'Melee damage modifier',18), (198,'Poison damage modifier',18), (198,'Radiation damage modifier',18), (198,'Projectile damage modifier',18), (199,'Electrical engineering',10), (199,'Quantum physics',10), (199,'Mechanical engineering',10), (200,'Electrical engineering',12), (200,'Quantum physics',12), (200,'Mechanical engineering',12), (201,'Electrical engineering',16), (201,'Quantum physics',16), (201,'Mechanical engineering',16), (202,'Electrical engineering',27), (202,'Quantum physics',27), (202,'Mechanical engineering',27), (203,'Biological metamorphosis',5), (203,'Matter creation',5), (203,'Matter metamorphosis',5), (203,'Psychological modifications',5), (203,'Sensory improvement',5), (203,'Time and space',5), (204,'Biological metamorphosis',6), (204,'Matter creation',6), (204,'Matter metamorphosis',6), (204,'Psychological modifications',6), (204,'Sensory improvement',6), (204,'Time and space',6), (205,'Biological metamorphosis',7), (205,'Matter creation',7), (205,'Matter metamorphosis',7), (205,'Psychological modifications',7), (205,'Sensory improvement',7), (205,'Time and space',7), (206,'Biological metamorphosis',8), (206,'Matter creation',8), (206,'Matter metamorphosis',8), (206,'Psychological modifications',8), (206,'Sensory improvement',8), (206,'Time and space',8), (207,'Biological metamorphosis',9), (207,'Matter creation',9), (207,'Matter metamorphosis',9), (207,'Psychological modifications',9), (207,'Sensory improvement',9), (207,'Time and space',9), (208,'Biological metamorphosis',10), (208,'Matter creation',10), (208,'Matter metamorphosis',10), (208,'Psychological modifications',10), (208,'Sensory improvement',10), (208,'Time and space',10), (209,'Biological metamorphosis',11), (209,'Matter creation',11), (209,'Matter metamorphosis',11), (209,'Psychological modifications',11), (209,'Sensory improvement',11), (209,'Time and space',11), (210,'Biological metamorphosis',12), (210,'Matter creation',12), (210,'Matter metamorphosis',12), (210,'Psychological modifications',12), (210,'Sensory improvement',12), (210,'Time and space',12), (211,'Biological metamorphosis',13), (211,'Matter creation',13), (211,'Matter metamorphosis',13), (211,'Psychological modifications',13), (211,'Sensory improvement',13), (211,'Time and space',13), (212,'Biological metamorphosis',19), (212,'Matter creation',19), (212,'Matter metamorphosis',19), (212,'Psychological modifications',19), (212,'Sensory improvement',19), (212,'Time and space',19), (213,'Max health',5), (213,'Max nano',10), (214,'Max health',8), (214,'Max nano',15), (215,'Max health',10), (215,'Max nano',20), (216,'Max health',13), (216,'Max nano',25), (216,'Biological metamorphosis',1), (216,'Matter creation',1), (216,'Matter metamorphosis',1), (216,'Psychological modifications',1), (216,'Sensory improvement',1), (216,'Time and space',1), (217,'Max health',14), (217,'Max nano',30), (217,'Biological metamorphosis',1), (217,'Matter creation',1), (217,'Matter metamorphosis',1), (217,'Psychological modifications',1), (217,'Sensory improvement',1), (217,'Time and space',1), (218,'Max health',17), (218,'Max nano',35), (218,'Biological metamorphosis',1), (218,'Matter creation',1), (218,'Matter metamorphosis',1), (218,'Psychological modifications',1), (218,'Sensory improvement',1), (218,'Time and space',1), (219,'Max health',18), (219,'Max nano',40), (219,'Biological metamorphosis',2), (219,'Matter creation',2), (219,'Matter metamorphosis',2), (219,'Psychological modifications',2), (219,'Sensory improvement',2), (219,'Time and space',2), (220,'Max health',20), (220,'Max nano',45), (220,'Biological metamorphosis',2), (220,'Matter creation',2), (220,'Matter metamorphosis',2), (220,'Psychological modifications',2), (220,'Sensory improvement',2), (220,'Time and space',2), (221,'Max health',22), (221,'Max nano',70), (221,'Biological metamorphosis',3), (221,'Matter creation',3), (221,'Matter metamorphosis',3), (221,'Psychological modifications',3), (221,'Sensory improvement',3), (221,'Time and space',3), (222,'Max health',33), (222,'Max nano',110), (222,'Biological metamorphosis',5), (222,'Matter creation',5), (222,'Matter metamorphosis',5), (222,'Psychological modifications',5), (222,'Sensory improvement',5), (222,'Time and space',5), (223,'Nano programming',10), (223,'Max nano',25), (224,'Nano programming',10), (224,'Max nano',40), (225,'Nano programming',12), (225,'Max nano',65), (226,'Nano programming',13), (226,'Max nano',75), (227,'Nano programming',14), (227,'Max nano',90), (228,'Nano programming',16), (228,'Max nano',110), (229,'Nano programming',18), (229,'Max nano',130), (230,'Nano programming',22), (230,'Max nano',145), (231,'Nano programming',30), (231,'Max nano',160), (232,'Nano programming',55), (232,'Max nano',260), (233,'Cold damage modifier',7), (233,'Chemical damage modifier',7), (233,'Energy damage modifier',7), (233,'Fire damage modifier',7), (233,'Melee damage modifier',7), (233,'Poison damage modifier',7), (233,'Radiation damage modifier',7), (233,'Projectile damage modifier',7), (234,'Cold damage modifier',9), (234,'Chemical damage modifier',9), (234,'Energy damage modifier',9), (234,'Fire damage modifier',9), (234,'Melee damage modifier',9), (234,'Poison damage modifier',9), (234,'Radiation damage modifier',9), (234,'Projectile damage modifier',9), (235,'Cold damage modifier',11), (235,'Chemical damage modifier',11), (235,'Energy damage modifier',11), (235,'Fire damage modifier',11), (235,'Melee damage modifier',11), (235,'Poison damage modifier',11), (235,'Radiation damage modifier',11), (235,'Projectile damage modifier',11), (236,'Cold damage modifier',13), (236,'Chemical damage modifier',13), (236,'Energy damage modifier',13), (236,'Fire damage modifier',13), (236,'Melee damage modifier',13), (236,'Poison damage modifier',13), (236,'Radiation damage modifier',13), (236,'Projectile damage modifier',13), (237,'Cold damage modifier',17), (237,'Chemical damage modifier',17), (237,'Energy damage modifier',17), (237,'Fire damage modifier',17), (237,'Melee damage modifier',17), (237,'Poison damage modifier',17), (237,'Radiation damage modifier',17), (237,'Projectile damage modifier',17), (238,'Cold damage modifier',19), (238,'Chemical damage modifier',19), (238,'Energy damage modifier',19), (238,'Fire damage modifier',19), (238,'Melee damage modifier',19), (238,'Poison damage modifier',19), (238,'Radiation damage modifier',19), (238,'Projectile damage modifier',19), (239,'Cold damage modifier',24), (239,'Chemical damage modifier',24), (239,'Energy damage modifier',24), (239,'Fire damage modifier',24), (239,'Melee damage modifier',24), (239,'Poison damage modifier',24), (239,'Radiation damage modifier',24), (239,'Projectile damage modifier',24), (240,'Cold damage modifier',27), (240,'Chemical damage modifier',27), (240,'Energy damage modifier',27), (240,'Fire damage modifier',27), (240,'Melee damage modifier',27), (240,'Poison damage modifier',27), (240,'Radiation damage modifier',27), (240,'Projectile damage modifier',27), (241,'Cold damage modifier',35), (241,'Chemical damage modifier',35), (241,'Energy damage modifier',35), (241,'Fire damage modifier',35), (241,'Melee damage modifier',35), (241,'Poison damage modifier',35), (241,'Radiation damage modifier',35), (241,'Projectile damage modifier',35), (242,'Cold damage modifier',58), (242,'Chemical damage modifier',58), (242,'Energy damage modifier',58), (242,'Fire damage modifier',58), (242,'Melee damage modifier',58), (242,'Poison damage modifier',58), (242,'Radiation damage modifier',58), (242,'Projectile damage modifier',58), (243,'Martial arts',5), (243,'Dimach',10), (243,'Riposte',5), (244,'Martial arts',5), (244,'Dimach',10), (244,'Riposte',5), (245,'Martial arts',7), (245,'Dimach',12), (245,'Riposte',6), (246,'Martial arts',8), (246,'Dimach',13), (246,'Riposte',6), (247,'Martial arts',9), (247,'Dimach',14), (247,'Riposte',7), (248,'Martial arts',11), (248,'Dimach',16), (248,'Riposte',8), (249,'Martial arts',13), (249,'Dimach',18), (249,'Riposte',9), (250,'Martial arts',17), (250,'Dimach',22), (250,'Riposte',11), (251,'Martial arts',25), (251,'Dimach',30), (251,'Riposte',15), (252,'Martial arts',50), (252,'Dimach',55), (252,'Riposte',28), (253,'Sense',3), (253,'Breaking and entry',25), (253,'Trap disarming',25), (254,'Sense',5), (254,'Breaking and entry',40), (254,'Trap disarming',40), (255,'Sense',8), (255,'Breaking and entry',55), (255,'Trap disarming',55), (256,'Sense',14), (256,'Breaking and entry',80), (256,'Trap disarming',80), (257,'Computer literacy',15), (257,'NCU memory',10), (258,'Computer literacy',20), (258,'NCU memory',13), (259,'Computer literacy',25), (259,'NCU memory',17), (260,'Computer literacy',40), (260,'NCU memory',30), (261,'Full auto',20), (262,'Full auto',25), (263,'Full auto',30), (264,'Full auto',35), (265,'Full auto',40), (266,'Full auto',50), (267,'Agility',1), (267,'Dodge ranged',1), (267,'Duck explosives',1), (267,'Evade close',1), (267,'Concealment',7), (267,'Defense modifier',2), (267,'Aimed shot',3), (268,'Agility',2), (268,'Dodge ranged',1), (268,'Duck explosives',1), (268,'Evade close',1), (268,'Concealment',10), (268,'Defense modifier',3), (268,'Aimed shot',5), (269,'Agility',3), (269,'Dodge ranged',1), (269,'Duck explosives',1), (269,'Evade close',1), (269,'Concealment',12), (269,'Defense modifier',4), (269,'Aimed shot',8), (270,'Agility',4), (270,'Dodge ranged',1), (270,'Duck explosives',1), (270,'Evade close',1), (270,'Concealment',15), (270,'Defense modifier',7), (270,'Aimed shot',12), (271,'Agility',6), (271,'Dodge ranged',2), (271,'Duck explosives',2), (271,'Evade close',2), (271,'Concealment',19), (271,'Defense modifier',11), (271,'Aimed shot',20), (272,'Agility',9), (272,'Dodge ranged',4), (272,'Duck explosives',4), (272,'Evade close',4), (272,'Concealment',27), (272,'Defense modifier',18), (272,'Aimed shot',32), (273,'Agility',1), (273,'Dodge ranged',1), (273,'Duck explosives',1), (273,'Evade close',1), (273,'Concealment',7), (273,'Defense modifier',2), (273,'Sneak attack',3), (274,'Agility',2), (274,'Dodge ranged',1), (274,'Duck explosives',1), (274,'Evade close',1), (274,'Concealment',10), (274,'Defense modifier',3), (274,'Sneak attack',5), (275,'Agility',3), (275,'Dodge ranged',1), (275,'Duck explosives',1), (275,'Evade close',1), (275,'Concealment',12), (275,'Defense modifier',4), (275,'Sneak attack',8), (276,'Agility',4), (276,'Dodge ranged',1), (276,'Duck explosives',1), (276,'Evade close',1), (276,'Concealment',15), (276,'Defense modifier',7), (276,'Sneak attack',12), (277,'Agility',6), (277,'Dodge ranged',2), (277,'Duck explosives',2), (277,'Evade close',2), (277,'Concealment',19), (277,'Defense modifier',11), (277,'Sneak attack',20), (278,'Agility',9), (278,'Dodge ranged',4), (278,'Duck explosives',4), (278,'Evade close',4), (278,'Concealment',27), (278,'Defense modifier',18), (278,'Sneak attack',32), (279,'Multi melee',10), (279,'Multi ranged',10), (279,'Cold damage modifier',30), (279,'Chemical damage modifier',30), (279,'Energy damage modifier',30), (279,'Fire damage modifier',30), (279,'Melee damage modifier',30), (279,'Poison damage modifier',30), (279,'Radiation damage modifier',30), (279,'Projectile damage modifier',30), (280,'Run speed',20), (280,'Adventuring',10), (280,'Multi melee',5), (280,'Ranged init',10), (280,'1h Edged',4), (280,'Swimming',45), (281,'Run speed',30), (281,'Adventuring',15), (281,'Multi melee',10), (281,'Ranged init',10), (281,'1h Edged',5), (281,'Swimming',65), (282,'Run speed',40), (282,'Adventuring',25), (282,'Multi melee',10), (282,'Ranged init',10), (282,'1h Edged',11), (282,'Swimming',90), (283,'Treatment',2), (283,'First Aid',1), (283,'Max health',5), (283,'Biological metamorphosis',1), (283,'Matter metamorphosis',1), (284,'Treatment',2), (284,'First Aid',1), (284,'Max health',12), (284,'Biological metamorphosis',1), (284,'Matter metamorphosis',1), (285,'Treatment',3), (285,'First Aid',1), (285,'Max health',20), (285,'Biological metamorphosis',2), (285,'Matter metamorphosis',2), (286,'Treatment',3), (286,'First Aid',2), (286,'Max health',24), (286,'Biological metamorphosis',2), (286,'Matter metamorphosis',2), (287,'Treatment',4), (287,'First Aid',2), (287,'Max health',30), (287,'Biological metamorphosis',3), (287,'Matter metamorphosis',3), (288,'Treatment',4), (288,'First Aid',2), (288,'Max health',32), (288,'Biological metamorphosis',4), (288,'Matter metamorphosis',4), (289,'Treatment',5), (289,'First Aid',3), (289,'Max health',38), (289,'Biological metamorphosis',5), (289,'Matter metamorphosis',5), (290,'Treatment',5), (290,'First Aid',3), (290,'Max health',45), (290,'Biological metamorphosis',6), (290,'Matter metamorphosis',6), (291,'Treatment',6), (291,'First Aid',4), (291,'Max health',50), (291,'Biological metamorphosis',7), (291,'Matter metamorphosis',7), (292,'Treatment',6), (292,'First Aid',6), (292,'Max health',84), (292,'Biological metamorphosis',12), (292,'Matter metamorphosis',12), (293,'Treatment',5), (293,'First Aid',4), (293,'Biological metamorphosis',3), (293,'Matter metamorphosis',3), (294,'Treatment',6), (294,'First Aid',4), (294,'Biological metamorphosis',4), (294,'Matter metamorphosis',4), (295,'Treatment',7), (295,'First Aid',6), (295,'Biological metamorphosis',6), (295,'Matter metamorphosis',6), (296,'Treatment',10), (296,'First Aid',7), (296,'Biological metamorphosis',7), (296,'Matter metamorphosis',7), (297,'Treatment',12), (297,'First Aid',10), (297,'Biological metamorphosis',9), (297,'Matter metamorphosis',9), (298,'Treatment',14), (298,'First Aid',14), (298,'Biological metamorphosis',13), (298,'Matter metamorphosis',13), (299,'First Aid',1), (299,'Healing efficiency',2), (300,'First Aid',1), (300,'Healing efficiency',2), (301,'First Aid',1), (301,'Healing efficiency',2), (302,'First Aid',1), (302,'Healing efficiency',2), (303,'First Aid',1), (303,'Healing efficiency',2), (304,'First Aid',2), (304,'Healing efficiency',2), (305,'First Aid',3), (305,'Healing efficiency',2), (306,'First Aid',4), (306,'Healing efficiency',2), (307,'First Aid',6), (307,'Healing efficiency',2), (308,'First Aid',10), (308,'Healing efficiency',3), (309,'Assault rifle',10), (309,'Heavy weapons',10), (310,'Assault rifle',12), (310,'Heavy weapons',12), (311,'Assault rifle',13), (311,'Heavy weapons',13), (312,'Assault rifle',15), (312,'Heavy weapons',15), (313,'Assault rifle',22), (313,'Heavy weapons',22), (314,'Assault rifle',28), (314,'Heavy weapons',28), (315,'Assault rifle',40), (315,'Heavy weapons',40), (316,'Assault rifle',60), (316,'Heavy weapons',60), (317,'Full auto',10), (317,'Burst',8), (317,'Fling shot',8), (317,'Dodge ranged',5), (317,'Duck explosives',1), (317,'Evade close',1), (318,'Full auto',10), (318,'Burst',8), (318,'Fling shot',8), (318,'Dodge ranged',5), (318,'Duck explosives',1), (318,'Evade close',1), (319,'Full auto',12), (319,'Burst',10), (319,'Fling shot',10), (319,'Dodge ranged',7), (319,'Duck explosives',1), (319,'Evade close',1), (320,'Full auto',13), (320,'Burst',11), (320,'Fling shot',11), (320,'Dodge ranged',8), (320,'Duck explosives',2), (320,'Evade close',2), (321,'Full auto',14), (321,'Burst',12), (321,'Fling shot',12), (321,'Dodge ranged',9), (321,'Duck explosives',2), (321,'Evade close',2), (322,'Full auto',16), (322,'Burst',14), (322,'Fling shot',14), (322,'Dodge ranged',11), (322,'Duck explosives',4), (322,'Evade close',4), (323,'Full auto',18), (323,'Burst',16), (323,'Fling shot',16), (323,'Dodge ranged',13), (323,'Duck explosives',4), (323,'Evade close',4), (324,'Full auto',22), (324,'Burst',20), (324,'Fling shot',20), (324,'Dodge ranged',19), (324,'Duck explosives',5), (324,'Evade close',5), (325,'Full auto',30), (325,'Burst',28), (325,'Fling shot',28), (325,'Dodge ranged',23), (325,'Duck explosives',10), (325,'Evade close',10), (326,'Full auto',55), (326,'Burst',53), (326,'Fling shot',53), (326,'Dodge ranged',50), (326,'Duck explosives',20), (326,'Evade close',20), (327,'Grenade',10), (328,'Grenade',10), (329,'Grenade',12), (330,'Grenade',13), (331,'Grenade',14), (332,'Grenade',16), (333,'Grenade',18), (334,'Grenade',22), (335,'Grenade',30), (336,'Grenade',55), (337,'Electrical engineering',2), (337,'Quantum physics',2), (337,'Mechanical engineering',2), (337,'Weapon smithing',2), (337,'Time and space',1), (337,'Matter creation',1), (338,'Electrical engineering',2), (338,'Quantum physics',2), (338,'Mechanical engineering',2), (338,'Weapon smithing',3), (338,'Time and space',1), (338,'Matter creation',1), (339,'Electrical engineering',3), (339,'Quantum physics',3), (339,'Mechanical engineering',3), (339,'Weapon smithing',4), (339,'Time and space',2), (339,'Matter creation',2), (340,'Electrical engineering',3), (340,'Quantum physics',3), (340,'Mechanical engineering',3), (340,'Weapon smithing',5), (340,'Time and space',2), (340,'Matter creation',2), (341,'Electrical engineering',4), (341,'Quantum physics',4), (341,'Mechanical engineering',4), (341,'Weapon smithing',6), (341,'Time and space',2), (341,'Matter creation',2), (342,'Electrical engineering',5), (342,'Quantum physics',5), (342,'Mechanical engineering',5), (342,'Weapon smithing',7), (342,'Time and space',3), (342,'Matter creation',3), (343,'Electrical engineering',6), (343,'Quantum physics',6), (343,'Mechanical engineering',6), (343,'Weapon smithing',8), (343,'Time and space',3), (343,'Matter creation',3), (344,'Electrical engineering',7), (344,'Quantum physics',7), (344,'Mechanical engineering',7), (344,'Weapon smithing',9), (344,'Time and space',4), (344,'Matter creation',4), (345,'Electrical engineering',9), (345,'Quantum physics',9), (345,'Mechanical engineering',9), (345,'Weapon smithing',10), (345,'Time and space',4), (345,'Matter creation',4), (346,'Electrical engineering',14), (346,'Quantum physics',14), (346,'Mechanical engineering',14), (346,'Weapon smithing',16), (346,'Time and space',8), (346,'Matter creation',8), (347,'Electrical engineering',3), (347,'Quantum physics',3), (347,'Mechanical engineering',3), (347,'Weapon smithing',6), (347,'Time and space',2), (347,'Matter creation',2), (348,'Electrical engineering',4), (348,'Quantum physics',4), (348,'Mechanical engineering',4), (348,'Weapon smithing',7), (348,'Time and space',3), (348,'Matter creation',3), (349,'Electrical engineering',5), (349,'Quantum physics',5), (349,'Mechanical engineering',5), (349,'Weapon smithing',8), (349,'Time and space',4), (349,'Matter creation',4), (350,'Electrical engineering',6), (350,'Quantum physics',6), (350,'Mechanical engineering',6), (350,'Weapon smithing',9), (350,'Time and space',4), (350,'Matter creation',4), (351,'Electrical engineering',7), (351,'Quantum physics',7), (351,'Mechanical engineering',7), (351,'Weapon smithing',10), (351,'Time and space',5), (351,'Matter creation',5), (352,'Electrical engineering',8), (352,'Quantum physics',8), (352,'Mechanical engineering',8), (352,'Weapon smithing',11), (352,'Time and space',5), (352,'Matter creation',5), (353,'Electrical engineering',9), (353,'Quantum physics',9), (353,'Mechanical engineering',9), (353,'Weapon smithing',13), (353,'Time and space',6), (353,'Matter creation',6), (354,'Electrical engineering',10), (354,'Quantum physics',10), (354,'Mechanical engineering',10), (354,'Weapon smithing',16), (354,'Time and space',7), (354,'Matter creation',7), (355,'Electrical engineering',11), (355,'Quantum physics',11), (355,'Mechanical engineering',11), (355,'Weapon smithing',20), (355,'Time and space',9), (355,'Matter creation',9), (356,'Electrical engineering',17), (356,'Quantum physics',17), (356,'Mechanical engineering',17), (356,'Weapon smithing',30), (356,'Time and space',15), (356,'Matter creation',15), (357,'Rifle',1), (357,'Aimed shot',4), (357,'Concealment',1), (357,'Dodge ranged',3), (357,'Duck explosives',2), (357,'Evade close',2), (358,'Rifle',1), (358,'Aimed shot',5), (358,'Concealment',2), (358,'Dodge ranged',4), (358,'Duck explosives',3), (358,'Evade close',3), (359,'Rifle',1), (359,'Aimed shot',6), (359,'Concealment',2), (359,'Dodge ranged',4), (359,'Duck explosives',3), (359,'Evade close',3), (360,'Rifle',2), (360,'Aimed shot',7), (360,'Concealment',3), (360,'Dodge ranged',5), (360,'Duck explosives',4), (360,'Evade close',4), (361,'Rifle',2), (361,'Aimed shot',8), (361,'Concealment',3), (361,'Dodge ranged',6), (361,'Duck explosives',4), (361,'Evade close',4), (361,'Critical chance',1), (362,'Rifle',2), (362,'Aimed shot',9), (362,'Concealment',4), (362,'Dodge ranged',7), (362,'Duck explosives',5), (362,'Evade close',5), (363,'Rifle',3), (363,'Aimed shot',10), (363,'Concealment',4), (363,'Dodge ranged',9), (363,'Duck explosives',5), (363,'Evade close',5), (364,'Rifle',3), (364,'Aimed shot',12), (364,'Concealment',5), (364,'Dodge ranged',11), (364,'Duck explosives',6), (364,'Evade close',6), (365,'Rifle',4), (365,'Aimed shot',15), (365,'Concealment',7), (365,'Dodge ranged',13), (365,'Duck explosives',7), (365,'Evade close',7), (366,'Rifle',6), (366,'Aimed shot',24), (366,'Concealment',9), (366,'Dodge ranged',18), (366,'Duck explosives',11), (366,'Evade close',11), (366,'Critical chance',1), (367,'Cold damage modifier',4), (367,'Chemical damage modifier',4), (367,'Energy damage modifier',4), (367,'Fire damage modifier',4), (367,'Melee damage modifier',4), (367,'Poison damage modifier',4), (367,'Radiation damage modifier',4), (367,'Projectile damage modifier',4), (367,'Rifle',2), (367,'Aimed shot',2), (367,'Concealment',2), (367,'Fling shot',5), (368,'Cold damage modifier',5), (368,'Chemical damage modifier',5), (368,'Energy damage modifier',5), (368,'Fire damage modifier',5), (368,'Melee damage modifier',5), (368,'Poison damage modifier',5), (368,'Radiation damage modifier',5), (368,'Projectile damage modifier',5), (368,'Rifle',3), (368,'Aimed shot',3), (368,'Concealment',3), (368,'Fling shot',6), (369,'Cold damage modifier',6), (369,'Chemical damage modifier',6), (369,'Energy damage modifier',6), (369,'Fire damage modifier',6), (369,'Melee damage modifier',6), (369,'Poison damage modifier',6), (369,'Radiation damage modifier',6), (369,'Projectile damage modifier',6), (369,'Rifle',3), (369,'Aimed shot',4), (369,'Concealment',3), (369,'Fling shot',7), (370,'Cold damage modifier',7), (370,'Chemical damage modifier',7), (370,'Energy damage modifier',7), (370,'Fire damage modifier',7), (370,'Melee damage modifier',7), (370,'Poison damage modifier',7), (370,'Radiation damage modifier',7), (370,'Projectile damage modifier',7), (370,'Rifle',4), (370,'Aimed shot',5), (370,'Concealment',4), (370,'Fling shot',8), (371,'Cold damage modifier',8), (371,'Chemical damage modifier',8), (371,'Energy damage modifier',8), (371,'Fire damage modifier',8), (371,'Melee damage modifier',8), (371,'Poison damage modifier',8), (371,'Radiation damage modifier',8), (371,'Projectile damage modifier',8), (371,'Rifle',4), (371,'Aimed shot',5), (371,'Concealment',5), (371,'Fling shot',9), (372,'Cold damage modifier',9), (372,'Chemical damage modifier',9), (372,'Energy damage modifier',9), (372,'Fire damage modifier',9), (372,'Melee damage modifier',9), (372,'Poison damage modifier',9), (372,'Radiation damage modifier',9), (372,'Projectile damage modifier',9), (372,'Rifle',5), (372,'Aimed shot',6), (372,'Concealment',6), (372,'Fling shot',10), (373,'Cold damage modifier',10), (373,'Chemical damage modifier',10), (373,'Energy damage modifier',10), (373,'Fire damage modifier',10), (373,'Melee damage modifier',10), (373,'Poison damage modifier',10), (373,'Radiation damage modifier',10), (373,'Projectile damage modifier',10), (373,'Rifle',5), (373,'Aimed shot',7), (373,'Concealment',7), (373,'Fling shot',11), (374,'Cold damage modifier',11), (374,'Chemical damage modifier',11), (374,'Energy damage modifier',11), (374,'Fire damage modifier',11), (374,'Melee damage modifier',11), (374,'Poison damage modifier',11), (374,'Radiation damage modifier',11), (374,'Projectile damage modifier',11), (374,'Rifle',7), (374,'Aimed shot',8), (374,'Concealment',8), (374,'Fling shot',12), (375,'Cold damage modifier',13), (375,'Chemical damage modifier',13), (375,'Energy damage modifier',13), (375,'Fire damage modifier',13), (375,'Melee damage modifier',13), (375,'Poison damage modifier',13), (375,'Radiation damage modifier',13), (375,'Projectile damage modifier',13), (375,'Rifle',9), (375,'Aimed shot',10), (375,'Concealment',9), (375,'Fling shot',14), (376,'Cold damage modifier',17), (376,'Chemical damage modifier',17), (376,'Energy damage modifier',17), (376,'Fire damage modifier',17), (376,'Melee damage modifier',17), (376,'Poison damage modifier',17), (376,'Radiation damage modifier',17), (376,'Projectile damage modifier',17), (376,'Rifle',13), (376,'Aimed shot',15), (376,'Concealment',13), (376,'Fling shot',18), (376,'Critical chance',1), (377,'Sense',1), (377,'Aimed shot',1), (377,'Concealment',5), (378,'Sense',1), (378,'Aimed shot',1), (378,'Concealment',5), (379,'Sense',2), (379,'Aimed shot',1), (379,'Concealment',6), (380,'Sense',2), (380,'Aimed shot',1), (380,'Concealment',7), (381,'Sense',3), (381,'Aimed shot',1), (381,'Concealment',7), (382,'Sense',4), (382,'Aimed shot',1), (382,'Concealment',8), (383,'Sense',5), (383,'Aimed shot',1), (383,'Concealment',9), (384,'Sense',7), (384,'Aimed shot',1), (384,'Concealment',11), (385,'Sense',10), (385,'Aimed shot',1), (385,'Concealment',15), (386,'Sense',20), (386,'Aimed shot',1), (386,'Concealment',27), (387,'Aimed shot',2), (388,'Aimed shot',3), (388,'Critical chance',1), (389,'Aimed shot',4), (390,'Aimed shot',5), (390,'Critical chance',1), (391,'Aimed shot',7), (392,'Aimed shot',9), (392,'Critical chance',1), (393,'Max health',80), (393,'Heal delta',3), (394,'Max health',150), (394,'Heal delta',3), (395,'Max health',220), (395,'Heal delta',3), (396,'Max health',280), (396,'Heal delta',4), (397,'Max health',350), (397,'Heal delta',4), (398,'Max health',410), (398,'Heal delta',5), (399,'Max health',480), (399,'Heal delta',5), (400,'Max health',585), (400,'Heal delta',5), (401,'Max health',745), (401,'Heal delta',6), (402,'Max health',1100), (402,'Heal delta',11), (403,'Max health',20), (403,'Psychology',5), (404,'Max health',25), (404,'Psychology',5), (405,'Max health',30), (405,'Psychology',6), (406,'Max health',35), (406,'Psychology',6), (407,'Max health',40), (407,'Psychology',7), (408,'Max health',55), (408,'Psychology',8), (409,'Max health',70), (409,'Psychology',9), (410,'Max health',90), (410,'Psychology',11), (411,'Max health',135), (411,'Psychology',15), (412,'Max health',300), (412,'Psychology',28), (413,'2h Blunt',10), (414,'2h Blunt',10), (415,'2h Blunt',12), (416,'2h Blunt',13), (417,'2h Blunt',14), (418,'2h Blunt',16), (419,'2h Blunt',18), (420,'2h Blunt',22), (421,'2h Blunt',30), (422,'2h Blunt',55), (423,'Biological metamorphosis',1), (423,'Psychological modifications',1), (423,'Sensory improvement',1), (423,'Psychology',2), (424,'Biological metamorphosis',1), (424,'Psychological modifications',1), (424,'Sensory improvement',1), (424,'Psychology',4), (425,'Biological metamorphosis',2), (425,'Psychological modifications',2), (425,'Sensory improvement',2), (425,'Psychology',6), (426,'Biological metamorphosis',2), (426,'Psychological modifications',2), (426,'Sensory improvement',2), (426,'Psychology',8), (427,'Biological metamorphosis',3), (427,'Psychological modifications',3), (427,'Sensory improvement',3), (427,'Psychology',10), (428,'Biological metamorphosis',3), (428,'Psychological modifications',3), (428,'Sensory improvement',3), (428,'Psychology',12), (429,'Biological metamorphosis',4), (429,'Psychological modifications',4), (429,'Sensory improvement',4), (429,'Psychology',14), (430,'Biological metamorphosis',4), (430,'Psychological modifications',4), (430,'Sensory improvement',4), (430,'Psychology',16), (431,'Biological metamorphosis',5), (431,'Psychological modifications',5), (431,'Sensory improvement',5), (431,'Psychology',18), (432,'Biological metamorphosis',11), (432,'Psychological modifications',11), (432,'Sensory improvement',11), (432,'Psychology',30), (433,'Biological metamorphosis',1), (433,'Psychological modifications',1), (433,'Sensory improvement',1), (433,'Psychology',5), (434,'Biological metamorphosis',2), (434,'Psychological modifications',2), (434,'Sensory improvement',2), (434,'Psychology',7), (435,'Biological metamorphosis',3), (435,'Psychological modifications',3), (435,'Sensory improvement',3), (435,'Psychology',13), (436,'Biological metamorphosis',4), (436,'Psychological modifications',4), (436,'Sensory improvement',4), (436,'Psychology',20), (437,'Biological metamorphosis',8), (437,'Psychological modifications',8), (437,'Sensory improvement',8), (437,'Psychology',35), (438,'Max health',10), (438,'Dodge ranged',1), (438,'Duck explosives',1), (438,'Evade close',1), (439,'Max health',11), (439,'Dodge ranged',1), (439,'Duck explosives',1), (439,'Evade close',1), (440,'Max health',12), (440,'Dodge ranged',1), (440,'Duck explosives',1), (440,'Evade close',1), (441,'Max health',13), (441,'Dodge ranged',2), (441,'Duck explosives',2), (441,'Evade close',2), (442,'Max health',14), (442,'Dodge ranged',2), (442,'Duck explosives',2), (442,'Evade close',2), (443,'Max health',15), (443,'Dodge ranged',3), (443,'Duck explosives',3), (443,'Evade close',3), (444,'Max health',16), (444,'Dodge ranged',4), (444,'Duck explosives',4), (444,'Evade close',4), (445,'Max health',19), (445,'Dodge ranged',6), (445,'Duck explosives',6), (445,'Evade close',6), (446,'Max health',30), (446,'Dodge ranged',8), (446,'Duck explosives',8), (446,'Evade close',8), (447,'Max health',60), (447,'Dodge ranged',12), (447,'Duck explosives',12), (447,'Evade close',12), (448,'Piercing',10), (449,'Piercing',10), (450,'Piercing',12), (451,'Piercing',13), (452,'Piercing',14), (453,'Piercing',16), (454,'Piercing',18), (455,'Piercing',22), (456,'Piercing',30), (457,'Piercing',55), (458,'Cold damage modifier',4), (458,'Chemical damage modifier',4), (458,'Energy damage modifier',4), (458,'Fire damage modifier',4), (458,'Melee damage modifier',4), (458,'Poison damage modifier',4), (458,'Radiation damage modifier',4), (458,'Projectile damage modifier',4), (458,'Sneak attack',5), (458,'Martial arts',1), (459,'Cold damage modifier',8), (459,'Chemical damage modifier',8), (459,'Energy damage modifier',8), (459,'Fire damage modifier',8), (459,'Melee damage modifier',8), (459,'Poison damage modifier',8), (459,'Radiation damage modifier',8), (459,'Projectile damage modifier',8), (459,'Sneak attack',5), (459,'Martial arts',2), (460,'Cold damage modifier',11), (460,'Chemical damage modifier',11), (460,'Energy damage modifier',11), (460,'Fire damage modifier',11), (460,'Melee damage modifier',11), (460,'Poison damage modifier',11), (460,'Radiation damage modifier',11), (460,'Projectile damage modifier',11), (460,'Sneak attack',6), (460,'Martial arts',2), (461,'Cold damage modifier',15), (461,'Chemical damage modifier',15), (461,'Energy damage modifier',15), (461,'Fire damage modifier',15), (461,'Melee damage modifier',15), (461,'Poison damage modifier',15), (461,'Radiation damage modifier',15), (461,'Projectile damage modifier',15), (461,'Sneak attack',6), (461,'Martial arts',3), (462,'Cold damage modifier',18), (462,'Chemical damage modifier',18), (462,'Energy damage modifier',18), (462,'Fire damage modifier',18), (462,'Melee damage modifier',18), (462,'Poison damage modifier',18), (462,'Radiation damage modifier',18), (462,'Projectile damage modifier',18), (462,'Sneak attack',7), (462,'Martial arts',3), (463,'Cold damage modifier',20), (463,'Chemical damage modifier',20), (463,'Energy damage modifier',20), (463,'Fire damage modifier',20), (463,'Melee damage modifier',20), (463,'Poison damage modifier',20), (463,'Radiation damage modifier',20), (463,'Projectile damage modifier',20), (463,'Sneak attack',8), (463,'Martial arts',4), (464,'Cold damage modifier',24), (464,'Chemical damage modifier',24), (464,'Energy damage modifier',24), (464,'Fire damage modifier',24), (464,'Melee damage modifier',24), (464,'Poison damage modifier',24), (464,'Radiation damage modifier',24), (464,'Projectile damage modifier',24), (464,'Sneak attack',9), (464,'Martial arts',5), (465,'Cold damage modifier',28), (465,'Chemical damage modifier',28), (465,'Energy damage modifier',28), (465,'Fire damage modifier',28), (465,'Melee damage modifier',28), (465,'Poison damage modifier',28), (465,'Radiation damage modifier',28), (465,'Projectile damage modifier',28), (465,'Sneak attack',11), (465,'Martial arts',5), (466,'Cold damage modifier',30), (466,'Chemical damage modifier',30), (466,'Energy damage modifier',30), (466,'Fire damage modifier',30), (466,'Melee damage modifier',30), (466,'Poison damage modifier',30), (466,'Radiation damage modifier',30), (466,'Projectile damage modifier',30), (466,'Sneak attack',15), (466,'Martial arts',6), (467,'Cold damage modifier',50), (467,'Chemical damage modifier',50), (467,'Energy damage modifier',50), (467,'Fire damage modifier',50), (467,'Melee damage modifier',50), (467,'Poison damage modifier',50), (467,'Radiation damage modifier',50), (467,'Projectile damage modifier',50), (467,'Sneak attack',28), (467,'Martial arts',9), (468,'Martial arts',5), (468,'Dodge ranged',1), (468,'Duck explosives',1), (468,'Evade close',1), (469,'Martial arts',8), (469,'Dodge ranged',2), (469,'Duck explosives',2), (469,'Evade close',2), (470,'Martial arts',10), (470,'Dodge ranged',2), (470,'Duck explosives',2), (470,'Evade close',2), (471,'Martial arts',13), (471,'Dodge ranged',3), (471,'Duck explosives',3), (471,'Evade close',3), (472,'Martial arts',15), (472,'Dodge ranged',4), (472,'Duck explosives',4), (472,'Evade close',4), (473,'Martial arts',19), (473,'Dodge ranged',6), (473,'Duck explosives',6), (473,'Evade close',6), (474,'Martial arts',30), (474,'Dodge ranged',12), (474,'Duck explosives',12), (474,'Evade close',12), (475,'Dimach',10), (475,'Parry',2), (475,'Dodge ranged',1), (475,'Duck explosives',1), (475,'Evade close',1), (476,'Dimach',10), (476,'Parry',2), (476,'Dodge ranged',1), (476,'Duck explosives',1), (476,'Evade close',1), (477,'Dimach',12), (477,'Parry',2), (477,'Dodge ranged',2), (477,'Duck explosives',2), (477,'Evade close',2), (478,'Dimach',13), (478,'Parry',3), (478,'Dodge ranged',2), (478,'Duck explosives',2), (478,'Evade close',2), (479,'Dimach',14), (479,'Parry',3), (479,'Dodge ranged',2), (479,'Duck explosives',2), (479,'Evade close',2), (480,'Dimach',16), (480,'Parry',3), (480,'Dodge ranged',3), (480,'Duck explosives',3), (480,'Evade close',3), (481,'Dimach',18), (481,'Parry',4), (481,'Dodge ranged',3), (481,'Duck explosives',3), (481,'Evade close',3), (482,'Dimach',22), (482,'Parry',5), (482,'Dodge ranged',4), (482,'Duck explosives',4), (482,'Evade close',4), (483,'Dimach',30), (483,'Parry',6), (483,'Dodge ranged',4), (483,'Duck explosives',4), (483,'Evade close',4), (484,'Dimach',55), (484,'Parry',10), (484,'Dodge ranged',8), (484,'Duck explosives',8), (484,'Evade close',8), (485,'Max health',7), (485,'Defense modifier',5), (485,'Offense modifier',2), (485,'Sneak attack',5), (486,'Max health',8), (486,'Defense modifier',6), (486,'Offense modifier',3), (486,'Sneak attack',5), (487,'Max health',10), (487,'Defense modifier',7), (487,'Offense modifier',4), (487,'Sneak attack',6), (488,'Max health',14), (488,'Defense modifier',8), (488,'Offense modifier',4), (488,'Sneak attack',6), (489,'Max health',19), (489,'Defense modifier',9), (489,'Offense modifier',5), (489,'Sneak attack',7), (490,'Max health',32), (490,'Defense modifier',11), (490,'Offense modifier',5), (490,'Sneak attack',8), (491,'Max health',42), (491,'Defense modifier',16), (491,'Offense modifier',6), (491,'Sneak attack',9), (492,'Max health',52), (492,'Defense modifier',21), (492,'Offense modifier',7), (492,'Sneak attack',11), (493,'Max health',76), (493,'Defense modifier',27), (493,'Offense modifier',9), (493,'Sneak attack',15), (494,'Max health',140), (494,'Defense modifier',40), (494,'Offense modifier',15), (494,'Sneak attack',28), (495,'Matter creation',3), (496,'Matter creation',4), (497,'Matter creation',5), (498,'Matter creation',6), (499,'Matter creation',7), (500,'Matter creation',8), (501,'Matter creation',10), (502,'Matter creation',11), (503,'Matter creation',13), (504,'Matter creation',18), (505,'Max Nano',600), (506,'Max Nano',1600), (507,'Max Nano',3800), (508,'Max Nano',150), (508,'Nano damage modifier',2), (509,'Max Nano',225), (509,'Nano damage modifier',2), (510,'Max Nano',270), (510,'Nano damage modifier',3), (511,'Max Nano',335), (511,'Nano damage modifier',3), (512,'Max Nano',420), (512,'Nano damage modifier',3), (513,'Max Nano',600), (513,'Nano damage modifier',5), (514,'Time and space',3), (514,'Matter creation',3), (514,'Max health',5), (514,'Nano resist',10), (514,'Defense modifier',5), (515,'Time and space',4), (515,'Matter creation',4), (515,'Max health',9), (515,'Nano resist',10), (515,'Defense modifier',5), (516,'Time and space',5), (516,'Matter creation',5), (516,'Max health',10), (516,'Nano resist',12), (516,'Defense modifier',6), (517,'Time and space',6), (517,'Matter creation',6), (517,'Max health',10), (517,'Nano resist',13), (517,'Defense modifier',7), (518,'Time and space',7), (518,'Matter creation',7), (518,'Max health',14), (518,'Nano resist',14), (518,'Defense modifier',7), (519,'Time and space',8), (519,'Matter creation',8), (519,'Max health',18), (519,'Nano resist',16), (519,'Defense modifier',8), (520,'Time and space',9), (520,'Matter creation',9), (520,'Max health',22), (520,'Nano resist',18), (520,'Defense modifier',9), (521,'Time and space',10), (521,'Matter creation',10), (521,'Max health',37), (521,'Nano resist',22), (521,'Defense modifier',11), (522,'Time and space',13), (522,'Matter creation',13), (522,'Max health',37), (522,'Nano resist',30), (522,'Defense modifier',15), (523,'Time and space',20), (523,'Matter creation',20), (523,'Max health',48), (523,'Nano resist',50), (523,'Defense modifier',27), (524,'Max health',5), (524,'Max nano',15), (525,'Max health',7), (525,'Max nano',17), (526,'Max health',8), (526,'Max nano',18), (527,'Max health',10), (527,'Max nano',20), (528,'Max health',10), (528,'Max nano',20), (529,'Max health',15), (529,'Max nano',20), (530,'Max health',25), (530,'Max nano',35), (531,'Max health',30), (531,'Max nano',45), (532,'Max health',35), (532,'Max nano',45), (533,'Max health',55), (533,'Max nano',65), (534,'Heal delta',1), (534,'Nano delta',1), (534,'Max health',15), (534,'Max nano',50), (535,'Heal delta',1), (535,'Nano delta',1), (535,'Max health',15), (535,'Max nano',50), (536,'Heal delta',1), (536,'Nano delta',1), (536,'Max health',15), (536,'Max nano',60), (537,'Heal delta',1), (537,'Nano delta',1), (537,'Max health',15), (537,'Max nano',60), (538,'Heal delta',1), (538,'Nano delta',1), (538,'Max health',22), (538,'Max nano',70), (539,'Heal delta',1), (539,'Nano delta',1), (539,'Max health',23), (539,'Max nano',80), (540,'Heal delta',1), (540,'Nano delta',1), (540,'Max health',30), (540,'Max nano',90), (541,'Heal delta',1), (541,'Nano delta',1), (541,'Max health',30), (541,'Max nano',110), (542,'Heal delta',1), (542,'Nano delta',1), (542,'Max health',30), (542,'Max nano',150), (543,'Heal delta',2), (543,'Nano delta',2), (543,'Max health',45), (543,'Max nano',280), (544,'Heal delta',1), (544,'Max health',6), (545,'Heal delta',2), (545,'Max health',8), (546,'Heal delta',2), (546,'Max health',10), (547,'Heal delta',2), (547,'Max health',13), (548,'Heal delta',3), (548,'Max health',15), (549,'Heal delta',3), (549,'Max health',18), (550,'Heal delta',3), (550,'Max health',24), (551,'Heal delta',4), (551,'Max health',32), (552,'Heal delta',4), (552,'Max health',38), (553,'Heal delta',6), (553,'Max health',56), (554,'Max health',40), (555,'Max health',65), (556,'Max health',105), (557,'Max health',155), (558,'Max health',200), (559,'Max health',260), (560,'Max health',325), (561,'Max health',400), (562,'Max health',500), (563,'Max health',720), (564,'Max health',10), (564,'Dodge ranged',5), (564,'Duck explosives',5), (564,'Evade close',10), (565,'Max health',12), (565,'Dodge ranged',5), (565,'Duck explosives',5), (565,'Evade close',10), (566,'Max health',14), (566,'Dodge ranged',6), (566,'Duck explosives',6), (566,'Evade close',12), (567,'Max health',16), (567,'Dodge ranged',6), (567,'Duck explosives',6), (567,'Evade close',13), (568,'Max health',18), (568,'Dodge ranged',7), (568,'Duck explosives',7), (568,'Evade close',14), (569,'Max health',23), (569,'Dodge ranged',9), (569,'Duck explosives',9), (569,'Evade close',16), (570,'Max health',34), (570,'Dodge ranged',10), (570,'Duck explosives',10), (570,'Evade close',18), (571,'Max health',45), (571,'Dodge ranged',11), (571,'Duck explosives',11), (571,'Evade close',22), (572,'Max health',57), (572,'Dodge ranged',15), (572,'Duck explosives',15), (572,'Evade close',30), (573,'Max health',91), (573,'Dodge ranged',26), (573,'Duck explosives',26), (573,'Evade close',55), (574,'2h Edged',10), (574,'Parry',10), (574,'Riposte',10), (574,'Fast attack',10), (574,'Ranged init',-100), (574,'Cold damage modifier',5), (574,'Chemical damage modifier',5), (574,'Energy damage modifier',5), (574,'Fire damage modifier',5), (574,'Melee damage modifier',5), (574,'Poison damage modifier',5), (574,'Radiation damage modifier',5), (574,'Projectile damage modifier',5), (575,'2h Edged',10), (575,'Parry',10), (575,'Riposte',10), (575,'Fast attack',10), (575,'Ranged init',-100), (575,'Cold damage modifier',7), (575,'Chemical damage modifier',7), (575,'Energy damage modifier',7), (575,'Fire damage modifier',7), (575,'Melee damage modifier',7), (575,'Poison damage modifier',7), (575,'Radiation damage modifier',7), (575,'Projectile damage modifier',7), (576,'2h Edged',11), (576,'Parry',12), (576,'Riposte',12), (576,'Fast attack',12), (576,'Ranged init',-150), (576,'Cold damage modifier',9), (576,'Chemical damage modifier',9), (576,'Energy damage modifier',9), (576,'Fire damage modifier',9), (576,'Melee damage modifier',9), (576,'Poison damage modifier',9), (576,'Radiation damage modifier',9), (576,'Projectile damage modifier',9), (577,'2h Edged',12), (577,'Parry',13), (577,'Riposte',13), (577,'Fast attack',13), (577,'Ranged init',-150), (577,'Cold damage modifier',11), (577,'Chemical damage modifier',11), (577,'Energy damage modifier',11), (577,'Fire damage modifier',11), (577,'Melee damage modifier',11), (577,'Poison damage modifier',11), (577,'Radiation damage modifier',11), (577,'Projectile damage modifier',11), (578,'2h Edged',13), (578,'Parry',14), (578,'Riposte',14), (578,'Fast attack',14), (578,'Ranged init',-150), (578,'Cold damage modifier',15), (578,'Chemical damage modifier',15), (578,'Energy damage modifier',15), (578,'Fire damage modifier',15), (578,'Melee damage modifier',15), (578,'Poison damage modifier',15), (578,'Radiation damage modifier',15), (578,'Projectile damage modifier',15), (579,'2h Edged',15), (579,'Parry',16), (579,'Riposte',16), (579,'Fast attack',16), (579,'Ranged init',-200), (579,'Cold damage modifier',18), (579,'Chemical damage modifier',18), (579,'Energy damage modifier',18), (579,'Fire damage modifier',18), (579,'Melee damage modifier',18), (579,'Poison damage modifier',18), (579,'Radiation damage modifier',18), (579,'Projectile damage modifier',18), (580,'2h Edged',16), (580,'Parry',18), (580,'Riposte',18), (580,'Fast attack',18), (580,'Ranged init',-200), (580,'Cold damage modifier',22), (580,'Chemical damage modifier',22), (580,'Energy damage modifier',22), (580,'Fire damage modifier',22), (580,'Melee damage modifier',22), (580,'Poison damage modifier',22), (580,'Radiation damage modifier',22), (580,'Projectile damage modifier',22), (581,'2h Edged',22), (581,'Parry',22), (581,'Riposte',22), (581,'Fast attack',22), (581,'Ranged init',-200), (581,'Cold damage modifier',25), (581,'Chemical damage modifier',25), (581,'Energy damage modifier',25), (581,'Fire damage modifier',25), (581,'Melee damage modifier',25), (581,'Poison damage modifier',25), (581,'Radiation damage modifier',25), (581,'Projectile damage modifier',25), (582,'2h Edged',28), (582,'Parry',30), (582,'Riposte',30), (582,'Fast attack',30), (582,'Ranged init',-500), (582,'Cold damage modifier',32), (582,'Chemical damage modifier',32), (582,'Energy damage modifier',32), (582,'Fire damage modifier',32), (582,'Melee damage modifier',32), (582,'Poison damage modifier',32), (582,'Radiation damage modifier',32), (582,'Projectile damage modifier',32), (583,'2h Edged',43), (583,'Parry',55), (583,'Riposte',55), (583,'Fast attack',55), (583,'Ranged init',-500), (583,'Cold damage modifier',43), (583,'Chemical damage modifier',43), (583,'Energy damage modifier',43), (583,'Fire damage modifier',43), (583,'Melee damage modifier',43), (583,'Poison damage modifier',43), (583,'Radiation damage modifier',43), (583,'Projectile damage modifier',43);
|