File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class ResultadoMissao:
1212 itens_ganhos : list [str ]
1313
1414cenarios = ['Trilha' , 'Floresta' , 'Caverna' , 'Ruinas' ]
15- inimigos = ['goblin ' , 'ladrao ' ]
15+ inimigos = ['Goblin ' , 'Ladrao' , 'Golen' , 'Demonio ' ]
1616itens_recompensa = ['Poção de Vida' , 'Erva Curativa' , 'Cristal misterioso' , 'Espada' ]
1717xp_recompensa = {
1818 'Facil' : 20 ,
@@ -41,11 +41,11 @@ def gerar_inimigos(self):
4141 if sorteio == 'Goblin' :
4242 self .inimigos .append (Goblin ('Goblin' ))
4343 elif sorteio == 'Ladrao' :
44- self .inimigos = [ Ladrao ('Ladrao' )]
44+ self .inimigos . append ( Ladrao ('Ladrao' ))
4545 elif sorteio == 'Golen' :
46- self .inimigos = [ Golen ('Golen' )]
46+ self .inimigos . append ( Golen ('Golen' ))
4747 else :
48- self .inimigos = [ Demonio ('Trigon' )]
48+ self .inimigos . append ( Demonio ('Trigon' ))
4949
5050 mult = mult_dificul [self .dificuldade ]
5151 for inimigo in self .inimigos :
You can’t perform that action at this time.
0 commit comments