mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 16:49:11 +00:00
29 lines
445 B
Kotlin
29 lines
445 B
Kotlin
import AttackStyle.*
|
|
import AttackType.Ranged
|
|
import org.apollo.game.model.Animation
|
|
|
|
object Bow : RangedWeaponClass(Arrows, {
|
|
widgetId = 1764
|
|
|
|
defaults {
|
|
attackType = Ranged
|
|
attackAnimation = Animation(426)
|
|
attackSpeed = 4
|
|
attackRange = 7
|
|
}
|
|
|
|
Accurate {
|
|
button = 1772
|
|
}
|
|
|
|
Rapid {
|
|
button = 1770
|
|
attackSpeed = 3
|
|
|
|
}
|
|
|
|
LongRanged {
|
|
button = 1771
|
|
}
|
|
})
|