Class: BCDice::GameSystem::Ventangle_Korean
- Defined in:
- lib/bcdice/game_system/Ventangle_Korean.rb
Constant Summary collapse
- ID =
ゲームシステムの識別子
'Ventangle:Korean'- NAME =
ゲームシステム名
'벤탱글'- SORT_KEY =
ゲームシステム名の読みがな
'国際化:Korean:벤탱글'- HELP_MESSAGE =
ダイスボットの使い方
<<~MESSAGETEXT 기본 양식 VTn@s#f$g>=T n=주사위 개수(생략 시 2) s=스페셜치(생략 시 12) f=펌블치(생략 시 2) g=레벨 갭 판정치(생략 가능) T=목표치(생략 가능) 예시: VT 기본 스페셜치, 펌블치로 판정 VT@10#3 스페셜치 10, 펌블치 3으로 판정 VT3@10#3 어드밴티지 1점을 사용해 스페셜치 10, 펌블치 3 판정을 주사위 3개로 판정 VT>=5 기본 스페셜치, 펌블치로 목표치 5 판정 VT@10#3>=5 스페셜치 10, 펌블치 3으로 목표치 5 판정 VT@10#3$5>=5 스페셜치 10, 펌블치 3으로 목표치 5 판정. 이때 달성치가 목표치보다 5이상 큰 경우, 갭 보너스를 표시 VT3@10#3>=5 어드밴티지 1점을 사용해 스페셜치 10, 펌블치 3, 목표치 5 판정을 주사위 3개로 판정 VT3@10#3$4>=5 어드밴티지 1점을 사용해 스페셜치 10, 펌블치 3, 목표치 5 판정을 주사위 3개로 판정. 이때 달성치가 목표치보다 4이상 큰 경우, 갭 보너스를 표시 MESSAGETEXT
Constants inherited from Ventangle
BCDice::GameSystem::Ventangle::DEFAULT_DICE_NUM, BCDice::GameSystem::Ventangle::DEFAULT_FUMBLE_VALUE, BCDice::GameSystem::Ventangle::DEFAULT_SPECIAL_VALUE
Instance Attribute Summary
Attributes inherited from Base
#d66_sort_type, #default_cmp_op, #default_target_number, #randomizer, #reroll_dice_reroll_threshold, #round_type, #sides_implicit_d, #upper_dice_reroll_threshold
Instance Method Summary collapse
-
#initialize(command) ⇒ Ventangle_Korean
constructor
A new instance of Ventangle_Korean.
Methods inherited from Ventangle
#compare, #eval_game_system_specific_command
Methods inherited from Base
#change_text, #check_result, command_pattern, #enable_debug, #enabled_d9?, eval, #eval, #grich_text, prefixes_pattern, register_prefix, register_prefix_from_super_class, #sort_add_dice?, #sort_barabara_dice?
Methods included from Translate
Constructor Details
#initialize(command) ⇒ Ventangle_Korean
Returns a new instance of Ventangle_Korean.
35 36 37 38 |
# File 'lib/bcdice/game_system/Ventangle_Korean.rb', line 35 def initialize(command) super(command) @locale = :ko_kr end |