Como evitar que la "Columna Durruti" acabe en el bando nacional

  • We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Derfel

Nanoconstructor retirado
39 Badges
Mar 11, 2003
15
38
  • Mount & Blade: Warband
  • Magicka
  • Europa Universalis III Complete
  • Semper Fi
  • Sword of the Stars
  • Sword of the Stars II
  • Victoria 2
  • 500k Club
  • Cities: Skylines
  • Pride of Nations
  • Europa Universalis III Complete
  • Mount & Blade: With Fire and Sword
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Crusader Kings II: Conclave
  • Stellaris
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Surviving Mars
  • Age of Wonders III
  • Europa Universalis III
  • Cities in Motion 2
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Cities in Motion
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III Collection
  • Heir to the Throne
El "fenomeno" se produce porque los refuerzos para le República llegan en el mismo evento que provoca la GC y por lo tanto, entran en el reparto de tropas que se hace entre los dos bandos aleatoriamente. La solución es dividir el evento en dos:
#########################################################################
# Spanish Civil War
#########################################################################
event = {
id = 3100
random = no
country = SPR

trigger = {
NOT = {
exists = SPA
}
atwar = no
OR = {
government = communist
government = democratic
}
}

name = "EVT_3100_NAME"
desc = "EVT_3100_DESC"
style = 0
picture = "SCW"

date = { day = 17 month = july year = 1936 }

action_a = {
name = "OK"

command = { type = civil_war which = SPA }
command = { type = trigger which = 3107} #SPR Opción 1
}
}
#########################################################################
# Spanish Civil War - Democracy Defended
#########################################################################
event = {
id = 3107
random = no
country = SPR

# Triggered by SPR3100 #Opción 1

# trigger = {
# event = 3100
# } #Opción 2

name = "EVT_3107_NAME"
desc = "EVT_3107_DESC"
style = 0
picture = "SCW"

#date = { day = 18 month = july year = 1936 } #Opción 2

action_a = {
name = "OK" # En Defensa de la Democracia!
command = { type = set_domestic which = democratic value = 7 }
command = { type = set_domestic which = political_left value = 6 }
command = { type = add_division value = militia }
command = { type = add_division value = militia }
command = { type = add_division value = militia }
command = { type = add_division value = militia }
command = { type = add_division value = infantry }
command = { type = add_division value = infantry }
command = { type = add_division value = infantry }
command = { type = add_division value = infantry }
command = { type = add_division value = infantry }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = add_division value = infantry when = 0 }
command = { type = headofstate which = 11033 } #Azaña
command = { type = headofgovernment which = 11062 } #Largo Caballero
command = { type = foreignminister which = 11096 } #Barcia Trelles
command = { type = armamentminister which = 11144 } #Giner de los Rios
command = { type = ministerofsecurity which = 11189 } #Azcarate
command = { type = ministerofintelligence which = 11217 } #Balboa
command = { type = chiefofstaff which = 11007 } #Miaja
command = { type = chiefofarmy which = 11291 } #Miaja
command = { type = chiefofnavy which = 11309 } #Giral
command = { type = chiefofair which = 11321 } #Hidalgo de Cisneros

command = { type = relation which = ENG value = 10 }
command = { type = relation which = FRA value = 10 }
command = { type = relation which = SOV value = 5 }
command = { type = relation which = USA value = 5 }
command = { type = relation which = GER value = -15 }
command = { type = relation which = ITA value = -10 }
command = { type = relation which = POR value = -10 }

command = { type = add_division which = "Milicias CNT" value = militia when = 0 }
command = { type = add_division which = "Milicias POUM" value = militia when = 0 }
command = { type = dissent value = 15 }
}
}

La Opción 1 dispara el evento el día 18 y la 2 el día 19

Es necesario añadir lo siguiente en event_text.csv para que el evento tenga nombre y texto:


EVT_3107_NAME;;;;El Pueblo en armas;;;;;;;x
EVT_3107_DESC;;;;El golpe militar, que pretendía dominar todo el territorio español no alcanzó la rápida victoria esperada. El nuevo jefe de gobierno, el republicano José Giral, que había accedido al cargo tras la dimisión de Casares Quiroga, accedió finalmente a repartir armas entre los partidos de izquierda y los sindicatos que rápidamente organizaron grupos de milicias. Los sindicatos y partidos políticos de izquierda resistieron, el golpe se convirtió en una guerra civil y la resistencia en una revolución. ¡La Guerra Civil Española había comenzado! ;;;;;;;x
ACTIONNAME3107A;OK;OK;OK;Aceptar;OK;OK;;;;;x

P.S. El texto es manifiestamente mejorable :)