Skip to content
Snippets Groups Projects
Commit b8cbd928 authored by Carl.Hopner's avatar Carl.Hopner
Browse files

Merge branch 'hopner/nitpicking' into 'master'

Hopner/nitpicking

See merge request !1
parents 98f28cb1 aba53770
No related branches found
No related tags found
1 merge request!1Hopner/nitpicking
[forrige](./03-toString.md) • [oversikt](../README.md#steg-for-steg) • [neste](./05-attack.md)
## Oppgave 4 - `damage`
Implementer metoden `damage`. Metoden skal trekke i fra `damageTaken` fra antall `healthPoints` Pokémon'en har. Man kan ikke ha færre enn 0 `healthPoints`. Det skal ikke være mulig å gi negative skade, altså øke antall health points.
## Oppgave 4 - `takeDamage`
Implementer metoden `takeDamage`. Metoden skal trekke i fra `damageTaken` fra antall `healthPoints` Pokémon'en har. Man kan ikke ha færre enn 0 `healthPoints`. Det skal ikke være mulig å gi negative skade, altså øke antall health points.
Metoden skal skrive ut (ikke returnere):
```
......@@ -9,4 +9,4 @@ Pikachu takes 3 damage and is left with 84/94 HP
```
(I dette tilfellet er Pikachu pokémon'en som tar skade).
✅ Denne oppgaven er fullført når `healthPointsTest`, `damageTest`, `hpNotBelowZeroTest1`, `hpNotBelowZeroTest2` og `isAliveTest` passerer.
\ No newline at end of file
✅ Denne oppgaven er fullført når `healthPointsTest`, `damageTest`, `cannotInflictNegativeDamage`, `hpNotBelowZeroTest1`, `hpNotBelowZeroTest2` og `isAliveTest` passerer.
\ No newline at end of file
package pokemon;
import pokemon.Pokemon;
public class Main {
public static Pokemon pokemon1;
public static Pokemon pokemon2;
public static void main(String[] args) {
///// Oppgave 6
// Oppgave 6
// Have two Pokémon fight until one is defeated
}
}
package pokemon;
public class Pokemon {
////// Oppgave 1a
// Oppgave 1a
// Create field variables here:
///// Oppgave 1b
// Oppgave 1b
// Create a constructor here:
///// Oppgave 2
// Oppgave 2
/**
* Get name of the pokémon
......@@ -56,7 +56,7 @@ public class Pokemon {
}
///// Oppgave 4
// Oppgave 4
/**
* The Pokémon takes a given amount of damage. This method reduces the number of
......@@ -74,7 +74,7 @@ public class Pokemon {
throw new UnsupportedOperationException("Not implemented yet.");
}
///// Oppgave 5
// Oppgave 5
/**
* Attack another pokémon. The method conducts an attack by <code>this</code>
......@@ -89,7 +89,7 @@ public class Pokemon {
throw new UnsupportedOperationException("Not implemented yet.");
}
///// Oppgave 3
// Oppgave 3
@Override
public String toString() {
throw new UnsupportedOperationException("Not implemented yet.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment