Advertisement
Guest User

Horses Config.yml

a guest
Aug 13th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.22 KB | None | 0 0
  1. # Horses v1.1.6 by ShadowDog007
  2. # http://dev.bukkit.org/bukkit-plugins/horse-stables/
  3. #
  4. # #######################################################################
  5. # locale
  6. # #######################################################################
  7. # Defines the locale to use.
  8. #
  9. # Locale files are found in Horses/locale/<locale>.yml
  10. #
  11. # Currently only en.yml is implemented in Horses
  12. #
  13. # #######################################################################
  14. # WorldConfigs
  15. # #######################################################################
  16. # A list of worlds to create custom configs for.
  17. #
  18. # Any worlds listed here will have a similar copy of this config
  19. # generated inside of the 'worlds' folder.
  20. #
  21. # You can find the world configuration in:
  22. # plugins/Horses/worlds/<worldname>/config.yml
  23. #
  24. # These configurations will apply to the player when they are in the
  25. # given world.
  26. #
  27. # #######################################################################
  28. # DatabaseType
  29. # #######################################################################
  30. # Specifies the database to use to store player data.
  31. #
  32. # Valid DatabaseTypes are YAML, MYSQL and DUMMY
  33. #
  34. # If a database fails to initialize the DUMMY database will be used.
  35. #
  36. # Types:
  37. # - YAML: Stores a single yaml file per player in playerdata/<user>.yml
  38. # YAML is the default database
  39. # - MYSQL: Stores data in a MySQL database. If this option is selected
  40. # a config file named 'mysql.yml' will appear which you need to
  41. # use to setup MySQL.
  42. # If MySQL fails to connect on startup the Dummy Database will be
  43. # used.
  44. # This database type can be used to share horses between servers.
  45. # - DUMMY: Does not store any data. Horses are lost upon quiting.
  46. # To be used for testing purposes.
  47. #
  48. # #######################################################################
  49. # ImportDatabaseType
  50. # #######################################################################
  51. # Specifies a database type to be imported into the current database type
  52. #
  53. # Note that you should NOT use this to import into a database unless
  54. # the database you are importing to is empty.
  55. #
  56. # Unexpected errors can occur if this is done.
  57. #
  58. # At startup/reload the selected database will be loaded and then saved
  59. # into the current database. This can take some time and may slow
  60. # startup/reload considerably.
  61. #
  62. # After the import has been run this setting is reset to 'NONE' so
  63. # multiple imports do not occur.
  64. #
  65. # #######################################################################
  66. # EnableWorldGuardIntegration
  67. # #######################################################################
  68. # If true the world guard configuration settings will be generated
  69. #
  70. # If false Horses will not interact with WorldGuard directly.
  71. #
  72. # Current WorldGuard integration allows you to specify in which regions
  73. # players are allowed to use certain commands.
  74. #
  75. # #######################################################################
  76. # ShowAuthorInCommand
  77. # #######################################################################
  78. # If true the /horses and /horses help commands shows the following
  79. # Horses v<version number> by ShadowDog007
  80. # If false 'by ShadowDog007' is omitted
  81. #
  82. # #######################################################################
  83. # ForceEnglishCharacters
  84. # #######################################################################
  85. # If true all commands which accept horse names will only allow
  86. # the characters a to z, 0 to 9, & and underscores.
  87. #
  88. # If false all characters will be allowed except for space.
  89. #
  90. # Note: You may face corruption issues if this is set to false.
  91. # It has been untested.
  92. #
  93. # #######################################################################
  94. # RejectedHorseNamePattern
  95. # #######################################################################
  96. # Regex pattern which defines which horse names will not be allowed.
  97. #
  98. # To learn regex go here:
  99. # http://www.regular-expressions.info/quickstart.html
  100. # For reference:
  101. # http://www.regular-expressions.info/reference.html
  102. #
  103. # #######################################################################
  104. # PermissionConfigs
  105. # #######################################################################
  106. # A list of permissions to use to decide which configuration to use
  107. # for a given player.
  108. #
  109. # The order of the list is important. If you wish to have a certain
  110. # permission override another it should be above the other permission
  111. #
  112. # For each permission a new configuration is created.
  113. #
  114. # The permission configs should be generated in the same folder
  115. # as this one.
  116. #
  117. # If no permission is found for a player, this configuration is used
  118. #
  119. # e.g.
  120. # PermissionConfigs:
  121. # - forge.admin
  122. # - forge.vip
  123. #
  124. # Two new files would be created. One named 'forge.admin.yml'
  125. # another named 'forge.vip.yml'
  126. #
  127. # Using this you could set prices for horses to 0.0 for admins for
  128. # testing.
  129. #
  130. # Have VIP's have a lesser price to make them happy
  131. #
  132. # And then the default config would be used for anyone who does not
  133. # have either of those permissions.
  134. #
  135. # #######################################################################
  136. # StableGroup
  137. # #######################################################################
  138. # Defines the stable group to use when players are inside the
  139. # given world.
  140. #
  141. # Can be defined in all world configurations but the global one and
  142. # permission configs.
  143. #
  144. # If set to 'default' the global stable will be used.
  145. # #######################################################################
  146. # BypassSpawnProtection
  147. # #######################################################################
  148. # If true, Horses will attempt to force the spawning of summoned horses
  149. #
  150. # #######################################################################
  151. # DismissHorseOnTeleport
  152. # #######################################################################
  153. # If true a players horse will be auto-dismissed upon teleporting away
  154. # from their horse.
  155. #
  156. # Note: This setting is currently forced to true until issues with
  157. # teleporting Horses are fixed.
  158. #
  159. # #######################################################################
  160. # StartWithSaddle
  161. # #######################################################################
  162. # If true newly bought horses will be given a saddle
  163. #
  164. # #######################################################################
  165. # MaxHorses
  166. # #######################################################################
  167. # The number of horses the player is allowed in their stable
  168. #
  169. # Note: Its best that this setting is not 'too' high. If it is too high
  170. # your server could get lag when saving players stable data to disk
  171. #
  172. # #######################################################################
  173. # SummonDelay
  174. # #######################################################################
  175. # The delay in seconds to wait after a player using /horses summon
  176. # before their horse is actually summoned.
  177. #
  178. # #######################################################################
  179. # CancelSummonOnMove
  180. # #######################################################################
  181. # If true players summon will be cancelled when they move from their
  182. # current position
  183. #
  184. # #$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#
  185. # Commands
  186. # #$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#
  187. # The settings in this group allow you to deny/allow certain commands
  188. #
  189. # NOTE: Players must first have the correct permission to use the command
  190. # or this setting will have no effect
  191. #
  192. # Using this and aditional world configs, you can easily deny
  193. # summoning (and other commands) in certain worlds
  194. #
  195. # #$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#
  196. # Renaming
  197. # #$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#
  198. # The following settings are related to renaming horses in the wild
  199. # and also horses the player has in their stable
  200. #
  201. # #######################################################################
  202. # BlockRenamingOnWildHorses
  203. # #######################################################################
  204. # If true players will be unable to rename wild horses with NameTags
  205. # as you normally can in Minecraft
  206. #
  207. # #######################################################################
  208. # AllowClaimingWithNameTag
  209. # #######################################################################
  210. # If true players will be able to add wild horses to their stables.
  211. #
  212. # A player is required to set a name on a name tag then right click the
  213. # horse they wish to add to their stable.
  214. #
  215. # Normal requirements in stable size and horse name apply.
  216. #
  217. # Claiming wild horses bypasses the horses.type.<typename> permissions
  218. #
  219. # #######################################################################
  220. # AllowRenamingFromNameTag
  221. # #######################################################################
  222. # If true players are allowed to rename their currently summoned horses
  223. # with a name tag (Works just like vanilla renaming)
  224. #
  225. # Normal restrictions on horse names are applied
  226. #
  227. # #######################################################################
  228. # RequireNameTagForRenaming
  229. # #######################################################################
  230. # If true players will be required to be holding a NameTag in their hand
  231. # in order to use the '/horses rename' command
  232. #
  233. # #######################################################################
  234. # MaxHorseNameLength
  235. # #######################################################################
  236. # The maximum length a horses name can be.
  237. #
  238. # This value is capped at 30. And includes formatting codes like '&3'
  239. #
  240. # #$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#
  241. # Damage
  242. # #$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#$#
  243. # The following settings are related to damage of players
  244. # owned and active horses.
  245. #
  246. # Includes handling of death of horses.
  247. #
  248. # #######################################################################
  249. # ProtectedDamageCauses
  250. # #######################################################################
  251. # A list of damage causes which will be made to have no effect on
  252. # a players active horse.
  253. #
  254. # For valid damage causes see here:
  255. # http://jd.bukkit.org/dev/apidocs/org/bukkit/event/entity/EntityDamageEvent.DamageCause.html
  256. #
  257. # #######################################################################
  258. # InvincibleHorses
  259. # #######################################################################
  260. # If true players horses will take no damage whatsoever.
  261. #
  262. # #######################################################################
  263. # ProtectFromOwner
  264. # #######################################################################
  265. # If true the owner of a horse will be unable to directly hurt
  266. # their horse.
  267. #
  268. # #######################################################################
  269. # ProtectFromPlayers
  270. # #######################################################################
  271. # If true no players (including the owner) will be able to hurt any
  272. # active horses.
  273. #
  274. # #######################################################################
  275. # ProtectFromMobs
  276. # #######################################################################
  277. # If true no mobs will be able to hurt an active horse
  278. #
  279. # #######################################################################
  280. # OnlyHurtIfOwnerCanBeHurt
  281. # #######################################################################
  282. # If true, when a players horse takes damage an event will be fired
  283. # saying that the horses owner got damaged.
  284. #
  285. # If the event is cancelled, the damage applied to the horse will
  286. # also be cancelled.
  287. #
  288. # This could be useful in PVP protected areas, also when using plugins
  289. # which put players in 'teams'
  290. #
  291. # E.G. Factions mod, a players horses will not be able
  292. # to be hurt by their allies.
  293. #
  294. # Note that this currently will not work with Anti-Cheat plugins other
  295. # than NoCheatPlus. If you want it support for other Anti-Cheat
  296. # plugins make a ticket on the BukkitDev page for Horses.
  297. #
  298. # #######################################################################
  299. # TransferDamageToRider
  300. # #######################################################################
  301. # If true damage taken by a player owned horse will be transfered to
  302. # the rider.
  303. #
  304. # The amount of damage depends on the max health both the horse and
  305. # the player.
  306. #
  307. # The percent of health the horse would have lost will be done on the
  308. # rider.
  309. #
  310. # i.e. RiderDamge = Damage / HorseMaxHP * PlayerMaxHP
  311. #
  312. # #######################################################################
  313. # DeleteHorseOnDeath
  314. # #######################################################################
  315. # If this is true a players horse will be deleted from their stable
  316. # and no long be able to be summoned after the horse dies.
  317. #
  318. # Note: This overrides the value of 'DeleteHorseOnDeathByPlayer'
  319. #
  320. # #######################################################################
  321. # DeleteHorseOnDeathByPlayer
  322. # #######################################################################
  323. # If this is true a players horse will be deleted from their stable
  324. # and no long be able to be summoned after the horse dies by another
  325. # players hands.
  326. #
  327. # #######################################################################
  328. # KeepEquipmentOnDeath
  329. # #######################################################################
  330. # If true when a players active horse dies no items will be dropped.
  331. # When the player summons their horse again all their items will
  332. # still be present.
  333. #
  334. # If false when a players active horse dies, all the items from it will
  335. # be dropped to the ground and will not be on the horse when
  336. # the player summons their horse again.
  337. #
  338. # #######################################################################
  339. # DeathCooldown
  340. # #######################################################################
  341. # The time in seconds before a player is allowed to summon their horse
  342. # after it has died.
  343.  
  344.  
  345. locale: en
  346. WorldConfigs: []
  347. DatabaseType: YAML
  348. ImportDatabaseType: NONE
  349. EnableWorldGuardIntegration: false
  350. ShowAuthorInCommand: true
  351. ForceEnglishCharacters: true
  352. RejectedHorseNamePattern: f.?u.?c.?k|d.?[1i].?(c.?k?|c|k)|c.?u.?n.?t
  353. FixZeroJumpStrength: true
  354. PermissionConfigs: []
  355. BypassSpawnProtection: false
  356. DismissHorseOnTeleport: true
  357. StartWithSaddle: true
  358. MaxHorses: 3
  359. SummonDelay: 5
  360. CancelSummonOnMove: true
  361. Commands:
  362. AllowBuyCommand: true
  363. AllowDeleteCommand: true
  364. AllowDismissCommand: true
  365. AllowHealCommand: true
  366. AllowListCommand: true
  367. AllowRenameCommand: true
  368. AllowSummonCommand: true
  369. AllowTypesCommand: true
  370. Renaming:
  371. BlockRenamingOnWildHorses: false
  372. AllowClaimingWithNameTag: true
  373. AllowRenamingFromNameTag: false
  374. RequireNameTagForRenaming: false
  375. MaxHorseNameLength: 20
  376. Damage:
  377. ProtectedDamageCauses: []
  378. InvincibleHorses: false
  379. ProtectFromOwner: true
  380. ProtectFromPlayers: true
  381. ProtectFromMobs: true
  382. OnlyHurtHorseIfOwnerCanBeHurt: true
  383. TransferDamageToRider: true
  384. DeleteHorseOnDeath: false
  385. DeleteHorseOnDeathByPlayer: false
  386. KeepEquipmentOnDeath: false
  387. DeathCooldown: 120
  388. Types:
  389. White:
  390. DisplayName: White
  391. DefaultHealth: 12.0
  392. DefaultMaxHealth: 12.0
  393. Speed: 0.225
  394. JumpStrength: 0.7
  395. MaxHpUpgrade: 30.0
  396. ProtectFromDeletionOnDeath: false
  397. BuyCost: 10.0
  398. WildClaimCost: 0.0
  399. HealCost: 5.0
  400. HpUpgradeCost: 10.0
  401. RenameCost: 5.0
  402. Creamy:
  403. DisplayName: Creamy
  404. DefaultHealth: 12.0
  405. DefaultMaxHealth: 12.0
  406. Speed: 0.225
  407. JumpStrength: 0.7
  408. MaxHpUpgrade: 30.0
  409. ProtectFromDeletionOnDeath: false
  410. BuyCost: 10.0
  411. WildClaimCost: 0.0
  412. HealCost: 5.0
  413. HpUpgradeCost: 10.0
  414. RenameCost: 5.0
  415. Chestnut:
  416. DisplayName: Chestnut
  417. DefaultHealth: 12.0
  418. DefaultMaxHealth: 12.0
  419. Speed: 0.225
  420. JumpStrength: 0.7
  421. MaxHpUpgrade: 30.0
  422. ProtectFromDeletionOnDeath: false
  423. BuyCost: 10.0
  424. WildClaimCost: 0.0
  425. HealCost: 5.0
  426. HpUpgradeCost: 10.0
  427. RenameCost: 5.0
  428. Brown:
  429. DisplayName: Brown
  430. DefaultHealth: 12.0
  431. DefaultMaxHealth: 12.0
  432. Speed: 0.225
  433. JumpStrength: 0.7
  434. MaxHpUpgrade: 30.0
  435. ProtectFromDeletionOnDeath: false
  436. BuyCost: 10.0
  437. WildClaimCost: 0.0
  438. HealCost: 5.0
  439. HpUpgradeCost: 10.0
  440. RenameCost: 5.0
  441. Black:
  442. DisplayName: Black
  443. DefaultHealth: 12.0
  444. DefaultMaxHealth: 12.0
  445. Speed: 0.225
  446. JumpStrength: 0.7
  447. MaxHpUpgrade: 30.0
  448. ProtectFromDeletionOnDeath: false
  449. BuyCost: 10.0
  450. WildClaimCost: 0.0
  451. HealCost: 5.0
  452. HpUpgradeCost: 10.0
  453. RenameCost: 5.0
  454. Gray:
  455. DisplayName: Gray
  456. DefaultHealth: 12.0
  457. DefaultMaxHealth: 12.0
  458. Speed: 0.225
  459. JumpStrength: 0.7
  460. MaxHpUpgrade: 30.0
  461. ProtectFromDeletionOnDeath: false
  462. BuyCost: 10.0
  463. WildClaimCost: 0.0
  464. HealCost: 5.0
  465. HpUpgradeCost: 10.0
  466. RenameCost: 5.0
  467. DarkBrown:
  468. DisplayName: DarkBrown
  469. DefaultHealth: 12.0
  470. DefaultMaxHealth: 12.0
  471. Speed: 0.225
  472. JumpStrength: 0.7
  473. MaxHpUpgrade: 30.0
  474. ProtectFromDeletionOnDeath: false
  475. BuyCost: 10.0
  476. WildClaimCost: 0.0
  477. HealCost: 5.0
  478. HpUpgradeCost: 10.0
  479. RenameCost: 5.0
  480. BlazeWhite:
  481. DisplayName: BlazeWhite
  482. DefaultHealth: 12.0
  483. DefaultMaxHealth: 12.0
  484. Speed: 0.225
  485. JumpStrength: 0.7
  486. MaxHpUpgrade: 30.0
  487. ProtectFromDeletionOnDeath: false
  488. BuyCost: 10.0
  489. WildClaimCost: 0.0
  490. HealCost: 5.0
  491. HpUpgradeCost: 10.0
  492. RenameCost: 5.0
  493. BlazeCreamy:
  494. DisplayName: BlazeCreamy
  495. DefaultHealth: 12.0
  496. DefaultMaxHealth: 12.0
  497. Speed: 0.225
  498. JumpStrength: 0.7
  499. MaxHpUpgrade: 30.0
  500. ProtectFromDeletionOnDeath: false
  501. BuyCost: 10.0
  502. WildClaimCost: 0.0
  503. HealCost: 5.0
  504. HpUpgradeCost: 10.0
  505. RenameCost: 5.0
  506. BlazeChestnut:
  507. DisplayName: BlazeChestnut
  508. DefaultHealth: 12.0
  509. DefaultMaxHealth: 12.0
  510. Speed: 0.225
  511. JumpStrength: 0.7
  512. MaxHpUpgrade: 30.0
  513. ProtectFromDeletionOnDeath: false
  514. BuyCost: 10.0
  515. WildClaimCost: 0.0
  516. HealCost: 5.0
  517. HpUpgradeCost: 10.0
  518. RenameCost: 5.0
  519. BlazeBrown:
  520. DisplayName: BlazeBrown
  521. DefaultHealth: 12.0
  522. DefaultMaxHealth: 12.0
  523. Speed: 0.225
  524. JumpStrength: 0.7
  525. MaxHpUpgrade: 30.0
  526. ProtectFromDeletionOnDeath: false
  527. BuyCost: 10.0
  528. WildClaimCost: 0.0
  529. HealCost: 5.0
  530. HpUpgradeCost: 10.0
  531. RenameCost: 5.0
  532. BlazeBlack:
  533. DisplayName: BlazeBlack
  534. DefaultHealth: 12.0
  535. DefaultMaxHealth: 12.0
  536. Speed: 0.225
  537. JumpStrength: 0.7
  538. MaxHpUpgrade: 30.0
  539. ProtectFromDeletionOnDeath: false
  540. BuyCost: 10.0
  541. WildClaimCost: 0.0
  542. HealCost: 5.0
  543. HpUpgradeCost: 10.0
  544. RenameCost: 5.0
  545. BlazeGray:
  546. DisplayName: BlazeGray
  547. DefaultHealth: 12.0
  548. DefaultMaxHealth: 12.0
  549. Speed: 0.225
  550. JumpStrength: 0.7
  551. MaxHpUpgrade: 30.0
  552. ProtectFromDeletionOnDeath: false
  553. BuyCost: 10.0
  554. WildClaimCost: 0.0
  555. HealCost: 5.0
  556. HpUpgradeCost: 10.0
  557. RenameCost: 5.0
  558. BlazeDarkBrown:
  559. DisplayName: BlazeDarkBrown
  560. DefaultHealth: 12.0
  561. DefaultMaxHealth: 12.0
  562. Speed: 0.225
  563. JumpStrength: 0.7
  564. MaxHpUpgrade: 30.0
  565. ProtectFromDeletionOnDeath: false
  566. BuyCost: 10.0
  567. WildClaimCost: 0.0
  568. HealCost: 5.0
  569. HpUpgradeCost: 10.0
  570. RenameCost: 5.0
  571. PaintWhite:
  572. DisplayName: PaintWhite
  573. DefaultHealth: 12.0
  574. DefaultMaxHealth: 12.0
  575. Speed: 0.225
  576. JumpStrength: 0.7
  577. MaxHpUpgrade: 30.0
  578. ProtectFromDeletionOnDeath: false
  579. BuyCost: 10.0
  580. WildClaimCost: 0.0
  581. HealCost: 5.0
  582. HpUpgradeCost: 10.0
  583. RenameCost: 5.0
  584. PaintCreamy:
  585. DisplayName: PaintCreamy
  586. DefaultHealth: 12.0
  587. DefaultMaxHealth: 12.0
  588. Speed: 0.225
  589. JumpStrength: 0.7
  590. MaxHpUpgrade: 30.0
  591. ProtectFromDeletionOnDeath: false
  592. BuyCost: 10.0
  593. WildClaimCost: 0.0
  594. HealCost: 10.0
  595. HpUpgradeCost: 10.0
  596. RenameCost: 5.0
  597. PaintChestnut:
  598. DisplayName: PaintChestnut
  599. DefaultHealth: 12.0
  600. DefaultMaxHealth: 12.0
  601. Speed: 0.225
  602. JumpStrength: 0.7
  603. MaxHpUpgrade: 30.0
  604. ProtectFromDeletionOnDeath: false
  605. BuyCost: 10.0
  606. WildClaimCost: 0.0
  607. HealCost: 5.0
  608. HpUpgradeCost: 10.0
  609. RenameCost: 5.0
  610. PaintBrown:
  611. DisplayName: PaintBrown
  612. DefaultHealth: 12.0
  613. DefaultMaxHealth: 12.0
  614. Speed: 0.225
  615. JumpStrength: 0.7
  616. MaxHpUpgrade: 30.0
  617. ProtectFromDeletionOnDeath: false
  618. BuyCost: 10.0
  619. WildClaimCost: 0.0
  620. HealCost: 5.0
  621. HpUpgradeCost: 10.0
  622. RenameCost: 5.0
  623. PaintBlack:
  624. DisplayName: PaintBlack
  625. DefaultHealth: 12.0
  626. DefaultMaxHealth: 12.0
  627. Speed: 0.225
  628. JumpStrength: 0.7
  629. MaxHpUpgrade: 30.0
  630. ProtectFromDeletionOnDeath: false
  631. BuyCost: 10.0
  632. WildClaimCost: 0.0
  633. HealCost: 5.0
  634. HpUpgradeCost: 10.0
  635. RenameCost: 5.0
  636. PaintGray:
  637. DisplayName: PaintGray
  638. DefaultHealth: 12.0
  639. DefaultMaxHealth: 12.0
  640. Speed: 0.225
  641. JumpStrength: 0.7
  642. MaxHpUpgrade: 30.0
  643. ProtectFromDeletionOnDeath: false
  644. BuyCost: 10.0
  645. WildClaimCost: 0.0
  646. HealCost: 5.0
  647. HpUpgradeCost: 10.0
  648. RenameCost: 5.0
  649. PaintDarkBrown:
  650. DisplayName: PaintDarkBrown
  651. DefaultHealth: 12.0
  652. DefaultMaxHealth: 12.0
  653. Speed: 0.225
  654. JumpStrength: 0.7
  655. MaxHpUpgrade: 30.0
  656. ProtectFromDeletionOnDeath: false
  657. BuyCost: 10.0
  658. WildClaimCost: 0.0
  659. HealCost: 5.0
  660. HpUpgradeCost: 10.0
  661. RenameCost: 5.0
  662. LeopardWhite:
  663. DisplayName: LeopardWhite
  664. DefaultHealth: 12.0
  665. DefaultMaxHealth: 12.0
  666. Speed: 0.225
  667. JumpStrength: 0.7
  668. MaxHpUpgrade: 30.0
  669. ProtectFromDeletionOnDeath: false
  670. BuyCost: 10.0
  671. WildClaimCost: 0.0
  672. HealCost: 5.0
  673. HpUpgradeCost: 10.0
  674. RenameCost: 5.0
  675. LeopardCreamy:
  676. DisplayName: LeopardCreamy
  677. DefaultHealth: 12.0
  678. DefaultMaxHealth: 12.0
  679. Speed: 0.225
  680. JumpStrength: 0.7
  681. MaxHpUpgrade: 30.0
  682. ProtectFromDeletionOnDeath: false
  683. BuyCost: 10.0
  684. WildClaimCost: 0.0
  685. HealCost: 5.0
  686. HpUpgradeCost: 10.0
  687. RenameCost: 5.0
  688. LeopardChestnut:
  689. DisplayName: LeopardChestnut
  690. DefaultHealth: 12.0
  691. DefaultMaxHealth: 12.0
  692. Speed: 0.225
  693. JumpStrength: 0.7
  694. MaxHpUpgrade: 30.0
  695. ProtectFromDeletionOnDeath: false
  696. BuyCost: 10.0
  697. WildClaimCost: 0.0
  698. HealCost: 5.0
  699. HpUpgradeCost: 10.0
  700. RenameCost: 5.0
  701. LeopardBrown:
  702. DisplayName: LeopardBrown
  703. DefaultHealth: 12.0
  704. DefaultMaxHealth: 12.0
  705. Speed: 0.225
  706. JumpStrength: 0.7
  707. MaxHpUpgrade: 30.0
  708. ProtectFromDeletionOnDeath: false
  709. BuyCost: 10.0
  710. WildClaimCost: 0.0
  711. HealCost: 5.0
  712. HpUpgradeCost: 10.0
  713. RenameCost: 5.0
  714. LeopardBlack:
  715. DisplayName: LeopardBlack
  716. DefaultHealth: 12.0
  717. DefaultMaxHealth: 12.0
  718. Speed: 0.225
  719. JumpStrength: 0.7
  720. MaxHpUpgrade: 30.0
  721. ProtectFromDeletionOnDeath: false
  722. BuyCost: 10.0
  723. WildClaimCost: 0.0
  724. HealCost: 5.0
  725. HpUpgradeCost: 10.0
  726. RenameCost: 5.0
  727. LeopardGray:
  728. DisplayName: LeopardGray
  729. DefaultHealth: 12.0
  730. DefaultMaxHealth: 12.0
  731. Speed: 0.225
  732. JumpStrength: 0.7
  733. MaxHpUpgrade: 30.0
  734. ProtectFromDeletionOnDeath: false
  735. BuyCost: 10.0
  736. WildClaimCost: 0.0
  737. HealCost: 5.0
  738. HpUpgradeCost: 10.0
  739. RenameCost: 5.0
  740. LeopardDarkBrown:
  741. DisplayName: LeopardDarkBrown
  742. DefaultHealth: 12.0
  743. DefaultMaxHealth: 12.0
  744. Speed: 0.225
  745. JumpStrength: 0.7
  746. MaxHpUpgrade: 30.0
  747. ProtectFromDeletionOnDeath: false
  748. BuyCost: 10.0
  749. WildClaimCost: 0.0
  750. HealCost: 5.0
  751. HpUpgradeCost: 10.0
  752. RenameCost: 5.0
  753. SootyWhite:
  754. DisplayName: SootyWhite
  755. DefaultHealth: 12.0
  756. DefaultMaxHealth: 12.0
  757. Speed: 0.225
  758. JumpStrength: 0.7
  759. MaxHpUpgrade: 30.0
  760. ProtectFromDeletionOnDeath: false
  761. BuyCost: 10.0
  762. WildClaimCost: 0.0
  763. HealCost: 5.0
  764. HpUpgradeCost: 10.0
  765. RenameCost: 5.0
  766. SootyCreamy:
  767. DisplayName: SootyCreamy
  768. DefaultHealth: 12.0
  769. DefaultMaxHealth: 12.0
  770. Speed: 0.225
  771. JumpStrength: 0.7
  772. MaxHpUpgrade: 30.0
  773. ProtectFromDeletionOnDeath: false
  774. BuyCost: 10.0
  775. WildClaimCost: 0.0
  776. HealCost: 5.0
  777. HpUpgradeCost: 10.0
  778. RenameCost: 5.0
  779. SootyChestnut:
  780. DisplayName: SootyChestnut
  781. DefaultHealth: 12.0
  782. DefaultMaxHealth: 12.0
  783. Speed: 0.225
  784. JumpStrength: 0.7
  785. MaxHpUpgrade: 30.0
  786. ProtectFromDeletionOnDeath: false
  787. BuyCost: 10.0
  788. WildClaimCost: 0.0
  789. HealCost: 5.0
  790. HpUpgradeCost: 10.0
  791. RenameCost: 5.0
  792. SootyBrown:
  793. DisplayName: SootyBrown
  794. DefaultHealth: 12.0
  795. DefaultMaxHealth: 12.0
  796. Speed: 0.225
  797. JumpStrength: 0.7
  798. MaxHpUpgrade: 30.0
  799. ProtectFromDeletionOnDeath: false
  800. BuyCost: 10.0
  801. WildClaimCost: 0.0
  802. HealCost: 5.0
  803. HpUpgradeCost: 10.0
  804. RenameCost: 5.0
  805. SootyBlack:
  806. DisplayName: SootyBlack
  807. DefaultHealth: 12.0
  808. DefaultMaxHealth: 12.0
  809. Speed: 0.225
  810. JumpStrength: 0.7
  811. MaxHpUpgrade: 30.0
  812. ProtectFromDeletionOnDeath: false
  813. BuyCost: 10.0
  814. WildClaimCost: 0.0
  815. HealCost: 5.0
  816. HpUpgradeCost: 10.0
  817. RenameCost: 5.0
  818. SootyGray:
  819. DisplayName: SootyGray
  820. DefaultHealth: 12.0
  821. DefaultMaxHealth: 12.0
  822. Speed: 0.225
  823. JumpStrength: 0.7
  824. MaxHpUpgrade: 30.0
  825. ProtectFromDeletionOnDeath: false
  826. BuyCost: 10.0
  827. WildClaimCost: 0.0
  828. HealCost: 5.0
  829. HpUpgradeCost: 10.0
  830. RenameCost: 5.0
  831. SootyDarkBrown:
  832. DisplayName: SootyDarkBrown
  833. DefaultHealth: 12.0
  834. DefaultMaxHealth: 12.0
  835. Speed: 0.225
  836. JumpStrength: 0.7
  837. MaxHpUpgrade: 30.0
  838. ProtectFromDeletionOnDeath: false
  839. BuyCost: 10.0
  840. WildClaimCost: 0.0
  841. HealCost: 5.0
  842. HpUpgradeCost: 10.0
  843. RenameCost: 5.0
  844. Donkey:
  845. DisplayName: Donkey
  846. DefaultHealth: 20.0
  847. DefaultMaxHealth: 20.0
  848. Speed: 0.225
  849. JumpStrength: 0.7
  850. MaxHpUpgrade: 30.0
  851. ProtectFromDeletionOnDeath: false
  852. BuyCost: 22.0
  853. WildClaimCost: 0.0
  854. HealCost: 8.0
  855. HpUpgradeCost: 10.0
  856. RenameCost: 5.0
  857. Mule:
  858. DisplayName: Mule
  859. DefaultHealth: 20.0
  860. DefaultMaxHealth: 20.0
  861. Speed: 0.225
  862. JumpStrength: 0.7
  863. MaxHpUpgrade: 30.0
  864. ProtectFromDeletionOnDeath: false
  865. BuyCost: 25.0
  866. WildClaimCost: 0.0
  867. HealCost: 8.0
  868. HpUpgradeCost: 10.0
  869. RenameCost: 5.0
  870. Undead:
  871. DisplayName: Undead
  872. DefaultHealth: 20.0
  873. DefaultMaxHealth: 20.0
  874. Speed: 0.225
  875. JumpStrength: 0.8
  876. MaxHpUpgrade: 30.0
  877. ProtectFromDeletionOnDeath: false
  878. BuyCost: 20.0
  879. WildClaimCost: 0.0
  880. HealCost: 8.0
  881. HpUpgradeCost: 10.0
  882. RenameCost: 5.0
  883. Skeleton:
  884. DisplayName: Skeleton
  885. DefaultHealth: 20.0
  886. DefaultMaxHealth: 20.0
  887. Speed: 0.225
  888. JumpStrength: 0.8
  889. MaxHpUpgrade: 30.0
  890. ProtectFromDeletionOnDeath: false
  891. BuyCost: 20.0
  892. WildClaimCost: 0.0
  893. HealCost: 8.0
  894. HpUpgradeCost: 10.0
  895. RenameCost: 5.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement