vg-mod-ck3/Medievel_Thievery/common/script_values/medievel_thievery_values.txt

146 lines
2.1 KiB
Plaintext

mt_steal_gold_value = {
value = 0
if = {
limit = { scope:recipient.gold > 0 }
add = scope:recipient.gold
}
multiply = {
value = 0.2
if = {
limit = {
scope:recipient.gold <= 100
}
add = 0
}
else_if = {
limit = {
scope:recipient.gold <= 250
}
add = 0.05
}
else_if = {
limit = {
scope:recipient.gold <= 500
}
add = 0.1
}
else_if = {
limit = {
scope:recipient.gold <= 750
}
add = 0.125
}
else_if = {
limit = {
scope:recipient.gold <= 1000
}
add = 0.15
}
else = {
add = 0.175
}
}
round = yes
}
mt_steal_prestige_value = {
value = 0
if = {
limit = { scope:recipient.prestige > 0 }
add = scope:recipient.prestige
}
multiply = {
value = 0.2
if = {
limit = {
scope:recipient.prestige <= 100
}
add = 0
}
else_if = {
limit = {
scope:recipient.prestige <= 250
}
add = 0.05
}
else_if = {
limit = {
scope:recipient.prestige <= 500
}
add = 0.1
}
else_if = {
limit = {
scope:recipient.prestige <= 750
}
add = 0.125
}
else_if = {
limit = {
scope:recipient.prestige <= 1000
}
add = 0.15
}
else = {
add = 0.175
}
}
round = yes
}
mt_steal_piety_value = {
value = 0
if = {
limit = { scope:recipient.piety > 0 }
add = scope:recipient.piety
}
multiply = {
value = 0.2
if = {
limit = {
scope:recipient.piety <= 100
}
add = 0
}
else_if = {
limit = {
scope:recipient.piety <= 250
}
add = 0.05
}
else_if = {
limit = {
scope:recipient.piety <= 500
}
add = 0.1
}
else_if = {
limit = {
scope:recipient.piety <= 750
}
add = 0.125
}
else_if = {
limit = {
scope:recipient.piety <= 1000
}
add = 0.15
}
else = {
add = 0.175
}
}
round = yes
}
mt_thief_caught_gold_value = {
value = 0
if = {
limit = {
scope:mt_thief.gold > 0
}
add = scope:mt_thief.gold
}
}