Mod-Ideas for Workers and Workboats

historix69

Emperor
Joined
Sep 30, 2008
Messages
1,402
Some ideas from playing around with Civ5-ModBuddy ...
(Don't know if they were posted before by somebody else since I don't follow all the Civ5 discussion forums ...)


1. Worker / Workboats can be transformed into the Civ1-caravan to help build buildings / wonders in a city with poor production. The Great-Engineer-Hurry-Mission is used. The Worker / Workboat is consumed by the action.

solution :
Spoiler :

<?xml version="1.0" encoding="utf-8"?>
<!-- Created by ModBuddy on 3/11/2011 12:42:54 PM -->
<GameData>
<!-- TODO: Insert table creation example here. -->

<!-- TODO: Insert table data example here.-->

<!-- Enter your Game Data here. -->

<Units>
<Update>
<Where Class="UNITCLASS_WORKER"/>
<Set Cost="70"/>
</Update>
<Update>
<Where Class="UNITCLASS_WORKER"/>
<Set BaseHurry="70"/>
</Update>
<Update>
<Where Class="UNITCLASS_WORKER"/>
<Set HurryMultiplier="0"/>
</Update>

<Update>
<Where Class="UNITCLASS_WORKBOAT"/>
<Set Cost="50"/>
</Update>
<Update>
<Where Class="UNITCLASS_WORKBOAT"/>
<Set BaseHurry="50"/>
</Update>
<Update>
<Where Class="UNITCLASS_WORKBOAT"/>
<Set HurryMultiplier="0"/>
</Update>
</Units>
</GameData>


2. Worker / Workboats can expand a cities cultural border. The Great-Artist-CultureBomb-Mission is used. The Worker / Workboat is consumed by the action. Culture-Bombing your neighbours border may have negative effect on your diplomatic relationships.

solution :
Spoiler :

<?xml version="1.0" encoding="utf-8"?>
<!-- Created by ModBuddy on 3/11/2011 8:08:06 PM -->
<GameData>
<!-- TODO: Insert table creation example here. -->

<!-- TODO: Insert table data example here.-->

<!-- Enter your Game Data here. -->

<Units>
<Update>
<Where Class="UNITCLASS_WORKER"/>
<Set CultureBombRadius="1"/>
</Update>
<Update>
<Where Class="UNITCLASS_WORKBOAT"/>
<Set CultureBombRadius="1"/>
</Update>
</Units>

<Defines>
<Update>
<Where Name="CULTURE_BOMB_COOLDOWN"/>
<Set Value="0"/>
</Update>
</Defines>

</GameData>



Have Fun :)
 
Top Bottom