Advertisement
pastebin_user_mmmmm

Mod HoI4

May 11th, 2025
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.21 KB | Software | 0 0
  1. #FOCUS
  2.  
  3. focus = {
  4.         id = DEI_resource_extraction_cooperation
  5.         icon = GFX_focus_generic_resource_extraction
  6.         prerequisite = { focus = null }
  7.         x = 1
  8.         y = 2
  9.         relative_position_id = DEI_regional_influence
  10.  
  11.         mutually_exclusive = { focus = DEI_malayan_expansion }
  12.  
  13.         cost = 10
  14.  
  15.         completion_reward = {
  16.             MAL = { country_event = { id = dei_event_mal_dei_trade } }
  17.             custom_effect_tooltip = "MAL got mal dei event"
  18.         }
  19.     }
  20.  
  21.  
  22. #EVENT
  23.  
  24. add_namespace = dei_event_mal_dei_trade
  25.  
  26. country_event = {
  27.     id = dei_event_mal_dei_trade.1
  28.     title = dei_event_mal_dei_trade.1.t
  29.     desc = dei_event_mal_dei_trade.1.d
  30.     picture = GFX_report_event_generic_diplomatic
  31.  
  32.     #is_triggered_only = yes
  33.  
  34.     trigger = {
  35.         tag = DEI
  36.         has_completed_focus = DEI_resource_extraction_cooperation
  37.     }
  38.  
  39.     mean_time_to_happen = {
  40.         hours = 6
  41.     }
  42.  
  43.     trigger_for = MAL
  44.  
  45.     fire_only_once = yes
  46.  
  47.     option = {
  48.         name = dei_event_mal_dei_trade.1.a
  49.         ai_chance = {
  50.             factor = 100
  51.         }
  52.         MAL = { add_ideas = DEI_mal_dei_trade_mal }  # Malaya gets this
  53.         DEI = { add_ideas = DEI_mal_dei_trade_dei }  # DEI gets this
  54.     }
  55.  
  56.     option = {
  57.         name = dei_event_mal_dei_trade.1.b
  58.         ai_chance = {
  59.             factor = 0
  60.         }
  61.     }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement