-
Notifications
You must be signed in to change notification settings - Fork 4
/
esx_journalist.sql
30 lines (25 loc) · 1.06 KB
/
esx_journalist.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
USE `essentialmode`;
INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES
('journalist', 'Weazel News', 0)
;
INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES
('society_weazel', 'Weazel News', 1),
;
INSERT INTO `addon_account` (`name`, `label`, `shared`) VALUES
('society_weazel', 'Weazel News', 1),
('society_taxe_weazel', 'Weazel News Taxe', 1)
;
INSERT INTO `addon_inventory` (`name`, `label`, `shared`) VALUES
('society_weazel', 'Weazel News', 1)
;
INSERT INTO `job_grades` (`job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES
('journalist', 0, 'interim', 'Livreur', 100, '{}', '{}'),
('journalist', 1, 'journalist', 'Journaliste', 100, '{}', '{}'),
('journalist', 2, 'reporter', 'Reporter', 100, '{}', '{}'),
('journalist', 3, 'chief', 'Rédacteur en chef', 100, '{}', '{}'),
('journalist', 4, 'boss' , 'Patron', 100, '{}', '{}')
;
INSERT INTO `items` (`name`, `label`, `limit`, `rare`, `can_remove`) VALUES
('journal', 'Journal', 50, 0, 1),
('journaux', 'Paquet de Journaux', 25, 0, 1)
;