This repository has been archived by the owner on Dec 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUserSettings.sql
58 lines (49 loc) · 1.59 KB
/
UserSettings.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
48
49
50
51
52
53
54
55
56
57
58
---------------------------------------------------------------------
/*
USER SETTINGS
-------------------
Omnibus_UserSettings
by thecrazyscotsman
*/
---------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS Omnibus_UserSettings
(
Setting TEXT DEFAULT NULL,
Toggle INTEGER DEFAULT 0
);
---------------------------------------------------------------------
/*
SETTINGS:
-- Raging Barbarians
-- Reduce Eureka Bonuses
-- Increase Settler Population Cost
-- Increase Distance Between Cities
-- Increase All Unit Movement
-- Aqueduct +Food to Adjacent Tiles (planned)
*/
---------------------------------------------------------------------
INSERT INTO Omnibus_UserSettings
VALUES
--Enables raging barbarians in all rulesets
-- 0 = Disabled (Default)
-- 1 = Enabled
('TCS_RAGING_BARBARIANS', 0),
--Reduces Eureka bonuses in all rulesets
-- 0 = Disabled (Default)
-- 1 = Eurekas reduced to 40%
-- 2 = Eurekas reduced to 25%
-- 3 = Eurekas reduced to 10%
('TCS_SMALLER_EUREKAS', 0),
--Increases Settler population cost to 2 in all rulesets
-- 0 = Disabled (Default)
-- 1 = Enabled
('TCS_SETTLER_POPULATION', 0),
--Increase distance between cities in all rulesets
-- 0 = Disabled (Default)
-- 1 = Increase city distance to 4
('TCS_MIN_CITY_RANGE', 0),
--Increases all unit movement in all rulesets
-- 0 = Disabled (Default)
-- 1 = All movement increased by 1
-- 2 = All movement increased by 2
('TCS_QUOS_ROCKETBOOTS', 0);