Merge develop into main #1

Merged
Sadra3st merged 23 commits from develop into main 2026-05-21 20:43:16 +00:00
Showing only changes of commit ab0e9cb3a4 - Show all commits
@@ -0,0 +1,26 @@
package org.project.item.weapons;
import org.project.weaponEffects.StatusEffect;
public class Dagger extends Weapon {
private static final String NAME = "Sword";
private static final int LIGHT_DAMAGE = 10;
private static final int HEAVY_DAMAGE = 5;
private static final int DURABILITY = 4;
public Dagger() {
this(null);
}
public Dagger(StatusEffect weaponEffect) {
super(
NAME,
LIGHT_DAMAGE,
HEAVY_DAMAGE,
weaponEffect,
DURABILITY
);
}
}