Pre-filling Great Work slots in World Wonders

isnorden

Amnesiac Modder
Joined
Jul 6, 2012
Messages
608
Location
Madison, Wisconsin, USA
Where is the code that pre-fills the Parthenon's Great Work slot? I'd like to put some other artworks in their "proper" locations (e.g., The Creation of Adam is part of the Sistine Chapel). If you can help me locate the right code, I'd appreciate that very much.

P.S. If I want to pre-include an item (like the Ark of the Covenant) which can't be traced to one person, what's the best way to solve the problem? Artifacts don'f get their own names or identities. :-/
 
Parthenon code would be the place to look:
Spoiler :
Code:
		<Row>
			<Type>BUILDING_PARTHENON</Type>
			<BuildingClass>BUILDINGCLASS_PARTHENON</BuildingClass>
			<Cost>250</Cost>
			<PrereqTech>TECH_DRAMA</PrereqTech>
			<Description>TXT_KEY_BUILDING_PARTHENON</Description>
			<Quote>TXT_KEY_BUILDING_PARTHENON_QUOTE</Quote>
			<Civilopedia>TXT_KEY_CIV5_BUILDINGS_PARTHENON_TEXT</Civilopedia>
			<Help>TXT_KEY_WONDER_PARTHENON_HELP</Help>
			<ArtDefineTag>ART_DEF_BUILDING_PARTHENON</ArtDefineTag>
			<MaxStartEra>ERA_MEDIEVAL</MaxStartEra>
			<NukeImmune>true</NukeImmune>
			<HurryCostModifier>-1</HurryCostModifier>
			<MinAreaSize>-1</MinAreaSize>
			<DisplayPosition>2</DisplayPosition>
			<ConquestProb>100</ConquestProb>
			<GreatWorkSlotType>GREAT_WORK_SLOT_ART_ARTIFACT</GreatWorkSlotType>
			<GreatWorkCount>1</GreatWorkCount>
			[B]<FreeGreatWork>GREAT_WORK_PARTHENON_FRIEZE</FreeGreatWork>[/B]
			<IconAtlas>EXPANSION2_WONDER_ATLAS</IconAtlas>
			<PortraitIndex>10</PortraitIndex>
			<WonderSplashImage>WonderConceptParthenon.dds</WonderSplashImage>
			<WonderSplashAudio>AS2D_WONDER_SPEECH_PARTHENON</WonderSplashAudio>
		</Row>

Obviously you might need to create some new great works if those you want are not already in the game.
 
Top Bottom