Skip to content

AtlasEngineCa/AtlasProjectiles

Repository files navigation

Contributors Forks Stargazers Issues APACHE-2.0 License


About The Project

This is a library to add projectiles. Currently support projectiles:

  • Arrows
  • Fireballs
  • Items (snowball, enderpearl, etc)
  • Shulker Bullets

The goal is to make the projectiles act similarly to vanilla, but not all projectiles will be identical. Contributions are welcome!

Getting Started

A full, runnable example server can be found here

Credits

  • hapily04 Initial bow and arrow projectile code

Adding as a dependency

Add the following to your build.gradle.kts file:

repositories {
    maven("https://reposilite.worldseed.online/public")
}

Add the library as a dependency

dependencies {
    implementation("ca.atlasengine:atlas-projectiles:<version>")
}

The lastest version number can be found here

(back to top)