Return of the Theater -- and beyond

isnorden

Amnesiac Modder
Joined
Jul 6, 2012
Messages
608
Location
Madison, Wisconsin, USA
Although another user has re-added the Theater building to BNW already, I'd personally take the same idea in another direction: Move the Zoo to a class by itself (requiring wildlife camps nearby), and add a few modern successors to the Theater.

  • Cinema (see comments below): +1 Gold, Culture, and Happiness bonuses; city must already have a Theater.
  • Motion-Picture Studio (see comments below) -- +3 each to Culture, Production, and Gold; +10% to Great People generation in the same city. (It takes all kinds of people to create a box-office hit, so an all-round bonus fits best: Artists and Engineers design sets; Writers create scripts, Musicians record soundtracks; Scientists help with SFX technology; and Merchants bankroll/advertise the picture.) Of course, the city where the Studio is built needs a Cinema first.
  • Filmmaking District (national wonder, requires a Cinema in every city): +4 global Happiness; +4 Tourism; +1 Culture/+2 Gold per Cinema in the empire. Acts as a free Motion-Picture Studio in the city where it is built.
  • Loew's Chinese Theatre (world wonder): +6 global Happiness; +6 Tourism; +10% to empire-wide Gold and Culture. A Great Person of the player's choice appears in the city containing this wonder. (Even a General, Admiral, or Prophet can buy VIP tickets!) Acts as a free Cinema in the city where it is built.


P.S. I'm having trouble deciding which technology (one or several) should unlock these buildings; it should be something from the early Modern Era, but beyond that I'm stumped. If you have questions or comments, please leave them here!
 
Like you said implied - there really is no appropriate tech to attach these to. :cringe: Which really makes no sense, because photography and the motion picture were two darn influential inventions. I would recommend adding those two techs - Photography in the Industrial Era (scientific theory prereq?), which is a prereq for Motion Photography in the Modern Era (maybe along with replaceable parts?).
 
I've never edited the tech tree before (my problems with spatial perception could ruin the onscreen diagram). If you could post the code snippet for that part of the mod, I'm pretty sure I can write the rest. Of course, you'd get mentioned in the description as a reward... :thanx:


P.S. If we need two new techs, the first one (Photography) should unlock a building or unit, too; every technology allows something new for the player. Any ideas for something appropriate and useful?
 
For example,

attachment.php


Spoiler Framework XML (incomplete) :
Code:
  <!-- Pedia entries, flavours, icons, quotes, associated buildings, etc, etc, etc, all need to be added -->

  <Technologies>
    <Row>
      <Type>TECH_PHOTOGRAPHY</Type>
      <Cost>2350</Cost>
      <Description>TXT_KEY_TECH_PHOTOGRAPHY_TITLE</Description>
      <Help>TXT_KEY_TECH_PHOTOGRAPHY_TITLE</Help>
      <Civilopedia>TXT_KEY_TECH_PHOTOGRAPHY_TITLE</Civilopedia>
      <Quote>TXT_KEY_TECH_PHOTOGRAPHY_TITLE</Quote>
      <Era>ERA_INDUSTRIAL</Era>
      <Trade>true</Trade>
      <GridX>10</GridX>
      <GridY>4</GridY>
      <PortraitIndex>55</PortraitIndex>
      <IconAtlas>TECH_ATLAS_1</IconAtlas>
    </Row>

    <Row>
      <Type>TECH_MOTION_PHOTOGRAPHY</Type>
      <Cost>3100</Cost>
      <Description>TXT_KEY_TECH_MOTION_PHOTOGRAPHY_TITLE</Description>
      <Help>TXT_KEY_TECH_MOTION_PHOTOGRAPHY_TITLE</Help>
      <Civilopedia>TXT_KEY_TECH_MOTION_PHOTOGRAPHY_TITLE</Civilopedia>
      <Quote>TXT_KEY_TECH_MOTION_PHOTOGRAPHY_TITLE</Quote>
      <Era>ERA_MODERN</Era>
      <Trade>true</Trade>
      <GridX>11</GridX>
      <GridY>4</GridY>
      <PortraitIndex>55</PortraitIndex>
      <IconAtlas>TECH_ATLAS_1</IconAtlas>
    </Row>

    <Update>
      <Where Type="TECH_STEAM_POWER"/>
      <Set GridY="6"/>
    </Update>
    <Update>
      <Where Type="TECH_FLIGHT"/>
      <Set GridY="6"/>
    </Update>
    <Update>
      <Where Type="TECH_RAILROAD"/>
      <Set GridY="8"/>
    </Update>
    <Update>
      <Where Type="TECH_BALLISTICS"/>
      <Set GridY="6"/>
    </Update>
    <Update>
      <Where Type="TECH_COMBUSTION"/>
      <Set GridY="8"/>
    </Update>
  </Technologies>

  <Technology_PrereqTechs>
    <Row>
      <TechType>TECH_PHOTOGRAPHY</TechType>
      <PrereqTech>TECH_SCIENTIFIC_THEORY</PrereqTech>
    </Row>

    <Row>
      <TechType>TECH_MOTION_PHOTOGRAPHY</TechType>
      <PrereqTech>TECH_PHOTOGRAPHY</PrereqTech>
    </Row>
    <Row>
      <TechType>TECH_MOTION_PHOTOGRAPHY</TechType>
      <PrereqTech>TECH_ELECTRICITY</PrereqTech>
    </Row>

    <Row>
      <TechType>TECH_ELECTRONICS</TechType>
      <PrereqTech>TECH_MOTION_PHOTOGRAPHY</PrereqTech>
    </Row>

    <Delete TechType="TECH_REPLACEABLE_PARTS" PrereqTech="TECH_STEAM_POWER"/>
  </Technology_PrereqTechs>

  <Language_en_US>
    <Row Tag="TXT_KEY_TECH_PHOTOGRAPHY_TITLE">
      <Text>Photography</Text>
    </Row>
    <Row Tag="TXT_KEY_TECH_MOTION_PHOTOGRAPHY_TITLE">
      <Text>Motion Pictures</Text>
    </Row>
  </Language_en_US>

Spoiler Old layout for comparision :
attachment.php
 
Back
Top Bottom