Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.14 KB | None | 0 0
  1. # Settings for controlling the auto-battler for AFK players.
  2. AFKHandler {
  3. # The time in seconds before a player in a battle is declared to be AFK and the auto-battle code takes over for them.
  4. afkActivateSeconds=90
  5. # The time in seconds before the auto-battle handler picks a move automatically each turn.
  6. afkHandlerTurnSeconds=15
  7. # Have auto-battle take over if the player is AFK during a battle. Activates after the specified time period and gives specified time for each turn after that.
  8. enableAFKHandler=false
  9. }
  10. # Settings for breeding behavior.
  11. Breeding {
  12. # Allows the placement of ranch blocks, which are required for breeding Pokemon.
  13. allowBreeding=true
  14. # Allows two Ditto to breed together to produce Eggs with random Pokémon inside.
  15. allowDittoDittoBreeding=false
  16. # Allow the crafting of ranch blocks.
  17. allowRanchCrafting=true
  18. # Allow the ranch expansion.
  19. allowRanchExpansion=true
  20. # Enable random Eggs from Ditto-Ditto breeding to contain Legendaries.
  21. allowRandomBreedingEggsToBeLegendary=false
  22. # Enables random Eggs from /pokegiveegg to contain Legendaries.
  23. allowRandomSpawnedEggsToBeLegendary=false
  24. # Seconds between running the environment check for breeders, requires useBreedingEnvironment to be enabled
  25. breedingEnvironmentCheckSeconds=500
  26. # Number of world ticks needed to increase the breeding stage.
  27. breedingTicks=18000
  28. # Number of stages to go through before breeding occurs (1-5).
  29. numBreedingStages=5
  30. # Sets the number of steps per Egg cycle. Lower numbers hatch Eggs faster.
  31. stepsPerEggCycle=255
  32. # Control speed of breeding based on the blocks set in the area. If false, will set breeding speed to 1.0x.
  33. useBreedingEnvironment=false
  34. }
  35. # Settings for re-routing the Pixelmon saving system into an external database.
  36. Database {
  37. # Put the connection string for the external database in the form jdbc:dbtype://...
  38. connectionString="jdbc:hd://"
  39. # Enable this to change the save system over to a database specified in the connection string property. Only H2 and MySQL currently supported.
  40. saveToExternalDatabase=false
  41. }
  42. # Options for the elevator.
  43. Elevator {
  44. # Maximum search range up/down for a pairing elevator.
  45. elevatorSearchRange=10
  46. }
  47. # Settings for controlling external moves.
  48. ExternalMoves {
  49. # Allows the use of external moves such as Rock Smash and Cut.
  50. allowExternalMoves=false
  51. }
  52. # General settings for the world.
  53. General {
  54. # Allow the anvil to replace finished items with starting item from player's inventory without manual placing.
  55. allowAnvilAutoreloading=false
  56. # Allow player to throw Poke Balls from hotbar. If false, Poke Balls can only be thrown in battles.
  57. allowCaptureOutsideBattle=true
  58. # Allows move tutors that teach event moves to spawn naturally.
  59. allowEventMoveTutors=true
  60. # Allows the 17 types of Gems to be crafted by players.
  61. allowGemCrafting=true
  62. # Allow Pay Day to award PokéDollars when used.
  63. allowPayDayMoney=false
  64. # Allow players to plant Apricorns in the ground.
  65. allowPlanting=false
  66. # Server-side, whether players can use Pokémon editors. Client-side, whether other players can use a Pokémon editor on the player with the setting.
  67. allowPokemonEditors=true
  68. # Allow the player to nickname Pokemon (not a server-wide setting, just a client setting).
  69. allowPokemonNicknames=true
  70. # Determines if player vs. player battles give Pokemon experience. No EXP gain in PvP when false.
  71. allowPvPExperience=false
  72. # Allows players to make Rare Candies by crafting (server-side option).
  73. allowRareCandyCrafting=false
  74. # Allow players to ride Pokemon. If false, no Pokemon can be ridden (server-side option).
  75. allowRiding=true
  76. # If enabled, TMs are reusable. If disabled, TMs are consumed upon use.
  77. allowTMReuse=false
  78. # Determines if player vs. Trainer battles give Pokemon experience. No EXP gain in Trainer when false.
  79. allowTrainerExperience=true
  80. # Allow creepers, skeletons, etc. to spawn in the world. DANGER - can kill you while battling.
  81. allowVanillaMobs=false
  82. # Award photos to players who defeat wild Pokemon.
  83. awardPhotos=false
  84. # The type of AI to use for boss Pokemon in battle.
  85. # 1: Choose moves randomly. 2: Choose the most damaging move possible (with type match-ups), ignoring status moves. 3: Use both offensive and status moves. 4: Use all moves intelligently and switch out when advantageous.
  86. battleAIBoss=3
  87. # The type of AI to use for NPC Trainers in battle.
  88. # 1: Choose moves randomly. 2: Choose the most damaging move possible (with type match-ups), ignoring status moves. 3: Use both offensive and status moves. 4: Use all moves intelligently and switch out when advantageous.
  89. battleAITrainer=3
  90. # The type of AI to use for wild Pokemon in battle.
  91. # 1: Choose moves randomly. 2: Choose the most damaging move possible (with type match-ups), ignoring status moves. 3: Use both offensive and status moves. 4: Use all moves intelligently and switch out when advantageous.
  92. battleAIWild=3
  93. # Whether sleeping in a bed heals a player's Pokemon.
  94. bedsHealPokemon=true
  95. # The radius in chunks around a player that Pokemon can spawn within.
  96. chunkSpawnRadius=4
  97. # Allow players to use cloning machines to clone Mew into Mewtwo.
  98. cloningMachineEnabled=false
  99. # Sets the amount of boxes players have in their PCs (capped at 256 per player).
  100. computerBoxes=20
  101. # If players party and computer are forcefully saved upon every world save (If false, you should be saving data via /saveall, or risk data loss)
  102. dataSaveOnWorldSave=true
  103. # When mounted, enables steering the Pokemon by looking.
  104. enablePointToSteer=true
  105. # Allows the Pokedex to open wiki pages. Turn this off if you don't want the wiki opening from inside Pixelmon.
  106. enablePokedexWikiWebsiteOpen=true
  107. # Allow wild Pokemon to initiate battles.
  108. enableWildAggression=false
  109. # If enabled, players will be able to challenge others by throwing a Pokemon at the enemy player rather than a Pokemon.
  110. engagePlayerByPokeBall=false
  111. # Multiplier for experience gained in Pokemon battles.
  112. expModifier=1
  113. # What will happen if a battle is force-ended without a proper conclusion. 0: A winner is determined based on the number of remaining Pokémon (with % HP as a tiebreaker). 1: The battle is considered a draw. 2: The battle is considered abnormally ended.
  114. forceEndBattleResult=1
  115. # Adjusts the variation in size caused by growth (0-2). 1 is normal.
  116. growthScaleModifier=1
  117. # The maximum level that a Pokémon can be.
  118. maxLevel=100
  119. # Allow each player to take multiple photos of the same Pokémon.
  120. multiplePhotosOfSamePokemon=true
  121. # Sets how far Pokemon names and levels can be seen from (client setting only). 1=Default, 2=Farther, 3=Far
  122. namePlateRange=1
  123. # Requires flying and water Pokemon mounts to have HM moves Fly or Surf (respectively) to be able to ride them.
  124. needHMToRide=false
  125. # Sets NPC rarity. Higher values spawn NPCs (Trainers, tutors) more often, 0 spawns no NPCs.
  126. #
  127. #
  128. #
  129. #
  130. #
  131. #
  132. #
  133. #
  134. #
  135. #
  136. #
  137. #
  138. #
  139. #
  140. npcRarity=55
  141. # Chance of the Pickup Ability picking up an item after a battle (1/rate). 0 disables this.
  142. pickupRate=10
  143. # Allows wild Pokemon to drop items like feathers, etc. on death.
  144. pokemonDropsEnabled=true
  145. # Prints more detailed error messages to the server.log file if enabled.
  146. printErrors=true
  147. # If enabled, consumable held items will be returned to Pokémon at the end of player vs. player battles.
  148. returnHeldItems=false
  149. # Set Legendary shrines to one use (false) or multiple use (true).
  150. reusableBirdShrines=false
  151. # Increases size of Pokemon models in-game by 30%.
  152. scalePokemonModels=true
  153. # Whether to show wild Pokémon names on their nameplates.
  154. showWildNames=true
  155. # Allow Legendary bird shrines to spawn randomly in world.
  156. spawnBirdShrines=true
  157. # Allow random generation of structures such as Pokemon Centers, shrines, and other buildings if true.
  158. spawnStructures=false
  159. # If true, must be opped to use spawners. If false, must be in Creative mode.
  160. spawnersOpOnly=true
  161. # Lets you choose to give/not give a starter to a player on join (via the Pixelmon starter screen).
  162. starterOnJoin=true
  163. # The time taken before syncing to the system clock (in seconds).
  164. systemTimeSyncInterval=30
  165. # Set traders to one use (false) or multiple use (true).
  166. tradersReusable=false
  167. # Allows you to toggle which tab list you would like to use. True for Pixelmon's, false for vanilla's.
  168. useCustomTabList=false
  169. # Load external configuration files from the "pixelmon" folder. If set to true and the "pixelmon" folder does not exist, Pixelmon will create the folder and dump the existing files there.
  170. useExternalJSONFiles=true
  171. # Lets your world follow real world time or not (uses the server's system clock).
  172. useSystemTimeForWorldTime=false
  173. # Saves Pixelmon entities to file when world saves (greatly increases save file size and save time if true). Required for the morph mod.
  174. writeEntitiesToWorld=false
  175. }
  176. # Graphics settings.
  177. Graphics {
  178. # Show each Pokemon's health in a bar above their heads.
  179. drawHealthBars=false
  180. # Use the low resolution textures for Pokemon and Poke Balls. Useful for low-end systems.
  181. lowResTextures=false
  182. # Set whether or not the player can control the camera during battles (sets to sphere based camera positioning)
  183. playerControlCamera=true
  184. # Multiplier of the 64 distance usually used for rendering.
  185. renderDistanceWeight=2
  186. # Display the currently selected Pokemon's attack target on the screen.
  187. showCurrentAttackTarget=true
  188. # Set whether or not to switch to an external camera during battles.
  189. useBattleCamera=true
  190. # Use the original Pokemon textures for statues.
  191. useOriginalPokemonTexturesForStatues=false
  192. # Use the SMD normal maps for shading Poke Balls.
  193. useSmoothShadingOnPokeBalls=true
  194. # Use the SMD normal maps for shading Pokemon.
  195. useSmoothShadingOnPokemon=true
  196. }
  197. # Settings for PixelUtilities features.
  198. PixelUtilities {
  199. # pixelmon.config.blocksHaveLegendaries.comment
  200. blocksHaveLegendaries=false
  201. # Specify the coordinates of the event Poke Gift chest here.
  202. eventCoords=[
  203. notConfigured
  204. ]
  205. # Enable/Disable Legendaries from being added to the event Poke Gift.
  206. eventHasLegendaries=false
  207. # Each Pokemon has a 1/10 chance of being a Shiny.
  208. eventHasShinies=false
  209. # Sets the maximum amount of Pokemon that are in spawned Poke Gifts.
  210. eventMaxPokemon=1
  211. # Should an event Poke Gift spawn?
  212. eventPokeGiftLoad=false
  213. # The rate of Shiny Pokemon appearing in a Poke Gift (1/x).
  214. eventShinyRate=10
  215. # Define a custom date for Poke Gift events (day then month).
  216. eventTime="D/M"
  217. # Allows Poke Gifts to be used (both placing and using, prevention against spam).
  218. pokeGiftHaveEvents=true
  219. # Enable multiple players to get the Pokemon from the gift.
  220. pokeGiftReusable=false
  221. # Scale grass battles to players' team levels?
  222. scaleGrassBattles=false
  223. # pixelmon.config.useExternalBlockSpawnFiles.comment
  224. useExternalBlockSpawnFiles=false
  225. }
  226. # Settings for controlling PokeLoot chest spawns and behavior.
  227. PokeLoot {
  228. # Allow Hidden Grottos to spawn in the world.
  229. spawnGrotto=true
  230. # Allows invisible PokeChests to spawn around the world randomly.
  231. spawnHidden=true
  232. # Default spawn mode (FCFS=0, PL1D=1, PUD=2, TIMED=3). FCFS = First Come First Serve, only one player can loot chest, then chests vanishes. PL1D = Player 1 Drop, chest gives one drop per person. Chest remains for others to use once each. PUD = Player Unlimited Drops, chests can be used infinitely by all players. TIMED = Each player allowed to loot again after specified time interval (individual timers). Chest remains after looting.
  233. spawnMode=3
  234. # Allows normal visible PokeChests to spawn around the world randomly.
  235. spawnNormal=true
  236. # Chest spawn rate. 0: 1 per 64 chunks. 1: 1 per 32 chunks. 2: 1 per 18 chunks. 3: 1 per 10 chunks
  237. spawnRate=1
  238. # Sets frequency that a player can reuse a timed loot chest (both placed in Creative and naturally spawned) if set to TIMED. Time conversions: one hour = 3600 seconds, one day = 86400 seconds, one week = 604800 seconds.
  239. timedLootReuseSeconds=345600
  240. }
  241. # Sound settings.
  242. Sounds {
  243. # Whether to remove Minecraft music and only play Pixelmon music in-game.
  244. removeVanillaMusic=false
  245. }
  246. # Settings that control what Pokemon spawns and how many of them spawn.
  247. Spawning {
  248. # These values set whether or not a Generation's Pokemon will be spawned.
  249. Gens {
  250. # Pokedex 1-151
  251. Gen1=true
  252. # Pokedex 152-251
  253. Gen2=true
  254. # Pokedex 252-386
  255. Gen3=true
  256. # Pokedex 387-493
  257. Gen4=true
  258. # Pokedex 494-649
  259. Gen5=true
  260. # Pokedex 650-721
  261. Gen6=true
  262. }
  263. # Allow wild Legendaries to spawn (besides specific event spawns).
  264. allowLegendarySpawn=true
  265. # Chance of a group of wild Pokemon containing a boss Pokemon (1/rate). 0 disables boss spawns.
  266. bossSpawnRate=250
  267. # Forces wild Pokemon to despawn after a battle.
  268. despawnOnFleeOrLoss=false
  269. # Displays server-wide announcement 'A Legendary has spawned in <name> biome' when a Legendary spawns.
  270. displayLegendaryGlobalMessage=true
  271. # Number of blocks for a level increase when Spawn Levels By Distance enabled.
  272. distancePerLevel=30
  273. # Chance of a wild Pokemon spawning with its hidden Ability (1/rate). 0 disables hidden Ability spawns.
  274. hiddenAbilitySpawnRate=150
  275. # Increase the Minecraft village spawn rate by 100%.
  276. increaseVillageSpawnRate=false
  277. # Minimum number of ticks before a particular legendary can spawn again (via main spawner).
  278. legendaryRepeatSpawnTicks=2700
  279. # Chance that a Legendary spawn attempt will succeed (0-1).
  280. legendarySpawnChance=0.3
  281. # Average number of ticks before an attempt at Legendary spawning will be made (modified by spawn chance).
  282. legendarySpawnTicks=29000
  283. # Max number of flying Pokemon at one time (keep this low).
  284. maxFlyingPokemon=14
  285. # Max number of land Pokemon at one time.
  286. maxLandPokemon=185
  287. # Maximum level Pokemon will spawn at when Spawn Levels By Distance enabled.
  288. maxLevelByDistance=60
  289. # Max number of NPCs at one time.
  290. maxNumNPCs=40
  291. # Max Pokémon spawns per tick
  292. maxSpawnsPerTick=70
  293. # Max number of underground Pokemon at one time.
  294. maxUndergroundPokemon=28
  295. # Max number of water Pokemon at one time.
  296. maxWaterPokemon=28
  297. # Replaces Minecraft's villagers with Pixelmon NPCs.
  298. replaceMCVillagers=true
  299. # Shiny calculation uses 1/(Shiny rate) to get odds of becoming Shiny.
  300. shinySpawnRate=8192
  301. # List of dimensions that Pokemon will spawn in.
  302. spawnDimensions=[
  303. 0
  304. ]
  305. # Sets spawning of Gyms in close proximity to newly generated towns on or off.
  306. spawnGyms=true
  307. # Sets whether or not Pokemon levels are determined by distance from the World's spawn point.
  308. spawnLevelsByDistance=false
  309. # Poke Marts will spawn with shopkeepers in Minecraft's towns.
  310. spawnPokeMarts=true
  311. # Number of ticks before an attempt to spawn entities is made.
  312. spawnTickRate=60
  313. # If true, Pokémon will spawn with the most recent moves in their level-up movepools. If false, Pokémon will spawn with random moves from their level-up movepools.
  314. useRecentLevelMoves=false
  315. }
  316. Starters {
  317. # Level (min=5, max=100).
  318. level=5
  319. # Shiny starters.
  320. shiny=false
  321. # List of starters (max of 18).
  322. starterList=[
  323. Bulbasaur,
  324. Squirtle,
  325. Charmander,
  326. Chikorita,
  327. Totodile,
  328. Cyndaquil,
  329. Treecko,
  330. Mudkip,
  331. Torchic,
  332. Turtwig,
  333. Piplup,
  334. Chimchar,
  335. Snivy,
  336. Oshawott,
  337. Tepig,
  338. Chespin,
  339. Froakie,
  340. Fennekin
  341. ]
  342. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement