CREATE TABLE loot_modifiers ( id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, modifier_type VARCHAR(20) NULL, name VARCHAR(255) NULL, effect TEXT NULL, probability FLOAT NULL, stat_req_modifier TEXT NULL, cost_modifier FLOAT NULL, mesh VARCHAR(255) NULL, not_usable_with VARCHAR(255) NULL, prg_evt_equip text NULL, prg_evt_unequip text NULL, PRIMARY KEY(id) ); -- (id,modifier_type,name,effect,probability,stat_req_modifier,cost_modifier,mesh,not_usable_with) -- INSERT INTO `loot_modifiers` ( modifier_type, name, effect, probability, stat_req_modifier, cost_modifier, mesh, not_usable_with ) VALUES -- Prefixes INSERT INTO loot_modifiers VALUES (1,'prefix','Platinum','',39,'',0.6,'','','',''); INSERT INTO loot_modifiers VALUES (2,'prefix','Steel','',73,'',0.4,'','','',''); INSERT INTO loot_modifiers VALUES (3,'prefix','Plastic','',94,'',0.7,'','','',''); INSERT INTO loot_modifiers VALUES (4,'prefix','Fabric','',99,'',1.2,'','','',''); INSERT INTO loot_modifiers VALUES (5,'prefix','Plutonium','',124,'',1.2,'','','',''); -- Adjectives INSERT INTO loot_modifiers VALUES (6,'adjective','Torn','',4,'',0.2,'','','',''); INSERT INTO loot_modifiers VALUES (7,'adjective','Spotted','',8,'',0.3,'','','',''); INSERT INTO loot_modifiers VALUES (8,'adjective','Xeroxed','',12,'',0.4,'','','',''); INSERT INTO loot_modifiers VALUES (9,'adjective','Yellowed','',15,'',0.4,'','','',''); INSERT INTO loot_modifiers VALUES (10,'adjective','Brown','',19,'',0.5,'','','',''); INSERT INTO loot_modifiers VALUES (11,'adjective','Scratched','',24,'',0.6,'','','',''); -- Suffixes INSERT INTO loot_modifiers VALUES (12,'suffix','of Purity','',10,'',1.7,'','','',''); INSERT INTO loot_modifiers VALUES (13,'suffix','of Light','',20,'',2,'','','',''); INSERT INTO loot_modifiers VALUES (14,'suffix','of Strength','',24,'',4,'','','',''); INSERT INTO loot_modifiers VALUES (15,'suffix','of Wind','',30,'',3,'','','',''); INSERT INTO loot_modifiers VALUES (16,'suffix','of Electricity','',33,'',3,'','','',''); INSERT INTO loot_modifiers VALUES (17,'suffix','of Faith','',35,'',4,'','','',''); INSERT INTO loot_modifiers VALUES (18,'suffix','of Steel','',45,'',2,'','','',''); INSERT INTO loot_modifiers VALUES (19,'suffix','of Corn','',50,'',3,'','','',''); INSERT INTO loot_modifiers VALUES (20,'suffix','of Incense','',52,'',6,'','','','');