mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 10:18:54 +00:00
31 lines
849 B
SQL
31 lines
849 B
SQL
USE `essentialmode`;
|
|
|
|
INSERT INTO `addon_account` (name, label, shared) VALUES
|
|
('society_mecano', 'Mechanic', 1)
|
|
;
|
|
|
|
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
|
('society_mecano', 'Mechanic', 1)
|
|
;
|
|
|
|
INSERT INTO `jobs` (name, label) VALUES
|
|
('mecano', 'Mechanic')
|
|
;
|
|
|
|
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
|
('mecano',0,'recrue','Recruit',12,'{}','{}'),
|
|
('mecano',1,'novice','Novice',24,'{}','{}'),
|
|
('mecano',2,'experimente','Experienced',36,'{}','{}'),
|
|
('mecano',3,'chief','Leader',48,'{}','{}'),
|
|
('mecano',4,'boss','Boss',0,'{}','{}')
|
|
;
|
|
|
|
INSERT INTO `items` (name, label, `limit`) VALUES
|
|
('gazbottle', 'Gas Bottle', 11),
|
|
('fixtool', 'Repair Tools', 6),
|
|
('carotool', 'Tools', 4),
|
|
('blowpipe', 'Blowtorch', 10),
|
|
('fixkit', 'Repair Kit', 5),
|
|
('carokit', 'Body Kit', 3)
|
|
;
|