Files
2026-07-07 21:08:52 +02:00

33 lines
979 B
SQL

INSERT INTO `addon_account` (name, label, shared) VALUES
('society_mechanic', 'Mécanicien', 1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_mechanic', 'Mécanicien', 1)
;
INSERT INTO `datastore` (name, label, shared) VALUES
('society_mechanic', 'Mécanicien', 1)
;
INSERT INTO `jobs` (name, label) VALUES
('mechanic', 'Mécanicien')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('mechanic',0,'recrue','Recrue',12,'{}','{}'),
('mechanic',1,'novice','Novice',24,'{}','{}'),
('mechanic',2,'expérimenté','Expérimenté',36,'{}','{}'),
('mechanic',3,'chef','Chef',48,'{}','{}'),
('mechanic',4,'boss','Boss',0,'{}','{}')
;
INSERT INTO `items` (name, label, weight) VALUES
('gazbottle', 'Bouteille de gaz', 2),
('fixtool', 'Outils de réparation', 2),
('carotool', 'Outils', 2),
('blowpipe', 'Chalumeau', 2),
('fixkit', 'Kit de réparation', 3),
('carokit', 'Kit de carrosserie', 3)
;