2 kyu

RPG Simulator - Defeat the Demon Lord! [Part 2]

Description
Loading description...
Games
Game Solvers
Algorithms
  • Please sign in or sign up to leave a comment.
  • seniorCrutchDeveloper Avatar

    First of all I would like to thank you for this kata. It was a very interesting and good challenge. First of all, I am sorry that after 4 years it is still in beta, that few people are trying to solve it and only a few have solved it. I would really like to see it get some attention and get it to release. I would like to add that some corner cases are not tested.

    1. For example, there are only three maps in fixed tests where there is a first aid kit. Perhaps we should add such a case to the random tests?
    2. Also not tested are maps in which enemies are near the player's starting position on the map. That is, cases when the player in any case initially receives damage, for example, something like this. Perhaps we should take into account such cases?
      field = [
        'SHM   |EX',
        '###   ###',
        'CCK     C',
        ' E      E',
        'DEE    E<',
      ]
      
    3. All the cards except the one you gave as an example in the description are 5x9. I think we should do some tests with larger maps?

    These are just thoughts after solving the problem, perhaps you have a different opinion on this? Anyway, thank you very much, the evening was well spent:D

  • FArekkusu Avatar

    Python 3.8 should be enabled.

  • G_kuldeep Avatar

    I didn't tried it yet! looks interesting, but this one is going to take long time to be approved:D

    • Dr Gabo Avatar

      So did the previous one xD

      In all seriousness, I hope people enjoy solving this. Creating this has been a lot of fun (and work).

  • Blind4Basics Avatar

    Hi! :)

    you have to put all the details/notations in this one too (the user shouldn't have to travel between the 2 katas to know what X is, or the life/attack/defense of the enemies and all other stuff).

    ;)

    cheers

    • Dr Gabo Avatar

      I wasn't sure if it was okay to have such a long description, but you are definitely right.

      I've put a remainder in the description and I might modify it tomorrow in order to make it collapsable or something.

      As always, thank you for your feedback :D

      Issue marked resolved by Dr Gabo 5 years ago
    • Blind4Basics Avatar

      you should actually put the entire logic of the game in the description. You can write that at the end of the current description.

      EDIT: forget that, I just didn't see the addition you did before... x)