ORIGINAL: operating
Kirk,
What is NM% loss to owner for losing city?
Curious, Bob
<edit>
Is the NM% loss the same for losing a capital city vs city or fort?
< Message edited by operating -- 4/9/2014 2:30:38 PM >
Kirk,
Read page 26 about National Morale (NM) in the Manual: it does not explain the difference in NM percentages between
Capital Cities and
Cities, only that one is greater than the other. Forts are not covered in this section as to losing or capturing and it's effect on NM. Nor, is there any reference to cities with ports (which are of additional value) (supply fleet destination). Trying to weigh in on an MP end game strategy, where I am losing on one front, yet winning on another, need some hard numbers.
Thanks, Bob
Hi Bob,I tracked this down in the Game Morale script.
The heading states NO LONGER USED?
-- no longer used
--~ function CaptureMoraleEffect(captor, construction)
--~ if construction.type == Construction.TYPE_CITY or construction.type == Construction.TYPE_FORTRESS then
--~ -- morale loss for original owner
--~ local owner = construction.hex.originalFaction
--~ ChangeFactionMorale(owner, -100)
--~ -- morale boost for captor's factions
--~ for faction in captor.factions do
--~ ChangeFactionMorale(faction, 50)
--~ end
--~ elseif construction.type == Construction.TYPE_CAPITAL then
--~ -- morale loss for original owner
--~ local owner = construction.hex.originalFaction
--~ ChangeFactionMorale(owner, -200)
--~ -- morale boost for captor's factions
--~ for faction in captor.factions do
--~ ChangeFactionMorale(faction, 100)
--~ end
--~ end
--~ end
If you loose a City or Fortress = -10% Morale loss to your Nation.
If you loose a Capital City = -20% Morale loss to your Nation.
If you Capture a City or Fortress = +5 Morale boost.
If you Capture a Capital City = +10 Morale boost.