Skip to content

Cobblemon Move Tutor - Configuration

All of the configuration files for Cobblemon Move Tutor are located in the <game_directory>/config/cobblemon_move_tutor/ directory.

Configuration files:

  • permissions.toml - Permissions configuration options for Cobblemon Move Tutor.
  • server.toml - Server side configuration options for Cobblemon Move Tutor.
permissions.toml
#Permissions Config
[permissionLevelsConfig]
cmdMoveTutor = "ALL_COMMANDS"
cmdMoveTutor_other = "ALL_COMMANDS"

Allows configuration of the permission levels required to use the commands added by Cobblemon Move Tutor.

Allowed Values:

  • NONE - No permission required.
  • SPAWN_PROTECTION_BYPASS - Permission level required to bypass spawn protection
  • CHEAT_COMMANDS_AND_COMMAND_BLOCKS - Permission level required to use cheat commands and command blocks.
  • MULTIPLAYER_MANAGEMENT - Permission level required to manage multiplayer settings
  • ALL_COMMANDS - Permission level required to use all commands.

The permission level required to use the /movetutor command.

  • Default: ALL_COMMANDS

The permission level required to use the /movetutor command on other players.

  • Default: ALL_COMMANDS
server.toml
#Currency Provider Config
[currencyProviderConfig]
cobbleDollarsProvider_displayName = "CobbleDollars"
impactorProvider_displayName = "Dollars"
impactorProvider_currency = "impactor:dollars"
itemProvider_displayName = "Rare Candy"
itemProvider_itemId = "cobblemon:rare_candy"
#Currency Config
[currencyConfig]
currencyType = "item"
levelMovePrice = 16
tmMovePrice = 16
legacyMovePrice = 32
tutorMovePrice = 16
specialMovePrice = 16
eggMovePrice = 32
#Village Tutor Config
[villageTutorConfig]
hideAlreadyKnownMoves = false
levelMove = false
tmMove = false
legacyMove = true
tutorMove = true
specialMove = true
eggMove = false
#Admin Tutor Config
[adminTutorConfig]
hideAlreadyKnownMoves = false
levelMove = false
tmMove = false
legacyMove = true
tutorMove = true
specialMove = true
eggMove = false

Allows configuration of the currency providers used by Cobblemon Move Tutor.

The display name for the CobbleDollars currency provider.

  • Type: string
  • Default: "CobbleDollars"

The display name for the Impactor currency provider.

  • Type: string
  • Default: "Dollars"

The currency identifier for the Impactor currency provider.

  • Type: string
  • Default: "impactor:dollars"

The display name for the Item currency provider.

  • Type: string
  • Default: "Rare Candy"

The item ID for the Item currency provider.

  • Type: string
  • Default: "cobblemon:rare_candy"

Allows configuration of the currency used for move tutoring and the prices for each type of move.

The type of currency used for move tutoring. Options: 'item', 'cobbledollars', 'impactor'.

  • Type: string
  • Default: "item"

The price for level-up moves.

  • Type: integer
  • Default: 16
  • Range: > 0

The price for TM moves.

  • Type: integer
  • Default: 16
  • Range: > 0

The price for legacy moves (HMs).

  • Type: integer
  • Default: 32
  • Range: > 0

The price for tutor moves.

  • Type: integer
  • Default: 16
  • Range: > 0

The price for special moves.

  • Type: integer
  • Default: 16
  • Range: > 0

The price for egg moves.

  • Type: integer
  • Default: 32
  • Range: > 0

Allows configuration of the moves available in the village tutor interface.

A boolean value that determines whether to hide moves that the Pokémon already knows in the village tutor interface.

  • Type: boolean
  • Default: false

A boolean value that determines whether level-up moves are available in the village tutor.

  • Type: boolean
  • Default: false

A boolean value that determines whether TM moves are available in the village tutor.

  • Type: boolean
  • Default: false

A boolean value that determines whether legacy moves (HMs) are available in the village tutor.

  • Type: boolean
  • Default: true

A boolean value that determines whether tutor moves are available in the village tutor.

  • Type: boolean
  • Default: true

A boolean value that determines whether special moves are available in the village tutor.

  • Type: boolean
  • Default: true

A boolean value that determines whether egg moves are available in the village tutor.

  • Type: boolean
  • Default: false

Allows configuration of the moves available in the admin tutor interface.

A boolean value that determines whether to hide moves that the Pokémon already knows in the admin tutor interface.

  • Type: boolean
  • Default: false

A boolean value that determines whether level-up moves are available in the admin tutor.

  • Type: boolean
  • Default: false

A boolean value that determines whether TM moves are available in the admin tutor.

  • Type: boolean
  • Default: false

A boolean value that determines whether legacy moves (HMs) are available in the admin tutor.

  • Type: boolean
  • Default: true

A boolean value that determines whether tutor moves are available in the admin tutor.

  • Type: boolean
  • Default: true

A boolean value that determines whether special moves are available in the admin tutor.

  • Type: boolean
  • Default: true

A boolean value that determines whether egg moves are available in the admin tutor.

  • Type: boolean
  • Default: false