2020-12-11 17:20:50 +01:00
|
|
|
from ..interfaces import FriendlyEntity, InventoryHolder
|
2020-12-01 17:12:22 +01:00
|
|
|
from ..translations import gettext as _
|
2020-11-27 18:35:52 +01:00
|
|
|
from .player import Player
|
2020-12-07 20:54:53 +01:00
|
|
|
from .items import Item
|
|
|
|
from random import choice
|
2020-11-27 16:56:22 +01:00
|
|
|
|
2020-12-01 17:12:22 +01:00
|
|
|
|
2020-12-11 17:20:50 +01:00
|
|
|
class Merchant(InventoryHolder, FriendlyEntity):
|
2020-11-27 16:56:22 +01:00
|
|
|
"""
|
|
|
|
The class for merchants in the dungeon
|
|
|
|
"""
|
2020-12-05 21:43:13 +01:00
|
|
|
def keys(self) -> list:
|
2020-12-04 00:27:25 +01:00
|
|
|
"""
|
|
|
|
Returns a friendly entitie's specific attributes
|
|
|
|
"""
|
2020-12-09 15:32:37 +01:00
|
|
|
return super().keys() + ["inventory", "hazel"]
|
2020-11-27 16:56:22 +01:00
|
|
|
|
2020-12-07 21:13:55 +01:00
|
|
|
def __init__(self, name: str = "merchant", inventory: list = None,
|
|
|
|
hazel: int = 75, *args, **kwargs):
|
|
|
|
super().__init__(name=name, *args, **kwargs)
|
2020-12-11 17:20:50 +01:00
|
|
|
self.inventory = self.translate_inventory(inventory or [])
|
2020-11-27 18:35:52 +01:00
|
|
|
self.hazel = hazel
|
2020-12-07 21:48:56 +01:00
|
|
|
|
|
|
|
if not self.inventory:
|
|
|
|
for i in range(5):
|
|
|
|
self.inventory.append(choice(Item.get_all_items())())
|
2020-11-27 16:56:22 +01:00
|
|
|
|
2020-12-07 21:22:06 +01:00
|
|
|
def talk_to(self, player: Player) -> str:
|
2020-11-27 16:56:22 +01:00
|
|
|
"""
|
|
|
|
This function is used to open the merchant's inventory in a menu,
|
|
|
|
and allow the player to buy/sell objects
|
|
|
|
"""
|
2020-12-07 21:13:55 +01:00
|
|
|
return _("I don't sell any squirrel")
|
2020-12-07 21:22:06 +01:00
|
|
|
|
2020-12-11 16:49:17 +01:00
|
|
|
def change_hazel_balance(self, hz: int) -> None:
|
|
|
|
"""
|
|
|
|
Change the number of hazel the merchant has by hz.
|
|
|
|
"""
|
|
|
|
self.hazel += hz
|
2020-12-07 21:48:56 +01:00
|
|
|
|
2020-12-07 21:22:06 +01:00
|
|
|
|
|
|
|
class Sunflower(FriendlyEntity):
|
2020-11-27 18:35:52 +01:00
|
|
|
"""
|
|
|
|
A friendly sunflower
|
|
|
|
"""
|
2020-12-01 17:12:22 +01:00
|
|
|
dialogue_option = [_("Flower power!!"), _("The sun is warm today")]
|
2020-12-07 21:22:06 +01:00
|
|
|
|
2020-11-27 18:35:52 +01:00
|
|
|
def __init__(self, maxhealth: int = 15,
|
|
|
|
*args, **kwargs) -> None:
|
2020-12-07 21:22:06 +01:00
|
|
|
super().__init__(name="sunflower", maxhealth=maxhealth, *args, **kwargs)
|