From feac5f79bd0bff72c0a5705c3da960e76805d7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Prieto?= Date: Mon, 16 Jun 2025 16:56:38 +0200 Subject: [PATCH] Start refactoring attack logic into weapon --- .../fourtykcalculator/WeaponAttackResolution.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/ninja/thefirearchmage/games/fourtykcalculator/WeaponAttackResolution.java diff --git a/src/main/java/ninja/thefirearchmage/games/fourtykcalculator/WeaponAttackResolution.java b/src/main/java/ninja/thefirearchmage/games/fourtykcalculator/WeaponAttackResolution.java new file mode 100644 index 0000000..e746ed5 --- /dev/null +++ b/src/main/java/ninja/thefirearchmage/games/fourtykcalculator/WeaponAttackResolution.java @@ -0,0 +1,11 @@ +package ninja.thefirearchmage.games.fourtykcalculator; + +public class WeaponAttackResolution { + private double normalWounds; + private double mortalWounds; + private double hits; + private double woundsFromLethalHits; + private double woundsFromRerolls; + private double hitsFromRerolls; + +}