equipments #22

Merged
viud3133 merged 40 commits from equipments into main 2025-10-30 12:09:43 +01:00
3 changed files with 19 additions and 0 deletions
Showing only changes of commit af4a7d422d - Show all commits

View File

@@ -0,0 +1,2 @@
public class Bäckahäst extends Monster implements CanMove, CanAttack {
}

2
src/main/java/Troll.java Normal file
View File

@@ -0,0 +1,2 @@
public class Troll extends Monster implements CanMove, CanAttack {
}

View File

@@ -69,4 +69,19 @@ public class MonsterTest {
void monster_cannot_do_anything_when_out_of_energy() {
}
@Test
void only_moves_within_energy_budget_are_performed() {
}
@Test
void move_to_invalid_destination_is_rejected() {
}
@Test
void use_of_attack_not_in_arsenal_is_rejected() {
}
}