Skip to content

dcc-cc3002/aventurasdemarcosyluis-ChrisMethsillo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Las flipantes aventuras de Marco y Luis

This game is a clone of the RPG Mario and Luigi game (see Mario Wiki). In this project will implement an RPG combat system between two main characters (Marco and Luis) against different enemies controlled by the computer.

- Characters

We have two playable characters, Marco and Luis. These characters have different stats that will define their battle performance:

  • Level (LVL): Character level. This stat will allow upgrade the another properties.
  • Attack (ATK): Character damage power.
  • Defense (DEF): Allows to decrease the damage received.
  • Health points (HP): Character's health. Allows to be in combat.
  • Fighting Points (FP): Used to realize attacks. Different attacks need different FP values.

Every main characters have two attacks:

  • Jump (Normal attack): Low damage attack. Cost 1 Fp and has 100% hit probability. Damage constant K = 1.
  • Hammer (Super attack) High damage attack. Cost 2 Fp and has 75% hit probability. Damage constant K = 1.5 .

The deal damage is calculated as:

Where "a" is the attacker and "b" the attacked.

- Enemies

In this game exists many enemies which will face with Marco and Luis:

  • Goomba: Generic enemy. Attacks with normal attacks. Can be defeated by Marco and Luis with any attack.
  • Spiny: Turtle-like enemy with a spike shell. If someone attack with a normal attack, he doesn't receive damage and bring back damage equivalent to 5% attacker Hp. Can be defeated with Hammers attacks from Marco and Luis.
  • Boo: A ghost enemy. Only attacks Luis. He dodges hammers attacks and Luis attacks. Can be defeated by Marco normals attacks.

These enemies have a Damage constant K=0.75.

- Attacks table

Attack Marco Luis Goomba Spiny Boo
Marco
Luis x
Goomba
Spiny
Boo x

- How to play

Actually, the game is in developing. But we can test the implementations made at this moment. In the folder test you can verify the different objects and theirs methods. Just run it with any IDE (InteliJ IDEA ideally).

About

Modelo Sencillo de Rpg basado en Mario RPG

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages