Desc:cardsim.MsgStr(" A surge of anti-kobold sentiment has been reported by your spies on the surface and your military is concerned that anti-kobold vigilantes will attack the tunnels in the near-future. They want to build up now while doing so is safe."),
UnenactedDesc:cardsim.MsgStr(`Your war chief paces irritably. "We have terrible threats facing us. It's imperative that we build up our numbers in both the military and the domestic sense. I want creches under military control and a good hunting crew to supply them with food."`),
EnactedDesc:cardsim.MsgStr("[current policy] Your war chief is presently monitoring the situation, building up your military, and securing your creches."),
UnenactedDesc:cardsim.MsgStr(`Your head miner considers the matter worriedly. "Creches under military control? No. That would invite chaos. We need to dig deeper; we can have a peaceful, orderly society if we just get far enough away from surfacers."`),
EnactedDesc:cardsim.MsgStr("[current policy] Your head miner is presently leading a project to dig as far away from the surface as possible."),
UnenactedDesc:cardsim.MsgStr(`Your nursery director is incensed. "Creches under military control? Never! Let young kobolds play! In fact, cut the military just for suggesting this. The threats facing us are completely overstated."`),
EnactedDesc:cardsim.MsgStr("[current policy] Military funding has been diverted into early childhood education."),
Name:cardsim.MsgStr("International Festival of Bureaucracy"),
Desc:cardsim.MsgStr(" Good times are upon us! A great festival has been declared between many kobold nations, celebrating the orderly nature of the kobold soul! That's right, it's the International Festival of Bureaucracy!"),
After:ShuffleIntoBottomHalf,
Policies:[]Policy{
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr(`Your Minister of Administration is practically jumping for joy. "This is our opportunity to prove that we're a prosperous society and attract some fresh blood! We need to raise salaries in the bureaucracy, grant some time off to our bureaucrats to make sure they can attend, and try to hire talent away from other nations. We'll forge productive trade relations by this, you'll see!`),
EnactedDesc:cardsim.MsgStr("[current policy] Your bureaucrats are really looking forward to attending, where they can boast about how the festival boosted their salaries."),
UnenactedDesc:cardsim.MsgStr(`Your Minister of Finance pulls you aside. "This is a good opportunity to head-hunt. Bureaucrats from many nations will be attending. There's got to be some who'll work for less than the ones we've got. There are some terribly threatened or impoverished communities among kobolds.`),
EnactedDesc:cardsim.MsgStr("[current policy] Your nation's policy is clear: the festival of bureaucracy is a chance to trade workers with other kobold nations in your attempts to build a more efficient government."),
// if p.Stats.GovBureaucracyExpense.Value >= 0.02 {
// return true
// }
// return false
// },
// Original implementation preserved in the hopes that I'll learn this stuff. This is equivalent to the shorter code above. I'll probably remove this comment eventually. Sincerely, Rakeela.
UnenactedDesc:cardsim.MsgStr(`Your Minister of Finance greets you exuberantly. "We've trimmed the wages of the bureaucracy beautifully, but maybe we can scout some outright volunteers. Some nations are absolute disasters, after all.`),
EnactedDesc:cardsim.MsgStr(`[current policy] It's hard to find volunteer workers at the festival, but your nation is doing its best.`),
UnenactedDesc:cardsim.MsgStr(`One of your non-bureaucrat friends has been in a foul temper. "This festival is everything that's wrong with our society. Life isn't about filling out forms. We ought to snub this festival and outright fire some bureaucrats."`),
EnactedDesc:cardsim.MsgStr("Your nation currently bans the International Festival of Bureaucracy. There will be no local celebration without a policy change."),
},//End of "International Festival of Bureaucracy" policies
},//End of "International Festival of Bureaucracy" card
&SwitchingCard{
Name:cardsim.MsgStr("Two Kobolds in a Trenchcoat"),
Desc:cardsim.MsgStr("An inevitable concern of kobold nations is the matter of trade. Trade with other kobolds is straightforward, but overland caravans are unsafe. Trade with surfacers is vital... but achieving it is difficult owing to anti-kobold sentiment."),
After:ShuffleIntoBottomHalf,
Policies:[]Policy{
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr(`Speaking for the conservative opinion, one prospective merchant says, "We need illusions. Our priority needs to be trading to acquire or studying to create artifacts of disguising. The high start-up costs are balanced by free movement in a surface society that frequently detests us."`),
EnactedDesc:cardsim.MsgStr("[current policy] Your merchants rely on magical disguises to avoid being caught as kobolds while doing business on the surface."),
Do:func(p*Player)(cardsim.Message,error){
p.Stats.ManufacturingIncome+=0.03
p.Stats.LogisticsExpense+=0.04
p.Stats.MiningIncome+=0.01
p.Stats.AlchemyIncome+=0.01
p.Stats.GadgetryIncome+=0.01
p.Stats.ScavengingIncome+=0.01
p.Stats.FoodSupply+=0.01
returncardsim.MsgStr("Nobody ever meets a kobold merchant."),nil
},
Undo:func(p*Player)error{
p.Stats.ManufacturingIncome-=0.03
p.Stats.LogisticsExpense-=0.04
p.Stats.MiningIncome-=0.01
p.Stats.AlchemyIncome-=0.01
p.Stats.GadgetryIncome-=0.01
p.Stats.ScavengingIncome-=0.01
p.Stats.FoodSupply-=0.01
returnnil
},
CanDo:YesWeCan,
},
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr(`Brave but potentially headstrong, another prospective merchant has attended the meeting with the following plea. "We must take head-on the risk of improving the status of kobolds! Only by bravely attending the surface markets can we hope to achieve a true and lasting peace!`),
EnactedDesc:cardsim.MsgStr(`[currentpolicy] Your merchants represent the nation's peaceful ideals by visiting the surface openly despite occasional casaulties.`),
Do:func(p*Player)(cardsim.Message,error){
p.Stats.BasePopulation-=15
p.Stats.ManufacturingIncome+=0.03
p.Stats.LogisticsExpense+=0.01
p.Stats.EconPlanExpense+=0.04
p.Stats.MiningIncome+=0.01
p.Stats.AlchemyIncome+=0.02
p.Stats.GadgetryIncome+=0.02
p.Stats.HospitalityIncome+=0.01
p.Stats.PublishingIncome+=0.01
p.Stats.ForeignRelExpense+=0.01
p.Stats.WarExpense-=0.01
p.Stats.ScavengingIncome-=0.01
returncardsim.MsgStr("The economic planning office formally plans for attrition among its merchants."),nil
},
Undo:func(p*Player)error{
p.Stats.BasePopulation+=15
p.Stats.ManufacturingIncome-=0.03
p.Stats.LogisticsExpense-=0.01
p.Stats.EconPlanExpense-=0.04
p.Stats.MiningIncome-=0.01
p.Stats.AlchemyIncome-=0.02
p.Stats.GadgetryIncome-=0.02
p.Stats.HospitalityIncome-=0.01
p.Stats.PublishingIncome-=0.01
p.Stats.ForeignRelExpense-=0.01
p.Stats.WarExpense+=0.01
p.Stats.ScavengingIncome+=0.01
returnnil
},
CanDo:YesWeCan,
},
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr(`A shady scavenger has offered to change careers and become a merchant. Their proposal is, "Surfacers aren't all monolithic. If we talk to the ones who are more greedy than prejudiced, we don't need magic or idealism. We can get in contact with lots of people who'll buy lots of things from us, even things that might not have a market if we worked with 'good' merchants."`),
EnactedDesc:cardsim.MsgStr("[current policy] Your merchants work with the underworld of the surface, forging connections with the people who are ironically less likely to murder them."),
Do:func(p*Player)(cardsim.Message,error){
p.Stats.BasePopulation-=5
p.Stats.LogisticsExpense+=0.01
p.Stats.ScavengingIncome+=0.03
p.Stats.AlchemyIncome+=0.02
p.Stats.GadgetryIncome+=0.03
p.Stats.MiningIncome-=0.01
p.Stats.ManufacturingIncome-=0.01
returncardsim.MsgStr("Kobold merchants are instantly suspected of black market connections."),nil
},
Undo:func(p*Player)error{
p.Stats.BasePopulation+=5
p.Stats.LogisticsExpense-=0.01
p.Stats.ScavengingIncome-=0.03
p.Stats.AlchemyIncome-=0.02
p.Stats.GadgetryIncome-=0.03
p.Stats.MiningIncome+=0.01
p.Stats.ManufacturingIncome+=0.01
returnnil
},
CanDo:YesWeCan,
},
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr(`A mining forebold registered for the right to attend this meeting, and says, "Surfacers can't be trusted in business and we shouldn't be supporting them with trade. We need underground roads to ease trade with other kobold nations. It's a massive investment in smoothing current tunnels and digging new ones, but think of the reward: a world of underground civilizations supporting each other."`),
EnactedDesc:cardsim.MsgStr(`[currentpolicy] Your merchants have been directed to focus on trade with other kobolds, and your miners are perpetually tunnelling towards other kobold nations in pursuit of the dream of a world of underground roads.`),
Do:func(p*Player)(cardsim.Message,error){
p.Stats.MiningIncome+=0.05
p.Stats.ConstructionIncome+=0.01
p.Stats.LogisticsExpense+=0.06
p.Stats.FoodSupply-=0.01
returncardsim.MsgStr("The vast network of caverns under the surface of the world is not a natural phenomenon."),nil
},
Undo:func(p*Player)error{
p.Stats.MiningIncome-=0.05
p.Stats.ConstructionIncome-=0.01
p.Stats.LogisticsExpense-=0.06
p.Stats.FoodSupply+=0.01
returnnil
},
CanDo:YesWeCan,
},
&VerbosePolicy{
Default:&BasicPolicy{
UnenactedDesc:cardsim.MsgStr("Refusing an opportunity to expand trade is merely an opportunity cost. It won't make conditions any better or worse."),
EnactedDesc:cardsim.MsgStr("Refusing an opportunity to expand trade is merely an opportunity cost. It won't make conditions any better or worse."),
Do:func(p*Player)(cardsim.Message,error){
returncardsim.MsgStr("Kobold merchants are known for their talent at standing on each others' shoulders."),nil
},
Undo:func(p*Player)error{
returnnil
},
CanDo:YesWeCan,
},
Variants:[]Policy{
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr("Rejecting the illusion-based merchantry will cost us a great deal in trade and surface food, but we can certainly do it."),
},
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr("Rejecting our idealistic approach to surface trade will save a few lives directly, but consider how much we need the food we buy from the surfacers."),
},
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr("The surfacers' governments would certainly prefer us to abandon our underworld connections in their cities. Do we care about that? We'd be giving up some excellent profits."),
},
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr("Some of the miners would be heartbroken by abandoning the dream of underground roads, but the tax savings would be significant."),
Name:cardsim.MsgStr("A Recipe for Stewed Kobold"),
Desc:cardsim.MsgStr("Nobody would ever say a kobold smells bad, but the constant burrowing, manufacturing, and metallurgy that is common to kobold life is still a recipe for tense muscles and filthy scales. A slate of proposals have come through to address this issue."),
After:ShuffleIntoBottomHalf,
Policies:[]Policy{
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr(`A calm and cheerful scribe says, "We should have public baths! We have more problems with flooding than drought in the deep underground, so we've got plenty of water. We just need to channel it. We could create a hub of social life while improving the health of everybody!"`),
EnactedDesc:cardsim.MsgStr("[current policy] Public bathing is a staple social policy in the mines and warrens of your nation."),
Do:func(p*Player)(cardsim.Message,error){
p.Stats.ConstructionIncome+=0.01
p.Stats.QoLExpense+=0.01
p.Stats.HealthcareExpense+=0.01
p.Stats.ParksExpense+=0.04
returncardsim.MsgStr("The company of others makes cold water tolerable."),nil
UnenactedDesc:cardsim.MsgStr(`Your Minister of Finance is scandalized. "A free service? And such an expensive one to construct? No, no, no. The baths must pull their weight in the budget if they're ot be made at all. We must set an entry fee."`),
EnactedDesc:cardsim.MsgStr("[current policy] Elite bathhouses serve paying customers in your largest sites."),
Do:func(p*Player)(cardsim.Message,error){
p.Stats.ConstructionIncome+=0.01
p.Stats.HospitalityIncome+=0.01
p.Stats.ParksExpense+=0.02
returncardsim.MsgStr("A dirty body is the mark of the lower classes."),nil
},
Undo:func(p*Player)error{
p.Stats.ConstructionIncome-=0.01
p.Stats.HospitalityIncome-=0.01
p.Stats.ParksExpense-=0.02
returnnil
},
CanDo:YesWeCan,
},
&BasicPolicy{
UnenactedDesc:cardsim.MsgStr(`Your head diplomat chimes in with, "If you want to make the service self-sustaining, build a bath in a shallow cave and invite the surfacers in for a fee. Of course, we'll be giving up some of our secrecy, but it'll bring in foreign exchange to power our industries."`),
EnactedDesc:cardsim.MsgStr("[current policy] Conservative kobolds are scandalized: not only has the nation bathhouses, it has near-surface bathhouses for surfacers to visit."),
Do:func(p*Player)(cardsim.Message,error){
p.Stats.ConstructionIncome+=0.02
p.Stats.HospitalityIncome+=0.03
p.Stats.ManufacturingIncome+=0.01
p.Stats.ParksExpense+=0.03
p.Stats.FoodSupply+=0.01
returncardsim.MsgStr("Surfacers stink less in the nation's vicinity."),nil
},// Reminder: When a Secrecy stat is implemented charge this option a secrecy penalty.
UnenactedDesc:cardsim.MsgStr("Bathhouses are a big project that would displace other things in the city center. You could use the space for housing and services instead."),