Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buyOn this page, you will find how to build and register your own Phoenix Duels addons.
The API is only available for the premium version of the plugin.
Custom Addons are extensions that allow you to extend, modify, or enhance Phoenix Duels behavior with your own Java code.
Create an addon.yml file in your project resources folder.
name: AddonName
main: your.path.AddonExample
author: [YourName]
version: 1.0.0
description: Small description (optional)
website: https://your-website.com (optional)
Required fields:
name: Display name of your addon.main: Fully qualified path to your addon main class.author: One or more addon authors.version: Addon version.The main value in addon.yml must point to your class that extends Addon.
package your.path;
import com.phoenixplugins.phoenixduels.api.sdk.plugin.addons.Addon;
public class AddonExample extends Addon {
@Override
public void init() {
// Register rules, menus, modules, or listeners.
}
@Override
public void load() {
// Runtime registrations and startup logic.
}
@Override
public void unload() {
// Cleanup logic.
}
@Override
public void reload() {
// Optional runtime reload logic.
}
@Override
public String getRequiredPluginVersion() {
return "1.0.0";
}
}
plugins/PhoenixDuels/addons.Continue with ๐งช Examples for practical event and profile integrations.
Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buy