Add Localized SQL (EN)

This commit is contained in:
nearbyplayer
2018-08-08 20:34:14 -04:00
parent 77d6818a58
commit 2cab765936
+25
View File
@@ -0,0 +1,25 @@
USE `essentialmode`;
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_taxi', 'Taxi', 1)
;
INSERT INTO `datastore` (name, label, shared) VALUES
('society_taxi', 'Taxi', 1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_taxi', 'Taxi', 1)
;
INSERT INTO `jobs` (name, label) VALUES
('taxi', 'Taxi')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('taxi',0,'recrue','Recruit',12,'{}','{}'),
('taxi',1,'novice','Cabby',24,'{}','{}'),
('taxi',2,'experimente','Experienced',36,'{}','{}'),
('taxi',3,'uber','Uber Cabby',48,'{}','{}'),
('taxi',4,'boss','Lead Cabby',0,'{}','{}')
;