Skip to content

Instantly share code, notes, and snippets.

@RemmyDev1
Created March 31, 2023 01:36
Show Gist options
  • Save RemmyDev1/01118eb0e88114c7bf2b3774f339b4b0 to your computer and use it in GitHub Desktop.
Save RemmyDev1/01118eb0e88114c7bf2b3774f339b4b0 to your computer and use it in GitHub Desktop.
live as andrew jackson
global points
global yearsleft
global monthsleft
points = 100
yearsleft = 8
monthsleft = 0
def func():
global points
print(points,
" presdential points dont make anymore dumb choices \n\nwhat do you want to do \n \n1.lay the framwork of democracy\n2.pay of the national debt over 1 year\n3.declare war\n4.skip 2 months\n5.make a new law or veto an already existing one\n6.kick the natives out\n")
a = input("").lower()
if "1" in a or "lay" in a:
points += 10
print("the people support you now even more +10 presidential points. You Now have", points,
"persidential points")
elif "2" in a or "pay" in a or "debt" in a:
points -= 5
print(
"you had to higher taxes so the people got a little mad -5 presidential points \n but its fine your doing it for the good of the people it will help in a year. You now have",
points)
elif a == "war" or a == "3":
print(
"what country do you want to declare war on?\nhere are some option but remmber you can pick any north or european country. \n1.Mexico\n2.britian\n3.spain\n4.france")
a = input("").lower()
if "m" in a:
points -= 20
print("you declared war on mexico the people dont support that -20 presidential points. You Now have",
points, "presidential points")
elif "4" in a or "skip" in a:
print("bad idea but whatever")
print("It is your second month as president!\n what is your next choice")
elif a == "5" or a == "new" or a == "veto":
print("what do you want to do? \n1.Create a new law\n2.Veto an already existing one")
a = input("").lower()
if "1" in a or "new" in a:
print(
"what law do you want to create?\n1.Indian Removal Act\n2.Tariff of 1832\n3.An Act to Regulate Trade and Intercourse With the Indian Tribes\n4. Patent Act of 1836")
a = input("").lower()
elif "2" in a or "veto" in a:
print("what law do you want to veto?")
print("\n1.Treaties with the Indians to establish Peace\n2.Bank of the United States, Supplementary Act to the Act incorporating the.\n3.veto the 2nd bank of the United States of America")
a = input("").lower()
if "1" in a or "first" in a:
points -= 5
print("you try to veto\n the Treaties with the Indians to establish Peace law and it doesnt work the house of representatives\n does not approve your action -5 presidential points. You now have",
points, "presidential points")
main()
elif "6" in a or "kick" in a:
print(
" you got the house of represitatives to accept your action\nWhere do you want to reloacate them to? sorry in advance but i couldnt get the exact names of the places \n you could relocate the natives to before you actually own that land so i am using the new map/states\n\n1.Kansas\n2.Iowa\nMissouri\n3.Arkensas\n4.Oklahoma")
a = input("").lower()
if "1" in a or "kansas" in a:
pass
def main():
global points
print("You are Andrew jackson the 7th president. You have", points,
" presdential points dont do dumb choices \n\nIt is March 4, 1829 your first day of presidency what do you want to do \n \n1.lay the framwork of democracy\n2.pay of the national debt over 1 year\n3.declare war\n4.skip 2 months\n5.make a new law or veto an already existing one\n6.kick the natives out\n")
a = input("").lower()
if "1" in a or "lay" in a:
points += 10
print("the people support you now even more +10 presidential points. You Now have", points,
"persidential points")
elif "2" in a or "pay" in a or "debt" in a:
points -= 5
print(
"you had to higher taxes so the people got a little mad -5 presidential points \n but its fine your doing it for the good of the people it will help in a year. You now have",
points)
elif a == "war" or a == "3":
print(
"what country do you want to declare war on?\nhere are some option but remmber you can pick any north or european country. \n1.Mexico\n2.britian\n3.spain\n4.france")
a = input("").lower()
if "m" in a:
points -= 20
print("you declared war on mexico the people dont support that -20 presidential points. You Now have",
points, "presidential points")
elif "4" in a or "skip" in a:
print("bad idea but whatever")
print("It is your second month as president!\n what is your next choice")
elif a == "5" or a == "new" or a == "veto":
print("what do you want to do? \n1.Create a new law\n2.Veto an already existing one")
a = input("").lower()
if "1" in a or "new" in a:
print(
"what law do you want to create?\n1.Indian Removal Act\n2.Tariff of 1832\n3.An Act to Regulate Trade and Intercourse With the Indian Tribes\n4. Patent Act of 1836")
a = input("").lower()
elif "2" in a or "veto" in a:
print("what law do you want to veto?")
print(
"\n1.Addition to the Army of the United States and Provisions for the Protection of the Frontiers.\n2.Treaties with the Indians to establish Peace\n3.Bank of the United States, Supplementary Act to the Act incorporating the.\n4.veto the 2nd bank of the United States of America")
a = input("").lower()
if "1" in a or "first" in a:
points -= 30
print(
"you try to veto\n the Addition to the Army of the United States and Provisions for the Protection of the Frontiers law and it doesnt work the house of representatives\n does not approve your action -30 presidential points. You now have",
points, "presidential points")
func()
elif "6" in a or "kick" in a:
print(
" you got the house of represitatives to accept your action\nWhere do you want to reloacate them to? sorry in advance but i couldnt get the exact names of the places \n you could relocate the natives to before you actually own that land so i am using the new map/states\n\n1.Kansas\n2.Iowa\nMissouri\n3.Arkensas\n4.Oklahoma")
a = input("").lower()
if "1" in a or "kansas" in a:
pass
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment