From ba18b7b32ddf6e0022a1c5592a2af273837942a7 Mon Sep 17 00:00:00 2001 From: BuildTools <unconfigured@null.spigotmc.org> Date: Sun, 20 Aug 2017 09:29:17 +0200 Subject: [PATCH] Added a few FS Options to Smuggling PA --- src/uncategorized/persBusiness.tw | 54 +++++++++++++++++++++++++++---- 1 file changed, 48 insertions(+), 6 deletions(-) diff --git a/src/uncategorized/persBusiness.tw b/src/uncategorized/persBusiness.tw index 51afb8013e5..8a45813cd39 100644 --- a/src/uncategorized/persBusiness.tw +++ b/src/uncategorized/persBusiness.tw @@ -72,17 +72,60 @@ You spend your free time hustling around your penthouse, cleaning and making sure everything is in order. You manage to reduce your upkeep by 25%. <<if $PC.vagina == 1>>This is much easier to do without a big baby bump in the way.<</if>> <</if>> <<elseif ($personalAttention == "smuggling")>> - <<if random(1,100) >= 90 && $arcologies[0].FSDegradationistDecoration >= 80>> + <<set $qualifiedFS to []>> + <<if $arcologies[0].FSDegradationistDecoration >= 80>> + <<set $qualifiedFS.push("degradationist")>> + <</if>> + <<if $arcologies[0].FSPaternalistDecoration >= 80>> + <<set $qualifiedFS.push("paternalist")>> + <</if>> + <<if $arcologies[0].FSHedonisticDecadenceDecoration >= 80>> + <<set $qualifiedFS.push("hedonistic")>> + <</if>> + <<if $arcologies[0].FSPastoralistDecoration >= 80 && $arcologies[0].FSPastoralistLaw == 1>> + <<set $qualifiedFS.push("pastoralist")>> + <</if>> + <<if $arcologies[0].FSSupremacistDecoration >= 80>> + <<set $qualifiedFS.push("supremacist")>> + <</if>> + <<if $arcologies[0].FSBodyPuristDecoration >= 80>> + <<set $qualifiedFS.push("body purist")>> + <</if>> + <<if $rep >= 18000>> + <<set $qualifiedFS.push("Prestigious")>> + <<elseif $rep >= 9000>> + <<set $qualifiedFS.push("Well Known")>> + <</if>> + <<set _smugglingFS = $qualifiedFS.random()>> + <<if _smugglingFS is "degradationist">> <<set $seed = random(2000,3000)>> During your free time, you make business with a few low-standards slavers and manage to buy stolen slaves and sell them at a profit. Even if people recognized you, such treatment of slaves is normal, and only a few people would really complain about it. Your dealings have made you @@.yellowgreen;¤<<print ($seed+Math.trunc(Math.abs($cash)/40))>>.@@ <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> - <<elseif $arcologies[0].FSPaternalistDecoration >= 80>> - You manage to find a few slavers without any problem, but when you actually try to do business, you are quickly recognized. You only manage to make @@.yellowgreen;¤<<print ($seed+Math.trunc(Math.abs($cash)/40))>>@@ before you are sent away. The people of your arcology are @@.red;outraged by your lack of respect@@ for slave rights. + <<elseif _smugglingFS is "paternalist">> + You manage to find a few low-standards slavers without any problem, but when you actually try to do business, you are quickly recognized. You only manage to make @@.yellowgreen;¤<<print ($seed+Math.trunc(Math.abs($cash)/40))>>@@ before you are sent away. The people of your arcology are @@.red;outraged by your lack of respect@@ for slave rights. <<set $seed = random(1000,1500)>> <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> <<set $rep = Math.trunc($rep*.1)>> <<set $enduringRep *= .2>> - <<elseif $rep >= 18000>> + <<elseif _smugglingFS is "hedonistic">> + <<set $seed = random(1500,2500)>> + Since most of what the Old World considered to be illegal is legal in your arcology, "smuggling" is quite common, and you easily find people ready to pay for your help with dealing with their competiors. With this, you manage to make @@.¤yellowgreen;<<print ($seed+Math.trunc(Math.abs($cash)/40))>>@@. + <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> + <<elseif _smugglingFS is "oastoralist">> + <<set $seed = random (1500,2500)>> + You take advantage of your own laws, making sure that animal products come into your arcology. But you also make sure to make them as disgusting as possible, so that people would rather turn to slave-produced ones instead. This allows you to make @@.yellowgreen;¤<<print ($seed+Math.trunc(Maths.abs($cash)/40))>>. + <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> + <<elseif _smugglingFS is "supremacist">> + <<set $seed = random(2000,3000)>> + When it comes to smuggling in your arcology, there is no better target than $arcologies[0].FSSupremacistRace slaves, and there is a high demand for them, making you a nice @@.yellowgreen;¤<<print ($seed+Math.trunc(Math.abs($cash)/40))>>.@@ Participating in this slave trade means you can control who is set. Your people do not see things in the same light though, and @@.red;your reputation takes a big hit@@. + <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> + <<set $rep = Math.trunc($rep*.25)>> + <<set $enduringRep *= .5>> + <<elseif _smugglingFS is "body purist">> + <<set $seed = random(1500,2500)>> + In your arcology, people are expected to be all natural, but this doesn't mean the same thing applies outside. By buying slaves, giving them implants and quickly selling them before anyone notices, you manage to make @@.yellowgreen;¤<<print ($seed+Math.trunc(Math.abs($cash)/40))>>. + <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> + <<elseif _smugglingFS is "Prestigious">> <<set $seed = random(1000,3000)>> Your strong reputation makes it both really easy to find opportunities to gain quite a bit of money, @@.yellowgreen;¤<<print ($seed+Math.trunc(Math.abs($cash)/40))>>,@@ but at the same time, it makes it hard to do so anonymously. <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> @@ -99,7 +142,7 @@ <<set $rep = Math.trunc($rep*.75)>> <<set $enduringRep *= .9>> <</if>> - <<elseif $rep >= 9000>> + <<elseif _smugglingFS is "Well Known">> <<set $seed = random(500,2500)>> Your reputation helps you find opportunities that need people who have proved. Those brought you @@.yellowgreen;¤<<print ($seed+Math.trunc(Math.abs($cash)/40))>>,@@ but even when taking precautions, nothing guarantees you can stay anonymous. <<set $cash += ($seed+Math.trunc(Math.abs($cash)/40))>> @@ -131,7 +174,6 @@ <<set $rep = Math.trunc($rep*.55)>> <<set $enduringRep *= .8>> <</if>> ->>>>>>> upstream/pregmod-master <</if>> <<elseif ($cash > 1000) && ($personalAttention == "business")>> <<if $PC.belly >= 1500>> -- GitLab