文明6 行军实在是太慢了,浪费了广大玩家的热情和时间,联机过程中我的朋友一直吐槽节奏慢。于是我做了这个mod,欢迎大家使用,改善游戏体验。mod 的制作代码我也分享下。
效果:
1.增加所有单位1移动力
2.增加各个时代的道路移动增益
代码很简单
-- ADD speed
UPDATE Units
SET BaseMoves = BaseMoves + 1;
-- It's the default, but be explicit about it.
UPDATE Routes SET MovementCost = 1 WHERE RouteType = 'ROUTE_ANCIENT_ROAD';
-- The Romans had major roads in BCE and there were no substantial improvements
-- on transportaion until the era of railroads. Also make classical roads significantly more effective
-- so it matters more where you send your limited early game traders to make them.
UPDATE Routes SET MovementCost = 0.5, PrereqEra = 'ERA_CLASSICAL' WHERE RouteType = 'ROUTE_MEDIEVAL_ROAD';
-- Simulate improved transportation in the industrial era, primarily the introduction of railroads and trams.
UPDATE Routes SET MovementCost = 0.333, PrereqEra = 'ERA_INDUSTRIAL' WHERE RouteType = 'ROUTE_INDUSTRIAL_ROAD';
-- Simulate improved transportation in the 20th century - cars, paved road systems, aircraft. Not really that much
-- of an improvement on industrial as moving large volumes of items really hasn't gotten faster since then.
UPDATE Routes SET MovementCost = 0.25, PrereqEra = 'ERA_MODERN' WHERE RouteType = 'ROUTE_MODERN_ROAD';
<?xml version="1.0" encoding="utf-8"?>
<Mod id="83ffeb62-d680-4e18-8ac9-f5693b49123f" version="1">
<Properties>
<Name>Celerity_Matters_luke</Name>
<Teaser>Celerity_Matters_luke</Teaser>
<Description>Celerity_Matters_luke_des</Description>
<Authors>LUKE_AUTHORS</Authors>
<Homepage>https://blog.csdn.net/qq_37195257</Homepage>
<CompatibleVersions>1.2,2.0</CompatibleVersions>
</Properties>
<Components>
<UpdateDatabase id="TEST_GAMEPLAY_DATA">
<Items>
<File>Celerity_Matters_luke.sql</File>
</Items>
</UpdateDatabase>
</Components>
<Files>
<File>Celerity_Matters_luke.sql</File>
</Files>
<LocalizedText>
<Text id="Celerity_Matters_luke">
<en_US>Celerity_Matters_luke</en_US>
</Text>
<Text id="Celerity_Matters_luke">
<zh_Hans_CN>兵贵神速(增加所有单位速度)</zh_Hans_CN>
</Text>
<Text id="LUKE_AUTHORS">
<en_US>LUKE</en_US>
</Text>
<Text id="LUKE_AUTHORS">
<zh_Hans_CN>LUKE</zh_Hans_CN>
</Text>
<Text id="Celerity_Matters_luke_des">
<en_US>Faster units and roads</en_US>
</Text>
<Text id="Celerity_Matters_luke_des">
<zh_Hans_CN>兵贵神速(增加所有单位速度、增快道路的效果)</zh_Hans_CN>
</Text>
</LocalizedText>
</Mod>