From 37203e1ee7fc20c047ab840762fb9305c6f65e74 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Mon, 12 Oct 2020 00:40:15 -0300 Subject: New tax raising policy --- npc/functions/politics.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt index def0dc676..f74c9c6fc 100644 --- a/npc/functions/politics.txt +++ b/npc/functions/politics.txt @@ -343,6 +343,8 @@ function script POL_TownInfo { mesc l("Town Money: @@", .@GP), 2; mesc l("Town Reputation: %d | %d.%02d %% Tax", .@RP, .@TX/100, .@TX%100), 2; mesc l("Town Weekly Exports: @@", .@EX), 2; + } else { + mesc l("Town Tax: %d.%02d %%", .@TX/100, .@TX%100), 2; } return; } @@ -434,13 +436,13 @@ function script POL_Manage { .@cost=.@TX/11; mesc l("Raising Taxes"), 3; mesc l("You need @@ Reputation to make this investment.", .@cost); - mesc l("Taxes will raise in 0.01~0.03%, capped at 10%."); - if (.@RP < .@cost || .@TX >= 1000) + mesc l("Taxes will raise in 0.02~0.05%, capped at 15%."); + if (.@RP < .@cost || .@TX >= 1500) break; mesc l("Are you sure?"); if (askyesno() == ASK_YES) { setd(.@town$+"_REPUTATION", .@RP-.@cost); - setd(.@town$+"_TAX", .@TX+rand2(1,3)); + setd(.@town$+"_TAX", .@TX+rand2(2,5)); mesc l("Taxes raised"), 1; next; } -- cgit v1.2.3-60-g2f50