• 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.
Showing developer posts only. Show all posts in this thread.
Indeed, theres nothing wrong with suggestions for specific new events for things you feel we don't cover :)
As Jake said we actually add lots of these from time to time (the free patches for el dorado and art of war probably had the biggest batches of these). No guarantees beforehand on if/when something specific will be added though.
 
  • 3
  • 1
Reactions:
Indeed, theres nothing wrong with suggestions for specific new events for things you feel we don't cover :)
As Jake said we actually add lots of these from time to time (the free patches for el dorado and art of war probably had the biggest batches of these). No guarantees beforehand on if/when something specific will be added though.

How about some events for Pegu?

Enlargement of the Shwedagon Pagoda

Code:
# Enlarge the Shwedagon Pagoda
country_event = {
   id = flavor_peg.1
   title = "flavor_peg.EVTNAME1"
   desc = "flavor_peg.EVTDESC1"
   picture = BUDDHA_eventPicture

   fire_only_once = yes

   trigger = {
     is_year = 1450
     NOT = { is_year = 1475 }
     tag = PEG
     religion_group = eastern
   }
   mean_time_to_happen = {
     months = 120
   }
   option = {
     name = "flavor_peg.EVTOPTA1"
     add_years_of_income = -0.25
     add_prestige = 20
     add_legitimacy = 20
     add_dip_power = 200
   }
   option = {
     name = "flavor_peg.EVTOPTB1"
     add_prestige = -5
   }
}

Code:
flavor_peg.EVTNAME1: "Enlargement of the Shwedagon Pagoda"
flavor_peg.EVTDESC1: "The Shwedagon Pagoda is among the most spiritually significant stupas in the Buddhist world, and is perhaps the finest example of Mon architecture. Queen Shin Sawbu of Hanthawaddy abandoned her political role to embrace an ascetic life near the Pagoda in Dagon. Under her guidance, the hill on which the Pagoda stands was terraced, the top terrace was paved with flag stones, and the Queen assigned land and hereditary slaves for its maintenance. Its height rose to 131ft. In her later years Shin Sawbu's health declined and she had her bed placed so that she could look upon the gilded dome of the stupa. By the 16th Century the Shwedagon Pagoda was the foremost site of Buddhist pilgrimage in what is now Burma."
flavor_peg.EVTOPTA1: "We should make these improvements."
flavor_peg.EVTOPTB1: "It is too expensive."

Dhammazedi

Code:
# Dhammazedi

country_event = {
   id = flavor_peg.2
   title = "flavor_peg.EVTNAME2"
   desc = "flavor_peg.EVTDESC2"
   picture = REFORM_eventPicture

   fire_only_once = yes

   trigger = {
     tag = PEG
     has_heir = no
     NOT = {
       is_year = 1492
     }
   }
   mean_time_to_happen = {
     months = 120
   }
   option = {
     name = "flavor_peg.EVTOPTA2"
     define_heir = {
       name = "Dhammazedi"
       dynasty = "Wareru"
       birth_date = 1412.1.1
       adm = 4
       dip = 4
       mil = 3
     }
     add_karma = 20
   }
   option = {
     name = "flavor_peg.EVTOPTB2"
     add_prestige = 10
     define_advisor = {
       skill = 2
       type = theologian
       discount = yes
     }
   }
}

Code:
 flavor_peg.EVTNAME2: "Dhammazedi"
 flavor_peg.EVTDESC2: "As Queen Shin Sawbu had no surviving sons, she looked outside her bloodline for a suitable heir to the Hanthawaddy Kingdom. She nominated not a noble as might be expected, but a humble monk. Dhammazedi had been the Queen's loyal advisor and confidant ever since he had helped her escape from Ava, where she had been presented as a gift to their King by her brother. When Shin Sawbu retired from rulership, Dhammazedi proved himself a capable leader. He led Pegu into a short era of peace and prosperity, as well as pioneering a series of religious reforms characterised by closer adherence to Ceylonese orthodoxy. Following his death he was honoured as a saint and remember as one of Pegu's most enlightened monarchs."
 flavor_peg.EVTOPTA2: "He shall be the heir to the kingdom."
 flavor_peg.EVTOPTB2: "I'll have a true heir yet, let him continue as an advisor."
 
  • 3
Reactions: