-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameDataLate.sql
24 lines (18 loc) · 1.29 KB
/
GameDataLate.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- Allow Airstrips on resources (nothing in Civilopedia says that you can't build an airstrip on wheat, yet you cannot)
INSERT OR REPLACE INTO Improvement_ValidResources (ImprovementType, ResourceType, MustRemoveFeature)
SELECT 'IMPROVEMENT_AIRSTRIP', ResourceType, 0 FROM Resources ;
-- Allow Forts on resources
INSERT OR REPLACE INTO Improvement_ValidResources (ImprovementType, ResourceType, MustRemoveFeature)
SELECT 'IMPROVEMENT_FORT', ResourceType, 0 FROM Resources ;
-- Allow Missile Silos on resources
INSERT OR REPLACE INTO Improvement_ValidResources (ImprovementType, ResourceType, MustRemoveFeature)
SELECT 'IMPROVEMENT_MISSILE_SILO', ResourceType, 0 FROM Resources ;
-- Allow IMPROVEMENT_ROMAN_FORT on resources
INSERT OR REPLACE INTO Improvement_ValidResources (ImprovementType, ResourceType, MustRemoveFeature)
SELECT 'IMPROVEMENT_ROMAN_FORT', ResourceType, 0 FROM Resources ;
-- Allow IMPROVEMENT_MAORI_PA on resources
INSERT OR REPLACE INTO Improvement_ValidResources (ImprovementType, ResourceType, MustRemoveFeature)
SELECT 'IMPROVEMENT_MAORI_PA', ResourceType, 0 FROM Resources ;
-- Allow IMPROVEMENT_ALCAZAR on resources
INSERT OR REPLACE INTO Improvement_ValidResources (ImprovementType, ResourceType, MustRemoveFeature)
SELECT 'IMPROVEMENT_ALCAZAR', ResourceType, 0 FROM Resources ;