12 lines
366 B
Python
12 lines
366 B
Python
import pytest
|
|
|
|
# noinspection PyPackageRequirements
|
|
|
|
|
|
# noinspection PyShadowingNames
|
|
@pytest.fixture
|
|
def StrongBluePillBooster (DB, Gamedata, Saveddata):
|
|
print("Creating Strong Blue Pill Booster")
|
|
item = DB['gamedata_session'].query(Gamedata['Item']).filter(Gamedata['Item'].name == "Strong Blue Pill Booster").first()
|
|
return Saveddata['Booster'](item)
|