Class: BCDice::GameSystem::FinalFantasyXIV_English

Inherits:
FinalFantasyXIV show all
Defined in:
lib/bcdice/game_system/FinalFantasyXIV_English.rb

Constant Summary collapse

ID =

ゲームシステムの識別子

"FinalFantasyXIV:English"
NAME =

ゲームシステム名

"FINAL FANTSY XIV TTRPG(English)"
SORT_KEY =

ゲームシステム名の読みがな

"国際化:English:FINAL FANTASY XIV TTRPG"
HELP_MESSAGE =
<<~TEXT
  Ability Checks nAB+m>=CR
    Perform a d20 ability check. If a die count is specified, the highest roll is adopted.
    n: die count(optional)
    m: modifiy number(optional)
    CR: Challenge Ratting(optional)
    Base Effect only, Direct hit and Critical are automatically evaluated.
    Example: AB, AB+5, AB+5>=14, 2AB+5>=14
  Making checks nDC+m>=CR
    Same as ability check.
    Success and Failure ar automatically evaluated.
TEXT

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

Methods inherited from FinalFantasyXIV

#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

#translate

Constructor Details

#initialize(command) ⇒ FinalFantasyXIV_English

Returns a new instance of FinalFantasyXIV_English.



32
33
34
35
36
# File 'lib/bcdice/game_system/FinalFantasyXIV_English.rb', line 32

def initialize(command)
  super(command)

  @locale = :en_us
end