A Fabric plugin that adds a user interface where players can create, modify, and unite/fuse pokemon. It also adds item that can modify a pokemon directly.
Highlights
Supports item, bank, and impactor as currency.
Create pokemon from scratch with ease through user interface.
Modify pokemon properties with ease through user interface. Including natures, sizes, moves etc.
Unite/Fuse pokemons to make a stronger pokemon.
Create a pokemon using different item and pokemon combinations.
Items that can modify the pokemon directly.
Commands
/arceuspanel info
N/A
Shows the plugin information and commands.
/arceuspanel reload
arceuspanel.command.reload
Reloads the configuration files.
/arceuspanel open [<player>]
arceuspanel.command.open
Opens the user interface.
/arceuspanel givecurrency <player> <amount>
arceuspanel.command.givecurrency
Gives an item currency to the player.
/arceuspanel addbalance <player> <amount>
arceuspanel.command.addbalance
Adds funds to the player`s bank account.
/arceuspanel removebalance <player> <amount>
arceuspanel.command.removebalance
Removes funds from the player`s bank account.
/arceuspanel bank balance/transfer [<player>] [<amount>]
arceuspanel.command.bank
Check player or other players balance in the bank or transfer funds to other players bank account.
{
"Modifiers": {
"OriginalTrainer": {
# The chance of failing to apply the modification. (1-100)
"FailChance": 0,
# The properties to apply to the pokemon.
"AppliedProperties": "originaltrainer",
# The list of properties that can only use this modification.
"WhitelistedProperties": [],
# The list of properties that cannot use this modification.
"BlacklistedProperties": [],
"ItemEnchanted": true,
"ItemID": "cobblemon:red_card",
"ItemName": "&6Original Trainer Modifier",
"ItemLore": [
"&eRight Click the pokemon to change the pokemon OT to you."
]
},
"HiddenAbility": {
"FailChance": 50,
"AppliedProperties": "hiddenability",
"WhitelistedProperties": [],
"BlacklistedProperties": [],
"ItemEnchanted": true,
"ItemID": "cobblemon:ability_capsule",
"ItemName": "&6Hidden Ability Modifier",
"ItemLore": [
"&eRight Click the pokemon to change its ability into hidden ability.",
"&cHas a 50% chance of failing."
]
},
"level100": {
"FailChance": 0,
"AppliedProperties": "level=100",
"WhitelistedProperties": [],
"BlacklistedProperties": [],
"ItemEnchanted": true,
"ItemID": "cobblemon:rare_candy",
"ItemName": "&6Level 100 Modifier",
"ItemLore": [
"&eRight Click the pokemon to change its level to 100."
]
},
"Shiny": {
"FailChance": 0,
"AppliedProperties": "shiny",
"WhitelistedProperties": [],
"BlacklistedProperties": [],
"ItemEnchanted": true,
"ItemID": "cobblemon:shiny_stone",
"ItemName": "&6Shiny Modifier",
"ItemLore": [
"&eRight Click the pokemon to make it shiny."
]
}
}
}