Bone-Market-Solver/data/embellishments.py

26 lines
745 B
Python
Raw Normal View History

__all__ = ['Embellishment']
__author__ = "Jeremy Saklad"
2021-08-03 17:38:31 +00:00
from enum import Enum
from data.costs import Cost
from objects.action import Action
class Embellishment(Enum):
"""An action is taken after a declaration has been made for a skeleton."""
MORE_PLAUSIBLE = Action(
"Make it seem just a bit more plausible",
cost = Cost.ACTION.value + Cost.REVISIONIST_NARRATIVE.value,
implausibility = -1
)
CONVINCING_HISTORY = Action(
"Invest great time and skill in coming up with a convincing history",
cost = Cost.ACTION.value + 3*Cost.REVISIONIST_NARRATIVE.value,
implausibility = -5
)
def __str__(self):
return str(self.value)