Class: BCDice::GameSystem::EdgeFlippers

Inherits:
Base
  • Object
show all
Defined in:
lib/bcdice/game_system/EdgeFlippers.rb

Defined Under Namespace

Classes: HSCommand

Constant Summary collapse

ID =

ゲームシステムの識別子

'EdgeFlippers'
NAME =

ゲームシステム名

'EDGE FLIPPERS'
SORT_KEY =

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

'えつしふりつはあす'
HELP_MESSAGE =

ダイスボットの使い方

"\u25A0 \u6C4E\u7528\u30B3\u30DE\u30F3\u30C9\n  xHD+ySD=t,t,t\n  \u4EBA\u9593\u30C0\u30A4\u30B9\u3068\u602A\u7570\u30C0\u30A4\u30B9\u3092\u30ED\u30FC\u30EB\u3057\u3066\u3001\u7279\u5B9A\u306E\u51FA\u76EE\u304C\u3042\u308B\u304B\u5224\u5B9A\u3057\u307E\u3059\u3002\n  x: \u4EBA\u9593\u30C0\u30A4\u30B9\u306E\u6570\n  y: \u602A\u7570\u30C0\u30A4\u30B9\u306E\u6570\n  t: \u5FC5\u8981\u306A\u51FA\u76EE\uFF08\u7701\u7565\u5316\uFF09\n\n\u25A0 \u62EE\u6297\u5224\u5B9A\n  xHD+ySD=Xi\n  \u4EBA\u9593\u30C0\u30A4\u30B9\u3068\u602A\u7570\u30C0\u30A4\u30B9\u3092\u30ED\u30FC\u30EB\u3057\u3066\u3001\u30BE\u30ED\u76EE\u304C\u5FC5\u8981\u6570\u3042\u308B\u304B\u5224\u5B9A\u3057\u307E\u3059\u3002\n  i: \u5FC5\u8981\u306A\u30BE\u30ED\u76EE\u306E\u500B\u6570\n\n\u25A0 \u5168\u529B\u5224\u5B9A\n  xHFD>=t\n  xSFD>=t\n  x: \u30C0\u30A4\u30B9\u306E\u6570\n  t: \u76EE\u6A19\u5024\uFF08\u7701\u7565\u664220\uFF09\n\n\u25A0 \u5B58\u5728\u5224\u5B9A\n  EXIST -> 2HD+2SD\n\n\u25A0 \u90FD\u5E02\u5224\u5B9A\n  xHCD -> xHD=1,2,3,4\n\n\u25A0 \u8D85\u5E38\u5224\u5B9A\n  nSPD -> nSD=7,8,9,10\n\n\u25A0 \u8853\u5F0F\u5224\u5B9A\n  TD\n\n\u25A0 \u30E9\u30F3\u30C0\u30E0\u8868\n  BAET\uFF1A\u3010\u4EBA\u9593\u3011\u306B\u3082\u3010\u602A\u7570\u3011\u306B\u3082\u5F71\u97FF\u306E\u3042\u308B\u5F8C\u907A\u75C7\n  HAET\uFF1A\u3010\u4EBA\u9593\u5BC4\u308A\u3011\u306E\u6642\u306B\u5F71\u97FF\u306E\u3042\u308B\u5F8C\u907A\u75C7\n  SAET\uFF1A\u3010\u602A\u7570\u5BC4\u308A\u3011\u306E\u6642\u306B\u5F71\u97FF\u306E\u3042\u308B\u5F8C\u907A\u75C7\n"

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 Base

#change_text, #check_result, command_pattern, #enable_debug, #enabled_d9?, #eval, eval, #grich_text, #initialize, prefixes_pattern, register_prefix, register_prefix_from_super_class, #sort_add_dice?, #sort_barabara_dice?

Methods included from Translate

#translate

Constructor Details

This class inherits a constructor from BCDice::Base

Instance Method Details

#eval_game_system_specific_command(command) ⇒ Object



53
54
55
# File 'lib/bcdice/game_system/EdgeFlippers.rb', line 53

def eval_game_system_specific_command(command)
  roll_hs(command) || roll_alias(command) || roll_fullpower(command) || roll_technical(command) || roll_tables(command, TABLES)
end