Skip to content

Configuration

All of the configuration files for Poke Power are located in the <game_directory>/config/poke_power/ directory.

Configuration files:

  • server.toml - This file contains the server-side configuration options for the Poke Power mod.
server.toml
#Blocks Config
[blocks]
#Power Block Config
[blocks.powerBlock]
powerPerPokeLevel = 50
capacity = 120000
maxExtract = 16000
#Cable Config
[blocks.cable]
capacity = 32000
maxExtract = 16000

Allows configuration of the Poke Power blocks and cables. This allows you to customize the power generation and storage capabilities of the blocks and cables.

The Power Block is the main block of the Poke Power mod. It generates power based on the level of the Electric type Pokemon that is placed inside it.

The amount of power per tick gained per poke level.

  • Type: integer
  • Default: 50
  • Range: > 1

The amount of power that a power block can store.

  • Type: integer
  • Default: 120000
  • Range: 1 ~ 9223372036854775807

The maximum amount of power that can be extracted from a power block per tick.

  • Type: integer
  • Default: 16000
  • Range: 1 ~ 9223372036854775807

The Cable is used to transfer power from the Power Block to other machines and devices.

The amount of power that a cable can store.

  • Type: integer
  • Default: 32000
  • Range: 1 ~ 9223372036854775807

The maximum amount of power that can be extracted from a cable per tick.

  • Type: integer
  • Default: 16000
  • Range: 1 ~ 9223372036854775807