SimHoc/SimHoc.py

37 lines
1 KiB
Python
Raw Normal View History

2024-08-14 15:50:46 +00:00
import os, player, time, skillContests, random, itertools
from attributes import normalDis
2022-01-11 18:50:30 +00:00
from hocTests import AttributeTest, TestGame
2022-01-11 17:29:18 +00:00
from hocUtils import RinkGraph
2022-01-02 17:07:55 +00:00
if __name__ == "__main__":
#for name in ["Vivi", "Artemis", "Laika", "Sharks", "Dragons", "Melua", "Sabriina", "Jorts (Buttered)", "Jorts (Unbuttered)"]:
# plyr = player.Player(name)
# print(f"{name}:")
# for atr in plyr.attributes:
# print(atr)
# print("----------")
2022-01-11 18:50:30 +00:00
g = TestGame()
g.faceoffTest()
2022-01-11 17:29:18 +00:00
#twitter = twitHandler.TwitHandler()
#if os.path.exists(os.path.join("Data", "lastID.twt")):
# with open(os.path.join("Data", "lastID.twt")) as idFile:
# lastID = idFile.readline().strip()
#else:
# lastID = 0
#while True:
# twitter.scanForMention(lastID)
# time.sleep(30)
# with open(os.path.join("Data", "lastID.twt")) as idFile:
# lastID = idFile.readline().strip()
#twitter.sendTextTweet(player.Player("Amogus").twitterString())