daniel4to

config.yml

Jan 17th, 2021 (edited)
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 4.22 KB | None | 0 0
  1. #
  2. # BLACKJACK
  3. #      by Perotin
  4.  
  5.  
  6. # Set to true if you want this plugin to use vault eco, false if you want it to use exp
  7. cash-or-xp: true
  8. # This is a toggle of whether or not players should be allowed to bet more money than they currently have
  9. bet-overflow: false
  10. # If the above is set to true, this is the max amount they can bet of money theey don't have
  11. bet-overflow-max: 1000
  12.  
  13. # The percentage that should be taxed / deducted from winnings. Set to 0.0 for no taxes. Range is 0.0 to 100.0 .
  14. tax-percent: 0.0
  15.  
  16. # Minimum amount able to bet and the maximum amount to bet! Setting either to zero will negate it completely.
  17. bet-min: 0.0
  18. bet-max: 0.0
  19.  
  20. # The following options relate to the move to surrender
  21.  
  22. # Should surrendering (forfeit the game and keep a % of your bet)
  23. enable-surrender: true
  24.  
  25. # What percentage of the bet should the server take? (1-99)
  26. surrender-percentage-to-take: 50.0
  27.  
  28. # Disable the change bet buttons? (Players cannot change their amount in the bet)
  29. enable-change-bet: true
  30.  
  31. # One user requested this, basically, it'll run the specified command below when each round of blackjack starts. If you want
  32. # to use this, then set the below to 'true' and specify your command.
  33. custom-command: false
  34. command: "/Example $amount$"
  35.  
  36. # Should there be a multiplier for Blackjack (score of 21)?
  37. enable-multiplier: true
  38.  
  39. # What should the bet amount be multiplied to for blackjacks?
  40. multiplier: 1.5
  41.  
  42. # Messages used in plugin
  43. number-or-player: "&cArgumentos incorretos! /blackjack <amount> ou /blackjack <player>"
  44. no-permission: "&cVocê não tem permissão para fazer isso!"
  45. menu-title: "Blackjack: Apostando $number$"
  46. blackjack-dealer: "&8&lDealer"
  47. blackjack-win: "&0&lBlack&4&lJack! &7&o($amount$x) "
  48. dealer-lore: "&7&oPedir mais ou Parar?"
  49. dealer-cards: "&eCartas do Dealer ==>"
  50. player-cards: "&eSuas Cartas ==>"
  51. unknown-card: "&e???"
  52. incorrect-args: "&cArgumentos Impróprios > /blackjack <amount> ou /blackjack <player>"
  53. hit-item: "&ePedir mais"
  54. stand-item: "&eParar"
  55. end-game: "&7Sua Pontuação: &e$score$ &7Pontuação do Dealer: &e$score2$"
  56. earnings: "&eVocê $result$ $number$ dinheiros!"
  57. taxxed: "&c-$amount$ taxado."
  58. won: "venceu"
  59. lost: "perdeu"
  60. tied: "&eVocê empatou então ganhou suas moedas de vota."
  61. cannot-bet-that-much: "&cCalma ai campeão, aqui você não pode apostar o que não tem!"
  62. can-only-bet: "&cVocê só pode apostar $amount$ de todo seu dinheiro!"
  63. tutorial-name: "&eNão sabe como jogar? Clique em mim!"
  64. tutorial:
  65.    - "&eBem Vindo à este tutorial de Black Jack! Para cancelar, digite &ccancel"
  66.    - "&eO objetivo desse jogo é de chegar o mais perto de pontuar 21 sem ultrapassar, e vencer o Dealer tendo mais pontos que ele. "
  67.    - "&eCartas de 2-10 tem seus valores iguais aos seus números (4 de Espadas vale 4)."
  68.    - "&eReis, Valetes, e Rainhas valem 10. Às vale 1 ou 11, dependendo de qual é melhor para o jogador."
  69.    - "&e'Pedir mais' é quando você quer mais uma carta, mas você assume o risco de passar de 21 e perder."
  70.    - "&e 'Ficar' é quando você está confiantes com suas cartas, e quer acabar o jogo com elas."
  71.    - "&eObrigado por jogar!"
  72. bet-max-message: "&cO máximo que você pode apostar é $amount$!"
  73. bet-min-message: "&cO mínimo que você pode apostar é $amount$!"
  74. surrender-item: "&eSe render"
  75. surrender-lore: "&7&o(Mantém metade de sua aposta)"
  76. surrender-message: "&eVocê se rendeu, manteve $amount$ de $bet$ da sua aposta original!"
  77.  
  78. # Session Messages
  79. earnings-gui: "&eGanhos do último jogo:"
  80. keep-playing: "&aContinuar jogando?"
  81. stop-playing: "&cAbandonar sessão?"
  82. total-earnings: "&eGanhos totais: $amount$"
  83. session-ending: "&eDepois de $amount$ jogos, resultou em $$outcome$!"
  84. change-bet-amount: "&eTrocar quantia de aposta"
  85. your-bet-amount: "&eSua quantia de aposta"
  86. continue-playing: "Continuar jogando, $player$?"
  87.  
  88. # New messages
  89. blackjack: "&bBLACKJACK"
  90. previous-game: "&7Abrindo jogos anteriores. . ."
  91. wins-stat: "&cVitórias: &f$amount$"
  92. loss-stat: "&cDerrotas: &f$amount$"
  93. ratio-stat: "&cRazão de V/D: &f$amount$"
  94. amount-added: "&a+$amount$"
  95. amount-subtracted: "&c-$amount$"
  96.  
  97.  
  98. # Names of cards
  99. spades: "Espadas"
  100. hearts: "Corações"
  101. clubs: "Paus"
  102. diamonds: "Diamantes"
  103. jack: "Valete"
  104. queen: "Rainha"
  105. king:  "Rei"
  106. ace: "Às"
Add Comment
Please, Sign In to add comment