Enemies

Create new enemy

Add enemy to generic combat

You can add new enemies to the generic combat by adding your enemy object to the list. There are four lists for enemies:

  • gen_enemies_normal

  • gen_enemies_elite

  • gen_enemies_boss

  • gen_enemies_elite_boss

They differ by encounter chance. The stronger the player the closer the chances are to being equal.

gen_enemies_normal.append(My_Enemy())

Create/Change lootlist and droplist

Lootlist contains only cards

Droplist contains only items

To create your lootlist you need to add your lootlist: loot to the lootlist dictionary.

 1my_lootlist = {
 2    # Replace existing lootlist
 3    "werewolf": [My_Card(), ...],
 4
 5    # New lootlist
 6    "my_loot": [Aharon(), My_Card2(), ...]
 7    }
 8
 9# Add & replace lootlist found in my_lootlist
10for x in my_lootlist:
11    lootlist.update({x: my_lootlist[x]})

Above code adds your lootlist to the game and replaces the ones in game with your replacements