Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
Events - IC / Re: The Torch Tribune
« Last post by MysticPing on 15 May, 2017, 05:49:43 pm »
The National Workers' And Soldiers' Front has recently sponsored several violent demonstrations against mostly but not only Iridar Foreign policy. Their biggest thing they dislike is the new alliance with Ryudinia, which they claims puts the country in danger. As the local militia intervened to ensure the safety of protesters and counter-protesters violence broke out hurting several and many of the protesters ended up in jail over night.

And in other news the newly funded Agricultural Syndicate in Twofort is reporting great success...
62
The Arcade / Re: The Control+V Game!
« Last post by MysticPing on 15 May, 2017, 02:00:47 pm »
// finds suitable targets given range. Aims at target within range that has made most progress towards the end of the map
    public GameObject findTarget()
    {
        List<GameObject> possibleTargets = GameObject.Find("mapWaveManager").GetComponent<wave>().enemies;
        GameObject Target = null;
        float bestDistance = 0;
        foreach (GameObject possibleTarget in possibleTargets)
        {
            if (possibleTarget != null && Vector2.Distance(transform.position, possibleTarget.transform.position) <= Range && possibleTarget) {
                unitScript targetScript = possibleTarget.GetComponent<unitScript>();
                if(targetScript.totalDistance > bestDistance && targetScript.totalDistance > 5) //Total distance greather than five as they spawn 5 offscreen
                {
                    bestDistance = targetScript.totalDistance;
                    Target = possibleTarget;
                }

             }
        }
        return Target;
    }
64
Projects - IC / Re: Royal Erkettuni Bureau of Economics
« Last post by StelarCF on 15 May, 2017, 10:41:43 am »
Economics report, 1921
Currently, Crown Projects include
* A grant for research into the field of antibiotics, to allow for improved healthcare

Additionally, known large civilian projects include
* A new, large bank in Kurto, which is predicted to benefit the local economy as currency and cheap loans become available
* A new university in Shirki to take advantage of the scientific network the crown is preparing
* Two regional hospitals, in Sarine and Ira respectively

Thus the current large-capital spending of the nation can be resumed thusly:

0.6% Capital Accumulation (both Crown and People)
23.5% Military Spending
9.7% Crown Projects
66.2% Popular Projects

In total, around 33.2% of large-capital spending is done by the Crown

The median taxation rate is currently 6.64% and the proportion of large capital spending in the economy is predicted to be around 10%

Finally, the Kingdom is predicted to use around 2.47% of its economy towards military spending.

Economics report, 1922
Currently, Crown Projects include
* A grant for research into new military arms, including the promising development of self-loading rifles, integrated into the military budget at the behest of the army

Additionally, known large civilian projects include
* A joint industrial effort to standardize many usual parts and the tolerances therein in order to allow for easily replaceable parts
* An aggregate of two large energy companies and the University of Sobanu to further develop the science of electricity, with the purpose being to allow for what they term "power grids" to be installed, allowing the whole nation to be powered by electricity.
* Two regional banks, in Rysan and Ira respectively

Thus the current large-capital spending of the nation can be resumed thusly:

2.3% Capital Accumulation (both Crown and People)
41.5% Military Spending
0.0% Crown Projects (all spending this year has been concentrated on the army)
56.2% Popular Projects

In total, around 41.5% of large-capital spending is done by the Crown

The median taxation rate is currently 8.3% and the proportion of large capital spending in the economy is predicted to be around 10%

Finally, the Kingdom is predicted to use around 8.3% of its economy towards military spending.
65
The Arcade / Re: The Control+V Game!
« Last post by Caesar15 on 15 May, 2017, 06:23:08 am »
Switching the factions wouldn't be hard
66
Projects - IC / Re: Aeserian Department of the Treasury
« Last post by Mobius on 15 May, 2017, 04:45:10 am »
Cycle 3 - 1922

Spoiler: Cycle 3 Projects (hover to show)
67
The Arcade / Re: The Control+V Game!
« Last post by Vallytine on 14 May, 2017, 11:50:40 pm »
68
The Arcade / Re: The Control+V Game!
« Last post by Caesar15 on 14 May, 2017, 09:02:13 pm »
dealMyCards is called in the newGame() method and in the constructor when a new ElevensBoard is instantiated.
69
Organisations and Alliances - IC / Re: The International Union of Republics
« Last post by Charzy on 14 May, 2017, 03:47:47 pm »
As the only member at this time, we approve this application.
70
Organisations and Alliances - IC / Re: The International Union of Republics
« Last post by MysticPing on 14 May, 2017, 03:46:53 pm »
With the approval of the CoC I have been tasked with applying to this organization which would clearly benefit the workers of Iridar and the working man internationally.
Signed: Brandon Bildt, Foreign Minister
Pages: 1 ... 5 6 [7] 8 9 10