Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
change it in the steam worshop folder
I wanted to make forests/rainforests more valuable, to punish the AI for chopping them.
Thanks, so does that make the production increase by the techs? One problem i wanted to fix was make the forest production increase when lumber mills are unlocked and through the other couple techs that improve the yields rather then just a large base yield from the beginning. Are you using lumber mill removed? because thats the only reason i had this mod made. I will try out your suggestions but pm if you can help more.
UPDATE Feature_YieldChanges SET YieldChange=4 WHERE FeatureType='FEATURE_FOREST' AND YieldType='YIELD_PRODUCTION';
UPDATE Feature_YieldChanges SET YieldChange=2 WHERE FeatureType='FEATURE_RAINFOREST' AND YieldType='YIELD_PRODUCTION';
It should be:
UPDATE Feature_YieldChanges SET YieldChange='2' WHERE FeatureType='FEATURE_FOREST' AND YieldType='YIELD_PRODUCTION';
INSERT INTO Feature_YieldChanges (FeatureType, YieldType, YieldChange) SELECT 'FEATURE_JUNGLE', 'YIELD_PRODUCTION', '1' FROM Features WHERE FeatureType='FEATURE_JUNGLE' ;
for FEATURE_FOREST they have a production yield, so it needs to be changed.
FEATURE_RAINFOREST doesn't exist. it's FEATURE_JUNGLE
For FEATURE_JUNGLE it doesn't have a production yield, so it needs to be added.
I took the liberty of halving the 4,2 to become 2,1 for respective production of forests and jungles.