from evennia import CmdSet #from commands import encounter_cmdset as encounter from commands import command as cmd class SetSpeciesHuman(CmdSet): def at_cmdset_creation(self): self.add(cmd.CmdMeow()) class SetSpeciesCatkin(CmdSet): def at_cmdset_creation(self): self.add(cmd.CmdMeow()) class SetSpeciesDogkin(CmdSet): def at_cmdset_creation(self): self.add(cmd.CmdBark())