-
Notifications
You must be signed in to change notification settings - Fork 85
/
esx_jobs.sql
47 lines (43 loc) · 1.43 KB
/
esx_jobs.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
USE `essentialmode`;
INSERT INTO `addon_account` (name, label, shared) VALUES
('caution', 'Caution', 0)
;
INSERT INTO `jobs` (name, label) VALUES
('slaughterer', 'Abatteur'),
('fisherman', 'Pêcheur'),
('miner', 'Mineur'),
('lumberjack', 'Bûcheron'),
('fuel', 'Raffineur'),
('reporter', 'Journaliste'),
('textil', 'Couturier')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('lumberjack', 0, 'interim', 'Intérimaire', 0, '{}', '{}'),
('fisherman', 0, 'interim', 'Intérimaire', 0, '{}', '{}'),
('fuel', 0, 'interim', 'Intérimaire', 0, '{}', '{}'),
('reporter', 0, 'employee', 'Intérimaire', 0, '{}', '{}'),
('textil', 0, 'interim', 'Intérimaire', 0, '{}', '{}'),
('miner', 0, 'interim', 'Intérimaire', 0, '{}', '{}'),
('slaughterer', 0, 'interim', 'Intérimaire', 0, '{}', '{}')
;
INSERT INTO `items` (`name`, `label`) VALUES
('alive_chicken', 'Poulet vivant'),
('slaughtered_chicken', 'Poulet abattu'),
('packaged_chicken', 'Poulet en barquette'),
('fish', 'Poisson'),
('stone', 'Pierre'),
('washed_stone', 'Pierre Lavée'),
('copper', 'Cuivre'),
('iron', 'Fer'),
('gold', 'Or'),
('diamond', 'Diamant'),
('wood', 'Bois'),
('cutted_wood', 'Bois coupé'),
('packaged_plank', 'Paquet de planches'),
('petrol', 'Pétrole'),
('petrol_raffin', 'Pétrole Raffiné'),
('essence', 'Essence'),
('whool', 'Laine'),
('fabric', 'Tissu'),
('clothe', 'Vêtement')
;