
행동
조직체 금고에서 자금 인출
국가 간 조직체 국고에서 일부 자금을 인출하여 우리의 국고에 더합니다.
조직체 금고에서 자금 인출 잠금 해제보정치 유형select trigger 1정의in_game/common/generic_actions/international_organizations.txt:296
298type = internationalorganization
299ai_tick = monthly
300ai_tick_frequency = 12
302automation_tick = never
303automation_tick_frequency = 12
304potential = {
}
306allow = {
}
308cooldown = {
309type = withdraw_from_organization_treasury
310years = 1
}
312select_trigger = {
313looking_for_a = international_organization
314source = actor
315target_flag = recipient
316name = "choose_international_organization" 국가 간 조직체 선택:
317column = {
318data = name
}
320visible = {
321has_enabled_currency = gold
323leader_country ?= scope:actor
324gold > 0
}
326enabled = {
327scope:actor = {
328is_subject = no
}
}
}
332select_trigger = {
333looking_for_a = value
334target_flag = target_value
335name = "withdraw_from_organization_treasury_select_gold_amount" 해당 조직체에서 인출할 두카트의 양 선택:
336min = {
337value = scope:recipient.gold
338divide = 100
}
340max = scope:recipient.gold
341step = {
342value = scope:recipient.gold
343divide = 20
}
345default = scope:recipient.gold
}
347effect = {
348if = {
349limit = {
349exists = scope:target_value
}
350scope:actor = {
351add_gold = scope:target_value
}
353scope:recipient = {
354add_gold = {
355value = scope:target_value
356multiply = -1
}
}
}
}
361ai_will_do = {
362add = 10
}