Skip to content

Instantly share code, notes, and snippets.

@jckdotim
Last active April 14, 2018 15:45
Show Gist options
  • Save jckdotim/31d428da97f934483670b1666938f116 to your computer and use it in GitHub Desktop.
Save jckdotim/31d428da97f934483670b1666938f116 to your computer and use it in GitHub Desktop.
class Oyakodong(Combined, HP10Food):
ticker_name = 'OYKD'
recipe = {'RICE', 'EGGS', 'CHKN'}
class Carbonara(Combined, HP10Food):
ticker_name = 'CBNR'
recipe = {'WHET', 'EGGS', 'MEAT'}
class Steakdong(Combined, HP10Food):
ticker_name = 'STKD'
recipe = {'RICE', 'RKST', 'MEAT'}
class ChickenRice(Combined, HP10Food):
ticker_name = 'CHKR'
recipe = {'RICE', 'RKST', 'CHKN'}
class Steak(Combined, HP10Food):
ticker_name = 'STEK'
recipe = {'MEAT', 'RKST', 'OLIV'}
class SteakCarbonara(Combined, HPMaxFood):
ticker_name = 'STCB'
recipe = {'STEK', 'WHET', 'EGGS'}
class FriedChicken(Combined, HP10Food):
ticker_name = 'FCHK'
recipe = {'CHKN', 'RKST', 'OLIV'}
class FlameSword(Combined, Weapon):
ticker_name = 'FSWD'
recipe = {'LSWD', 'FLNT', 'OLIV'}
@classmethod
def attack_modifier(cls, avatar, monster):
if 'Wooden' in monster['special']:
return 2
else:
return 1
class FlameSword1(Combined, Weapon):
ticker_name = 'FSW1'
recipe = {'FSWD', 'FSWD', 'FSWD'}
@classmethod
def attack_modifier(cls, avatar, monster):
if 'Wooden' in monster['special']:
return 4
else:
return 2
class FlameSword2(Combined, Weapon):
ticker_name = 'FSW2'
recipe = {'FSW1', 'FSW1', 'FSW1'}
@classmethod
def attack_modifier(cls, avatar, monster):
if 'Wooden' in monster['special']:
return 6
else:
return 3
class FlameSword3(Combined, Weapon):
ticker_name = 'FSW3'
recipe = {'FSW2', 'FSW2', 'FSW2'}
@classmethod
def attack_modifier(cls, avatar, monster):
if 'Wooden' in monster['special']:
return 8
else:
return 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment