Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
2e26c2db79 | |||
78c055fee2 | |||
fe41c4cdc6 | |||
123b6cf4ed | |||
f652b02443 | |||
73537e4742 | |||
955432e0d2 | |||
1d93864dca | |||
c472d688be | |||
bff9a2bec9 | |||
973ea40e00 | |||
52c85fdf28 | |||
a889e9efa1 | |||
a9a0cdc6d5 | |||
1c102488b6 | |||
c38acef2a0 | |||
48b5e473aa |
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
__author__ = """Eriks Karls"""
|
__author__ = """Eriks Karls"""
|
||||||
__email__ = 'eriks@72.lv'
|
__email__ = 'eriks@72.lv'
|
||||||
__version__ = '0.21.4'
|
__version__ = '0.21.4.8'
|
||||||
|
|
||||||
from erepublik import classes, utils, constants
|
from erepublik import classes, utils, constants
|
||||||
from erepublik.citizen import Citizen
|
from erepublik.citizen import Citizen
|
||||||
|
@ -12,8 +12,8 @@ __all__ = ['SlowRequests', 'CitizenAPI']
|
|||||||
|
|
||||||
class SlowRequests(Session):
|
class SlowRequests(Session):
|
||||||
last_time: datetime.datetime
|
last_time: datetime.datetime
|
||||||
timeout = datetime.timedelta(milliseconds=500)
|
timeout: datetime.timedelta = datetime.timedelta(milliseconds=500)
|
||||||
uas = [
|
uas: List[str] = [
|
||||||
# Chrome
|
# Chrome
|
||||||
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36', # noqa
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36', # noqa
|
||||||
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', # noqa
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', # noqa
|
||||||
@ -36,7 +36,7 @@ class SlowRequests(Session):
|
|||||||
'Mozilla/5.0 (X11; Linux x86_64; rv:79.0) Gecko/20100101 Firefox/79.0',
|
'Mozilla/5.0 (X11; Linux x86_64; rv:79.0) Gecko/20100101 Firefox/79.0',
|
||||||
'Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0',
|
'Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0',
|
||||||
]
|
]
|
||||||
debug = False
|
debug: bool = False
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
@ -624,8 +624,16 @@ class BaseCitizen(access_points.CitizenAPI):
|
|||||||
self.sleep(5 * 60)
|
self.sleep(5 * 60)
|
||||||
else:
|
else:
|
||||||
raise classes.ErepublikException(f"HTTP {response.status_code} error!")
|
raise classes.ErepublikException(f"HTTP {response.status_code} error!")
|
||||||
|
|
||||||
|
if re.search(r'Occasionally there are a couple of things which we need to check or to implement in order make '
|
||||||
|
r'your experience in eRepublik more pleasant. <strong>Don\'t worry about ongoing battles, timer '
|
||||||
|
r'will be stopped during maintenance.</strong>', response.text):
|
||||||
|
self.write_log("eRepublik ss having maintenance. Sleeping for 5 minutes")
|
||||||
|
self.sleep(5 * 60)
|
||||||
|
return True
|
||||||
return bool(re.search(r'body id="error"|Internal Server Error|'
|
return bool(re.search(r'body id="error"|Internal Server Error|'
|
||||||
r'CSRF attack detected|meta http-equiv="refresh"|not_authenticated', response.text))
|
r'CSRF attack detected|meta http-equiv="refresh"|'
|
||||||
|
r'not_authenticated', response.text))
|
||||||
|
|
||||||
def _report_action(self, action: str, msg: str, **kwargs: Optional[Dict[str, Any]]):
|
def _report_action(self, action: str, msg: str, **kwargs: Optional[Dict[str, Any]]):
|
||||||
""" Report action to all available reporting channels
|
""" Report action to all available reporting channels
|
||||||
@ -874,6 +882,8 @@ class CitizenCompanies(BaseCitizen):
|
|||||||
self.my_companies.prepare_holdings(utils.json.loads(have_holdings.group(1)))
|
self.my_companies.prepare_holdings(utils.json.loads(have_holdings.group(1)))
|
||||||
self.my_companies.prepare_companies(utils.json.loads(have_companies.group(1)))
|
self.my_companies.prepare_companies(utils.json.loads(have_companies.group(1)))
|
||||||
|
|
||||||
|
self.reporter.report_action('COMPANIES', json_val=self.my_companies.as_dict)
|
||||||
|
|
||||||
def assign_company_to_holding(self, company: classes.Company, holding: classes.Holding) -> Response:
|
def assign_company_to_holding(self, company: classes.Company, holding: classes.Holding) -> Response:
|
||||||
"""
|
"""
|
||||||
Assigns factory to new holding
|
Assigns factory to new holding
|
||||||
@ -1138,7 +1148,6 @@ class CitizenEconomy(CitizenTravel):
|
|||||||
self.details.gold = float(response.json().get("gold").get("value"))
|
self.details.gold = float(response.json().get("gold").get("value"))
|
||||||
if response.json().get('error'):
|
if response.json().get('error'):
|
||||||
self._report_action("BUY_GOLD", "Unable to buy gold!", kwargs=response.json())
|
self._report_action("BUY_GOLD", "Unable to buy gold!", kwargs=response.json())
|
||||||
self.stop_threads.wait()
|
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
self._report_action('BUY_GOLD', f'New amount {self.details.cc}cc, {self.details.gold}g',
|
self._report_action('BUY_GOLD', f'New amount {self.details.cc}cc, {self.details.gold}g',
|
||||||
@ -1523,7 +1532,7 @@ class CitizenMilitary(CitizenTravel):
|
|||||||
if not division.terrain and is_start_ok and not division.div_end:
|
if not division.terrain and is_start_ok and not division.div_end:
|
||||||
if division.is_air and self.config.air:
|
if division.is_air and self.config.air:
|
||||||
division_medals = self.get_battle_round_data(division)
|
division_medals = self.get_battle_round_data(division)
|
||||||
medal = division_medals[self.details.citizenship == division.battle.is_defender.country]
|
medal = division_medals[self.details.citizenship == division.battle.defender.country]
|
||||||
if not medal:
|
if not medal:
|
||||||
air_divs.append((0, division))
|
air_divs.append((0, division))
|
||||||
else:
|
else:
|
||||||
@ -1532,7 +1541,7 @@ class CitizenMilitary(CitizenTravel):
|
|||||||
if not division.div == self.division and not self.maverick:
|
if not division.div == self.division and not self.maverick:
|
||||||
continue
|
continue
|
||||||
division_medals = self.get_battle_round_data(division)
|
division_medals = self.get_battle_round_data(division)
|
||||||
medal = division_medals[self.details.citizenship == division.battle.is_defender.country]
|
medal = division_medals[self.details.citizenship == division.battle.defender.country]
|
||||||
if not medal:
|
if not medal:
|
||||||
ground_divs.append((0, division))
|
ground_divs.append((0, division))
|
||||||
else:
|
else:
|
||||||
@ -1615,7 +1624,7 @@ class CitizenMilitary(CitizenTravel):
|
|||||||
:param battle: Battle battle to fight in
|
:param battle: Battle battle to fight in
|
||||||
:type battle: Battle
|
:type battle: Battle
|
||||||
:param side: BattleSide or None. Battle side to fight in, If side not == invader id or not in invader deployed
|
:param side: BattleSide or None. Battle side to fight in, If side not == invader id or not in invader deployed
|
||||||
allies list, then defender's side is chosen
|
allies list, then defender's side is chosen
|
||||||
:type side: BattleSide
|
:type side: BattleSide
|
||||||
:param count: How many hits to do, if not specified self.should_fight() is called.
|
:param count: How many hits to do, if not specified self.should_fight() is called.
|
||||||
:type count: int
|
:type count: int
|
||||||
@ -1654,11 +1663,11 @@ class CitizenMilitary(CitizenTravel):
|
|||||||
self.write_log("Hits: {:>4} | Damage: {}".format(total_hits, total_damage))
|
self.write_log("Hits: {:>4} | Damage: {}".format(total_hits, total_damage))
|
||||||
ok_to_fight = False
|
ok_to_fight = False
|
||||||
if total_damage:
|
if total_damage:
|
||||||
self.reporter.report_action('FIGHT', dict(battle_id=battle.id, side=side, dmg=total_damage,
|
self.reporter.report_fighting(battle, not side.is_defender, division, total_damage, total_hits)
|
||||||
air=battle.has_air, hits=total_hits,
|
# self.reporter.report_action('FIGHT', dict(battle_id=battle.id, side=side, dmg=total_damage,
|
||||||
round=battle.zone_id))
|
# air=battle.has_air, hits=total_hits,
|
||||||
self.reporter.report_action("FIGHT", dict(battle=str(battle), side=str(side), dmg=total_damage,
|
# round=battle.zone_id,
|
||||||
air=battle.has_air, hits=total_hits))
|
# extra=dict(battle=battle, side=side)))
|
||||||
return error_count
|
return error_count
|
||||||
|
|
||||||
def _shoot(self, battle: classes.Battle, division: classes.BattleDivision, side: classes.BattleSide):
|
def _shoot(self, battle: classes.Battle, division: classes.BattleDivision, side: classes.BattleSide):
|
||||||
@ -1906,7 +1915,7 @@ class CitizenMilitary(CitizenTravel):
|
|||||||
battleZoneId=division.id, type="damage")
|
battleZoneId=division.id, type="damage")
|
||||||
r_json = r.json()
|
r_json = r.json()
|
||||||
return (r_json.get(str(battle.invader.id)).get("fighterData"),
|
return (r_json.get(str(battle.invader.id)).get("fighterData"),
|
||||||
r_json.get(str(battle.is_defender.id)).get("fighterData"))
|
r_json.get(str(battle.defender.id)).get("fighterData"))
|
||||||
|
|
||||||
def schedule_attack(self, war_id: int, region_id: int, region_name: str, at_time: datetime):
|
def schedule_attack(self, war_id: int, region_id: int, region_name: str, at_time: datetime):
|
||||||
if at_time:
|
if at_time:
|
||||||
|
@ -551,7 +551,7 @@ class Reporter:
|
|||||||
self.url = "https://api.erep.lv"
|
self.url = "https://api.erep.lv"
|
||||||
self._req.headers.update({"user-agent": "eRepublik Script Reporter v3",
|
self._req.headers.update({"user-agent": "eRepublik Script Reporter v3",
|
||||||
'erep-version': utils.__version__,
|
'erep-version': utils.__version__,
|
||||||
'erep-user-id': self.citizen_id,
|
'erep-user-id': str(self.citizen_id),
|
||||||
'erep-user-name': self.citizen.name})
|
'erep-user-name': self.citizen.name})
|
||||||
self.__to_update = []
|
self.__to_update = []
|
||||||
self.__registered: bool = False
|
self.__registered: bool = False
|
||||||
@ -618,6 +618,12 @@ class Reporter:
|
|||||||
else:
|
else:
|
||||||
self.__to_update.append(json_data)
|
self.__to_update.append(json_data)
|
||||||
|
|
||||||
|
def report_fighting(self, battle: "Battle", invader: bool, division: "BattleDivision", damage: float, hits: int):
|
||||||
|
side = battle.invader if invader else battle.defender
|
||||||
|
self.report_action('FIGHT', dict(battle_id=battle.id, side=side, dmg=damage,
|
||||||
|
air=battle.has_air, hits=hits,
|
||||||
|
round=battle.zone_id, extra=dict(battle=battle, side=side, division=division)))
|
||||||
|
|
||||||
def report_promo(self, kind: str, time_until: datetime.datetime):
|
def report_promo(self, kind: str, time_until: datetime.datetime):
|
||||||
self._req.post(f"{self.url}/promos/add/", data=dict(kind=kind, time_untill=time_until))
|
self._req.post(f"{self.url}/promos/add/", data=dict(kind=kind, time_untill=time_until))
|
||||||
|
|
||||||
@ -629,7 +635,7 @@ class Reporter:
|
|||||||
except: # noqa
|
except: # noqa
|
||||||
return []
|
return []
|
||||||
|
|
||||||
def fetch_tasks(self) -> List[str, Tuple[Any]]:
|
def fetch_tasks(self) -> List[Union[str, Tuple[Any]]]:
|
||||||
try:
|
try:
|
||||||
task_response = self._req.get(f'{self.url}/api/v1/command',
|
task_response = self._req.get(f'{self.url}/api/v1/command',
|
||||||
params=dict(citizen=self.citizen_id, key=self.key))
|
params=dict(citizen=self.citizen_id, key=self.key))
|
||||||
|
@ -278,14 +278,13 @@ def process_error(log_info: str, name: str, exc_info: tuple, citizen=None, commi
|
|||||||
elif interactive is not None:
|
elif interactive is not None:
|
||||||
write_silent_log(log_info)
|
write_silent_log(log_info)
|
||||||
trace = inspect.trace()
|
trace = inspect.trace()
|
||||||
local_vars = None
|
|
||||||
if trace:
|
if trace:
|
||||||
trace_local_vars = trace[-1][0].f_locals
|
local_vars = trace[-1][0].f_locals
|
||||||
if trace_local_vars.get('__name__') == '__main__':
|
if local_vars.get('__name__') == '__main__':
|
||||||
local_vars = {'commit_id': trace_local_vars.get('COMMIT_ID'),
|
local_vars.update({'commit_id': local_vars.get('COMMIT_ID'),
|
||||||
'interactive': trace_local_vars.get('INTERACTIVE'),
|
'interactive': local_vars.get('INTERACTIVE'),
|
||||||
'version': trace_local_vars.get('__version__'),
|
'version': local_vars.get('__version__'),
|
||||||
'config': trace_local_vars.get('CONFIG')}
|
'config': local_vars.get('CONFIG')})
|
||||||
else:
|
else:
|
||||||
local_vars = dict()
|
local_vars = dict()
|
||||||
send_email(name, content, citizen, local_vars=local_vars)
|
send_email(name, content, citizen, local_vars=local_vars)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.21.4
|
current_version = 0.21.4.8
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.?(?P<dev>\d+)?
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.?(?P<dev>\d+)?
|
||||||
|
2
setup.py
2
setup.py
@ -43,6 +43,6 @@ setup(
|
|||||||
test_suite='tests',
|
test_suite='tests',
|
||||||
tests_require=test_requirements,
|
tests_require=test_requirements,
|
||||||
url='https://github.com/eeriks/erepublik/',
|
url='https://github.com/eeriks/erepublik/',
|
||||||
version='0.21.4',
|
version='0.21.4.8',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
"""Tests for `erepublik` package."""
|
"""Tests for `erepublik` package."""
|
||||||
|
from typing import Callable
|
||||||
|
|
||||||
from erepublik import Citizen
|
from erepublik import Citizen
|
||||||
|
|
||||||
@ -65,6 +66,7 @@ class TestErepublik(unittest.TestCase):
|
|||||||
self.assertEqual(self.citizen.next_reachable_energy, 0)
|
self.assertEqual(self.citizen.next_reachable_energy, 0)
|
||||||
|
|
||||||
def test_should_fight(self):
|
def test_should_fight(self):
|
||||||
|
is_wc_close: Callable[[], bool] = lambda: self.citizen.max_time_till_full_ff > self.citizen.time_till_week_change
|
||||||
self.citizen.config.fight = False
|
self.citizen.config.fight = False
|
||||||
self.assertEqual(self.citizen.should_fight(), (0, "Fighting not allowed!", False))
|
self.assertEqual(self.citizen.should_fight(), (0, "Fighting not allowed!", False))
|
||||||
|
|
||||||
@ -73,62 +75,63 @@ class TestErepublik(unittest.TestCase):
|
|||||||
# Level up
|
# Level up
|
||||||
self.citizen.energy.limit = 3000
|
self.citizen.energy.limit = 3000
|
||||||
self.citizen.details.xp = 24705
|
self.citizen.details.xp = 24705
|
||||||
self.assertEqual(self.citizen.should_fight(), (0, 'Level up', False))
|
if not is_wc_close:
|
||||||
|
self.assertEqual(self.citizen.should_fight(), (0, 'Level up', False))
|
||||||
|
|
||||||
self.citizen.energy.recovered = 3000
|
self.citizen.energy.recovered = 3000
|
||||||
self.citizen.energy.recoverable = 2950
|
self.citizen.energy.recoverable = 2950
|
||||||
self.citizen.energy.interval = 30
|
self.citizen.energy.interval = 30
|
||||||
self.assertEqual(self.citizen.should_fight(), (900, 'Level up', True))
|
self.assertEqual(self.citizen.should_fight(), (900, 'Level up', True))
|
||||||
self.citizen.my_companies.ff_lockdown = 160
|
self.citizen.my_companies.ff_lockdown = 160
|
||||||
self.assertEqual(self.citizen.should_fight(), (900, 'Level up', True))
|
self.assertEqual(self.citizen.should_fight(), (900, 'Level up', True))
|
||||||
self.citizen.my_companies.ff_lockdown = 0
|
self.citizen.my_companies.ff_lockdown = 0
|
||||||
|
|
||||||
# Level up reachable
|
# Level up reachable
|
||||||
self.citizen.details.xp = 24400
|
self.citizen.details.xp = 24400
|
||||||
self.assertEqual(self.citizen.should_fight(), (305, 'Fighting for close Levelup. Doing 305 hits', True))
|
self.assertEqual(self.citizen.should_fight(), (305, 'Fighting for close Levelup. Doing 305 hits', True))
|
||||||
self.citizen.my_companies.ff_lockdown = 160
|
self.citizen.my_companies.ff_lockdown = 160
|
||||||
self.assertEqual(self.citizen.should_fight(), (305, 'Fighting for close Levelup. Doing 305 hits', True))
|
self.assertEqual(self.citizen.should_fight(), (305, 'Fighting for close Levelup. Doing 305 hits', True))
|
||||||
self.citizen.my_companies.ff_lockdown = 0
|
self.citizen.my_companies.ff_lockdown = 0
|
||||||
|
|
||||||
self.citizen.details.xp = 21000
|
self.citizen.details.xp = 21000
|
||||||
self.assertEqual(self.citizen.should_fight(), (75, 'Obligatory fighting for at least 75pp', True))
|
self.assertEqual(self.citizen.should_fight(), (75, 'Obligatory fighting for at least 75pp', True))
|
||||||
self.citizen.my_companies.ff_lockdown = 160
|
self.citizen.my_companies.ff_lockdown = 160
|
||||||
self.assertEqual(self.citizen.should_fight(), (75, 'Obligatory fighting for at least 75pp', True))
|
self.assertEqual(self.citizen.should_fight(), (75, 'Obligatory fighting for at least 75pp', True))
|
||||||
self.citizen.my_companies.ff_lockdown = 0
|
self.citizen.my_companies.ff_lockdown = 0
|
||||||
self.citizen.details.pp = 80
|
self.citizen.details.pp = 80
|
||||||
|
|
||||||
# All-in (type = all-in and full ff)
|
# All-in (type = all-in and full ff)
|
||||||
self.citizen.config.all_in = True
|
self.citizen.config.all_in = True
|
||||||
self.assertEqual(self.citizen.should_fight(), (595, 'Fighting all-in. Doing 595 hits', False))
|
self.assertEqual(self.citizen.should_fight(), (595, 'Fighting all-in. Doing 595 hits', False))
|
||||||
self.citizen.my_companies.ff_lockdown = 160
|
self.citizen.my_companies.ff_lockdown = 160
|
||||||
self.assertEqual(self.citizen.should_fight(), (
|
self.assertEqual(self.citizen.should_fight(), (
|
||||||
435, 'Fight count modified (old count: 595 | FF: 595 | WAM ff_lockdown: 160 | New count: 435)', False
|
435, 'Fight count modified (old count: 595 | FF: 595 | WAM ff_lockdown: 160 | New count: 435)', False
|
||||||
))
|
))
|
||||||
self.citizen.my_companies.ff_lockdown = 0
|
self.citizen.my_companies.ff_lockdown = 0
|
||||||
|
|
||||||
self.citizen.config.air = True
|
self.citizen.config.air = True
|
||||||
self.citizen.energy.recoverable = 1000
|
self.citizen.energy.recoverable = 1000
|
||||||
self.assertEqual(self.citizen.should_fight(), (400, 'Fighting all-in in AIR. Doing 400 hits', False))
|
self.assertEqual(self.citizen.should_fight(), (400, 'Fighting all-in in AIR. Doing 400 hits', False))
|
||||||
self.citizen.my_companies.ff_lockdown = 160
|
self.citizen.my_companies.ff_lockdown = 160
|
||||||
self.assertEqual(self.citizen.should_fight(), (
|
self.assertEqual(self.citizen.should_fight(), (
|
||||||
240, 'Fight count modified (old count: 400 | FF: 400 | WAM ff_lockdown: 160 | New count: 240)', False
|
240, 'Fight count modified (old count: 400 | FF: 400 | WAM ff_lockdown: 160 | New count: 240)', False
|
||||||
))
|
))
|
||||||
self.citizen.my_companies.ff_lockdown = 0
|
self.citizen.my_companies.ff_lockdown = 0
|
||||||
self.citizen.config.all_in = False
|
self.citizen.config.all_in = False
|
||||||
|
|
||||||
self.citizen.config.next_energy = True
|
self.citizen.config.next_energy = True
|
||||||
self.citizen.energy.limit = 5000
|
self.citizen.energy.limit = 5000
|
||||||
self.citizen.details.next_pp = [100, 150, 250, 400, 500]
|
self.citizen.details.next_pp = [100, 150, 250, 400, 500]
|
||||||
self.assertEqual(self.citizen.should_fight(), (320, 'Fighting for +1 energy. Doing 320 hits', False))
|
self.assertEqual(self.citizen.should_fight(), (320, 'Fighting for +1 energy. Doing 320 hits', False))
|
||||||
self.citizen.my_companies.ff_lockdown = 160
|
self.citizen.my_companies.ff_lockdown = 160
|
||||||
self.assertEqual(self.citizen.should_fight(), (
|
self.assertEqual(self.citizen.should_fight(), (
|
||||||
160, 'Fight count modified (old count: 320 | FF: 400 | WAM ff_lockdown: 160 | New count: 160)', False
|
160, 'Fight count modified (old count: 320 | FF: 400 | WAM ff_lockdown: 160 | New count: 160)', False
|
||||||
))
|
))
|
||||||
self.citizen.my_companies.ff_lockdown = 0
|
self.citizen.my_companies.ff_lockdown = 0
|
||||||
self.citizen.energy.limit = 3000
|
self.citizen.energy.limit = 3000
|
||||||
self.citizen.details.next_pp = [19250, 20000]
|
self.citizen.details.next_pp = [19250, 20000]
|
||||||
self.citizen.config.next_energy = False
|
self.citizen.config.next_energy = False
|
||||||
|
|
||||||
# 1h worth of energy
|
# 1h worth of energy
|
||||||
self.citizen.energy.recoverable = 2910
|
self.citizen.energy.recoverable = 2910
|
||||||
self.assertEqual(self.citizen.should_fight(), (30, 'Fighting for 1h energy. Doing 30 hits', True))
|
self.assertEqual(self.citizen.should_fight(), (30, 'Fighting for 1h energy. Doing 30 hits', True))
|
||||||
|
Reference in New Issue
Block a user