1package com.osroyale.game.world.entity.combat.strategy.player.special.range;
3import com.osroyale.game.Animation;
4import com.osroyale.game.Graphic;
5import com.osroyale.game.UpdatePriority;
6import com.osroyale.game.world.entity.combat.attack.FightType;
7import com.osroyale.game.world.entity.combat.hit.CombatHit;
8import com.osroyale.game.world.entity.combat.hit.Hit;
9import com.osroyale.game.world.entity.combat.strategy.player.PlayerRangedStrategy;
10import com.osroyale.game.world.entity.mob.Mob;
11import com.osroyale.game.world.entity.mob.player.Player;
41public class Ballista
extends PlayerRangedStrategy {
44 private static final Ballista INSTANCE =
new Ballista();
50 public void hitsplat(
Player attacker,
Mob defender,
Hit hit) {
51 super.hitsplat(attacker, defender, hit);
52 defender.graphic(GRAPHIC);
57 return new CombatHit[]{nextRangedHit(attacker, defender)};
71 public int modifyAccuracy(
Player attacker,
Mob defender,
int roll) {
76 public int modifyDamage(
Player attacker,
Mob defender,
int roll) {
80 public static Ballista
get() {