
self.contents.draw_text(4, 0, 200, 86, "Current Tax Rate")
self.contents.font.color = normal_color
self.contents.draw_text(172, 0, 64, 86, $game_system.tax.to_s + "%", 2)
if $game_system.tax >= 0
self.contents.draw_text(4, 0, 200, 86, "Current Tax Rate")
else
self.contents.draw_text(4, 0, 200, 86, "Current Subsidy")
end
self.contents.font.color = normal_color
if $game_system.tax >= 0
self.contents.draw_text(172, 0, 64, 86, $game_system.tax.to_s + "%", 2)
else
self.contents.draw_text(172, 0, 64, 86, ($game_system.tax * -1).to_s + "%", 2)
end