Class: BCDice::GameSystem::SwordWorld::RatingParsed
- Inherits:
-
Object
- Object
- BCDice::GameSystem::SwordWorld::RatingParsed
- Defined in:
- lib/bcdice/game_system/sword_world/rating_parsed.rb
Instance Attribute Summary collapse
- #critical ⇒ Integer
- #first_modify ⇒ Integer
- #first_modify_ssp ⇒ Integer
- #first_to ⇒ Integer
- #greatest_fortune ⇒ Boolean
- #kept_modify ⇒ Integer
- #modifier ⇒ Integer
- #modifier_after_half ⇒ Integer?
- #modifier_after_one_and_a_half ⇒ Integer?
- #rate ⇒ Integer
- #rateup ⇒ Integer
- #semi_fixed_val ⇒ Integer
- #tmp_fixed_val ⇒ Integer
Instance Method Summary collapse
- #half ⇒ Boolean
- #infinite_roll? ⇒ Boolean
-
#initialize(rate, modifier) ⇒ RatingParsed
constructor
A new instance of RatingParsed.
- #min_critical ⇒ Integer
- #one_and_a_half ⇒ Boolean
- #to_s ⇒ String
Constructor Details
#initialize(rate, modifier) ⇒ RatingParsed
Returns a new instance of RatingParsed.
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 46 def initialize(rate, modifier) @rate = rate @modifier = modifier @critical = 13 @kept_modify = 0 @first_to = 0 @first_modify = 0 @first_modify_ssp = 0 @greatest_fortune = false @rateup = 0 @semi_fixed_val = 0 @tmp_fixed_val = 0 @modifier_after_half = nil @modifier_after_one_and_a_half = nil end |
Instance Attribute Details
#critical ⇒ Integer
11 12 13 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 11 def critical @critical end |
#first_modify ⇒ Integer
20 21 22 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 20 def first_modify @first_modify end |
#first_modify_ssp ⇒ Integer
23 24 25 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 23 def first_modify_ssp @first_modify_ssp end |
#first_to ⇒ Integer
17 18 19 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 17 def first_to @first_to end |
#greatest_fortune ⇒ Boolean
29 30 31 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 29 def greatest_fortune @greatest_fortune end |
#kept_modify ⇒ Integer
14 15 16 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 14 def kept_modify @kept_modify end |
#modifier ⇒ Integer
38 39 40 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 38 def modifier @modifier end |
#modifier_after_half ⇒ Integer?
41 42 43 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 41 def modifier_after_half @modifier_after_half end |
#modifier_after_one_and_a_half ⇒ Integer?
44 45 46 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 44 def modifier_after_one_and_a_half @modifier_after_one_and_a_half end |
#rate ⇒ Integer
8 9 10 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 8 def rate @rate end |
#rateup ⇒ Integer
26 27 28 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 26 def rateup @rateup end |
#semi_fixed_val ⇒ Integer
32 33 34 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 32 def semi_fixed_val @semi_fixed_val end |
#tmp_fixed_val ⇒ Integer
35 36 37 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 35 def tmp_fixed_val @tmp_fixed_val end |
Instance Method Details
#half ⇒ Boolean
63 64 65 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 63 def half return !@modifier_after_half.nil? end |
#infinite_roll? ⇒ Boolean
82 83 84 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 82 def infinite_roll? return critical < min_critical end |
#min_critical ⇒ Integer
73 74 75 76 77 78 79 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 73 def min_critical if @semi_fixed_val <= 1 return 3 else return (@semi_fixed_val + @kept_modify + 2).clamp(3, 13) end end |
#one_and_a_half ⇒ Boolean
68 69 70 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 68 def one_and_a_half return !@modifier_after_one_and_a_half.nil? end |
#to_s ⇒ String
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/bcdice/game_system/sword_world/rating_parsed.rb', line 87 def to_s() output = "KeyNo.#{@rate}" output += "c[#{critical}]" if critical < 13 output += "m[#{Format.modifier(first_modify)}]" if first_modify != 0 output += "m[~#{Format.modifier(first_modify_ssp)}]" if first_modify_ssp != 0 output += "m[#{first_to}]" if first_to != 0 output += "r[#{rateup}]" if rateup != 0 output += "gf" if @greatest_fortune output += "sf[#{semi_fixed_val}]" if semi_fixed_val != 0 output += "tf[#{tmp_fixed_val}]" if tmp_fixed_val != 0 output += "a[#{Format.modifier(kept_modify)}]" if kept_modify != 0 if @modifier != 0 output += Format.modifier(@modifier) end return output end |