Update Nachtelf

pull/10/head
Kai Sellmann 2023-05-28 09:30:16 +02:00
parent d78513f0f9
commit 0799be2cfb
1 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,7 @@ package pr2.vererbung.konstruktoren;
/**
* Nachtelf aus der Allianz.
*/
public class Nachtelf {
public class Nachtelf extends Wesen{
/**
* Standardmäßige Stärke der Fähigkeit Naturwiderstand.
@ -14,8 +14,13 @@ package pr2.vererbung.konstruktoren;
* Fähigkeit zum Widerstand gegen Naturmagie.
*/
private int naturwiderstand;
// TODO: Konstruktoren implementieren
public Nachtelf(String name, int STANDARD_NATURWIDERSTAND) {
this.name = name;
this.naturwiderstand = STANDARD_NATURWIDERSTAND;
}
/**
* Stärke des Naturwiderstandes.