Class: BCDice::GameSystem::Illusio

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

Constant Summary collapse

ID =

ゲームシステムの識別子

'Illusio'
NAME =

ゲームシステム名

'晃天のイルージオ'
SORT_KEY =

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

'こうてんのいるうしお'
HELP_MESSAGE =

ダイスボットの使い方

<<~MESSAGETEXT
  判定:[n]IL(BNo)[P]

  []内のコマンドは省略可能。
  「n」でダイス数を指定。省略時は「1」。
  (BNo)でブロックナンバーを指定。「236」のように記述。順不同可。
  コマンド末に「P」を指定で、(BNo)のパリィ判定。(一応、複数指定可)

  【書式例】
  ・6IL236 → 6dでブロックナンバー「2,3,6」の判定。
  ・IL4512 → 1dでブロックナンバー「1,2,4,5」の判定。
  ・2IL1P → 2dでパリィナンバー「1」の判定。
MESSAGETEXT

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, prefixes_pattern, register_prefix, register_prefix_from_super_class, #sort_add_dice?, #sort_barabara_dice?

Methods included from Translate

#translate

Constructor Details

#initialize(command) ⇒ Illusio

Returns a new instance of Illusio.



30
31
32
33
# File 'lib/bcdice/game_system/Illusio.rb', line 30

def initialize(command)
  super(command)
  @sort_add_dice = true # ダイスのソート有
end

Instance Method Details

#check_roll(dice_count, block_no, is_parry) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/bcdice/game_system/Illusio.rb', line 50

def check_roll(dice_count, block_no, is_parry)
  dice_array = @randomizer.roll_barabara(dice_count, 6).sort
  dice_text = dice_array.join(',')

  result_array = []
  success = 0
  dice_array.each do |i|
    if block_no.count(i) > 0
      result_array.push("×")
    else
      result_array.push(i)
      success += 1
    end
  end

  block_text = block_no.join(',')
  block_text2 = is_parry ? "Parry" : "Block"
  result_text = result_array.join(',')

  result = "#{dice_count}D6(#{block_text2}:#{block_text}) > #{dice_text}#{result_text}"
  return "#{result}成功数:#{success}" unless is_parry

  if success < dice_count
    "#{result}パリィ成立! 次の非ダメージ2倍。"
  else
    "#{result}成功数:#{success} パリィ失敗"
  end
end

#eval_game_system_specific_command(command) ⇒ Object



39
40
41
42
43
44
45
46
47
48
# File 'lib/bcdice/game_system/Illusio.rb', line 39

def eval_game_system_specific_command(command)
  m = command.match(/(\d+)?IL([1-6]{0,6})(P)?$/i)
  return nil unless m

  dice_count = (m[1] || 1).to_i
  block_no = (m[2] || "").each_char.map(&:to_i).uniq.sort
  is_parry = !m[3].nil?

  return check_roll(dice_count, block_no, is_parry)
end