bcdice 3.13.0 → 3.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +45 -0
  3. data/i18n/Arianrhod/ko_kr.yml +3 -0
  4. data/i18n/Cthulhu/en_us.yml +11 -0
  5. data/i18n/CyberpunkRed/ja_jp.yml +389 -0
  6. data/i18n/FinalFantasyXIV/en_us.yml +4 -0
  7. data/i18n/FinalFantasyXIV/ja_jp.yml +4 -0
  8. data/i18n/FutariSousa/ja_jp.yml +158 -1
  9. data/i18n/KizunaBullet/ja_jp.yml +653 -0
  10. data/i18n/MonotoneMuseum/ja_jp.yml +246 -14
  11. data/i18n/SkynautsBouken/ja_jp.yml +114 -0
  12. data/i18n/TensaiGunshiNiNaro/ja_jp.yml +126 -0
  13. data/i18n/UnsungDuet/ja_jp.yml +62 -0
  14. data/i18n/UnsungDuet/ko_kr.yml +62 -0
  15. data/i18n/en_us.yml +5 -0
  16. data/lib/bcdice/dice_table/range_table.rb +24 -0
  17. data/lib/bcdice/game_system/Agnostos.rb +248 -0
  18. data/lib/bcdice/game_system/AniMalus.rb +99 -59
  19. data/lib/bcdice/game_system/Arianrhod_Korean.rb +30 -0
  20. data/lib/bcdice/game_system/BlackJacket.rb +244 -0
  21. data/lib/bcdice/game_system/ConvictorDrive.rb +5 -4
  22. data/lib/bcdice/game_system/Cthulhu_English.rb +59 -0
  23. data/lib/bcdice/game_system/CyberpunkRed.rb +14 -4
  24. data/lib/bcdice/game_system/DivineCharger.rb +841 -0
  25. data/lib/bcdice/game_system/FinalFantasyXIV.rb +115 -0
  26. data/lib/bcdice/game_system/FinalFantasyXIV_English.rb +39 -0
  27. data/lib/bcdice/game_system/FullFace.rb +39 -10
  28. data/lib/bcdice/game_system/FutariSousa.rb +88 -8
  29. data/lib/bcdice/game_system/Insane_Korean.rb +1 -1
  30. data/lib/bcdice/game_system/InvisibleLiar.rb +79 -0
  31. data/lib/bcdice/game_system/KizunaBullet.rb +240 -0
  32. data/lib/bcdice/game_system/KyokoShinshoku.rb +51 -8
  33. data/lib/bcdice/game_system/MonotoneMuseum.rb +14 -1
  34. data/lib/bcdice/game_system/NRR.rb +2 -2
  35. data/lib/bcdice/game_system/ShuumatsuBargainWars.rb +203 -0
  36. data/lib/bcdice/game_system/SkynautsBouken.rb +45 -130
  37. data/lib/bcdice/game_system/SwordWorld.rb +1 -1
  38. data/lib/bcdice/game_system/TensaiGunshiNiNaro.rb +228 -0
  39. data/lib/bcdice/game_system/TheOneRing2nd.rb +406 -0
  40. data/lib/bcdice/game_system/TheUnofficialHollowKnightRPG.rb +185 -0
  41. data/lib/bcdice/game_system/TrailOfCthulhu.rb +139 -0
  42. data/lib/bcdice/game_system/UnsungDuet.rb +17 -75
  43. data/lib/bcdice/game_system/UnsungDuet_Korean.rb +41 -0
  44. data/lib/bcdice/game_system/Utakaze.rb +55 -2
  45. data/lib/bcdice/game_system/Warhammer4.rb +124 -3
  46. data/lib/bcdice/game_system/Yotabana.rb +62 -0
  47. data/lib/bcdice/game_system/cyberpunk_red/tables.rb +111 -473
  48. data/lib/bcdice/game_system/kizuna_bullet/tables.rb +171 -0
  49. data/lib/bcdice/game_system.rb +16 -0
  50. data/lib/bcdice/version.rb +1 -1
  51. metadata +30 -2
@@ -0,0 +1,171 @@
1
+ # frozen_string_literal: true
2
+
3
+ module BCDice
4
+ module GameSystem
5
+ class KizunaBullet < Base
6
+ class RollTwiceRandomizerTable
7
+ def initialize(locale:, a_table:, b_table:)
8
+ @locale = locale
9
+ @a_table = a_table
10
+ @b_table = b_table
11
+ end
12
+
13
+ def roll(randomizer)
14
+ results = []
15
+
16
+ result_a = @a_table.roll(randomizer).to_s
17
+ results.push(result_a)
18
+
19
+ result_b = @b_table.roll(randomizer).to_s
20
+ results.push(result_b)
21
+
22
+ return results.join("\n")
23
+ end
24
+ end
25
+
26
+ class Roll4TimesRandomizerTable
27
+ def initialize(locale:, a_table:, b_table:, c_table:, d_table:)
28
+ @locale = locale
29
+ @a_table = a_table
30
+ @b_table = b_table
31
+ @c_table = c_table
32
+ @d_table = d_table
33
+ end
34
+
35
+ def roll(randomizer)
36
+ results = []
37
+
38
+ result_a = @a_table.roll(randomizer).to_s
39
+ results.push(result_a)
40
+
41
+ result_b = @b_table.roll(randomizer).to_s
42
+ results.push(result_b)
43
+
44
+ result_c = @c_table.roll(randomizer).to_s
45
+ results.push(result_c)
46
+
47
+ result_d = @d_table.roll(randomizer).to_s
48
+ results.push(result_d)
49
+
50
+ return results.join("\n")
51
+ end
52
+ end
53
+
54
+ class << self
55
+ private
56
+
57
+ def translate_tables(locale)
58
+ ordinary_days_place_table = DiceTable::Table.from_i18n("KizunaBullet.table.OP", locale)
59
+ ordinary_days_content_table = DiceTable::Table.from_i18n("KizunaBullet.table.OC", locale)
60
+ ordinary_days_work_place_table = DiceTable::Table.from_i18n("KizunaBullet.table.OWP", locale)
61
+ ordinary_days_work_content_table = DiceTable::Table.from_i18n("KizunaBullet.table.OWC", locale)
62
+ ordinary_days_holiday_place_table = DiceTable::Table.from_i18n("KizunaBullet.table.OHP", locale)
63
+ ordinary_days_holiday_content_table = DiceTable::Table.from_i18n("KizunaBullet.table.OHC", locale)
64
+ ordinary_days_trip_place_table = DiceTable::Table.from_i18n("KizunaBullet.table.OTP", locale)
65
+ ordinary_days_trip_content_table = DiceTable::Table.from_i18n("KizunaBullet.table.OTC", locale)
66
+ encounter_place_table = DiceTable::Table.from_i18n("KizunaBullet.table.EP", locale)
67
+ encounter_order_table = DiceTable::Table.from_i18n("KizunaBullet.table.EO", locale)
68
+ encounter_first_table = DiceTable::Table.from_i18n("KizunaBullet.table.EF", locale)
69
+ encounter_acquaintance_table = DiceTable::Table.from_i18n("KizunaBullet.table.EA", locale)
70
+ encounter_end_table = DiceTable::Table.from_i18n("KizunaBullet.table.EE", locale)
71
+ communication_place_table = DiceTable::Table.from_i18n("KizunaBullet.table.CP", locale)
72
+ communication_content_table = DiceTable::Table.from_i18n("KizunaBullet.table.CC", locale)
73
+ investigation_basic_table = DiceTable::D66Table.from_i18n("KizunaBullet.table.IB", locale)
74
+ investigation_dynamic_table = DiceTable::D66Table.from_i18n("KizunaBullet.table.ID", locale)
75
+ return {
76
+ "OP" => ordinary_days_place_table,
77
+ "OC" => ordinary_days_content_table,
78
+ "OPC" => RollTwiceRandomizerTable.new(
79
+ locale: locale,
80
+ a_table: ordinary_days_place_table,
81
+ b_table: ordinary_days_content_table
82
+ ).freeze,
83
+ "OWP" => ordinary_days_work_place_table,
84
+ "OWC" => ordinary_days_work_content_table,
85
+ "OWPC" => RollTwiceRandomizerTable.new(
86
+ locale: locale,
87
+ a_table: ordinary_days_work_place_table,
88
+ b_table: ordinary_days_work_content_table
89
+ ).freeze,
90
+ "OHP" => ordinary_days_holiday_place_table,
91
+ "OHC" => ordinary_days_holiday_content_table,
92
+ "OHPC" => RollTwiceRandomizerTable.new(
93
+ locale: locale,
94
+ a_table: ordinary_days_holiday_place_table,
95
+ b_table: ordinary_days_holiday_content_table
96
+ ).freeze,
97
+ "OTP" => ordinary_days_trip_place_table,
98
+ "OTC" => ordinary_days_trip_content_table,
99
+ "OTPC" => RollTwiceRandomizerTable.new(
100
+ locale: locale,
101
+ a_table: ordinary_days_trip_place_table,
102
+ b_table: ordinary_days_trip_content_table
103
+ ).freeze,
104
+ "TT" => DiceTable::D66Table.from_i18n("KizunaBullet.table.TT", locale),
105
+ "TTI" => DiceTable::D66Table.from_i18n("KizunaBullet.table.TTI", locale),
106
+ "TTC" => DiceTable::D66Table.from_i18n("KizunaBullet.table.TTC", locale),
107
+ "TTH" => DiceTable::D66Table.from_i18n("KizunaBullet.table.TTH", locale),
108
+ "EP" => encounter_place_table,
109
+ "EO" => encounter_order_table,
110
+ "EF" => encounter_first_table,
111
+ "EA" => encounter_acquaintance_table,
112
+ "EE" => encounter_end_table,
113
+ "EFA" => Roll4TimesRandomizerTable.new(
114
+ locale: locale,
115
+ a_table: encounter_place_table,
116
+ b_table: encounter_order_table,
117
+ c_table: encounter_first_table,
118
+ d_table: encounter_end_table
119
+ ).freeze,
120
+ "EAA" => Roll4TimesRandomizerTable.new(
121
+ locale: locale,
122
+ a_table: encounter_place_table,
123
+ b_table: encounter_order_table,
124
+ c_table: encounter_acquaintance_table,
125
+ d_table: encounter_end_table
126
+ ).freeze,
127
+ "CP" => communication_place_table,
128
+ "CC" => communication_content_table,
129
+ "CPC" => RollTwiceRandomizerTable.new(
130
+ locale: locale,
131
+ a_table: communication_place_table,
132
+ b_table: communication_content_table
133
+ ).freeze,
134
+ "IB" => investigation_basic_table,
135
+ "ID" => investigation_dynamic_table,
136
+ "IBD" => RollTwiceRandomizerTable.new(
137
+ locale: locale,
138
+ a_table: investigation_basic_table,
139
+ b_table: investigation_dynamic_table
140
+ ).freeze,
141
+ "HA" => DiceTable::Table.from_i18n("KizunaBullet.table.HA", locale),
142
+ "NI1" => DiceTable::Table.from_i18n("KizunaBullet.table.NI1", locale),
143
+ "NI2" => DiceTable::Table.from_i18n("KizunaBullet.table.NI2", locale),
144
+ "NI3" => DiceTable::Table.from_i18n("KizunaBullet.table.NI3", locale),
145
+ "NI4" => DiceTable::Table.from_i18n("KizunaBullet.table.NI4", locale),
146
+ "NI5" => DiceTable::Table.from_i18n("KizunaBullet.table.NI5", locale),
147
+ "NI6" => DiceTable::Table.from_i18n("KizunaBullet.table.NI6", locale),
148
+ "NT1" => DiceTable::Table.from_i18n("KizunaBullet.table.NT1", locale),
149
+ "NT2" => DiceTable::Table.from_i18n("KizunaBullet.table.NT2", locale),
150
+ "NT3" => DiceTable::Table.from_i18n("KizunaBullet.table.NT3", locale),
151
+ "NT4" => DiceTable::Table.from_i18n("KizunaBullet.table.NT4", locale),
152
+ "NT5" => DiceTable::Table.from_i18n("KizunaBullet.table.NT5", locale),
153
+ "NT6" => DiceTable::Table.from_i18n("KizunaBullet.table.NT6", locale),
154
+ "HH1" => DiceTable::Table.from_i18n("KizunaBullet.table.HH1", locale),
155
+ "HH2" => DiceTable::Table.from_i18n("KizunaBullet.table.HH2", locale),
156
+ "HH3" => DiceTable::Table.from_i18n("KizunaBullet.table.HH3", locale),
157
+ "HH4" => DiceTable::Table.from_i18n("KizunaBullet.table.HH4", locale),
158
+ "HH5" => DiceTable::Table.from_i18n("KizunaBullet.table.HH5", locale),
159
+ "HH6" => DiceTable::Table.from_i18n("KizunaBullet.table.HH6", locale),
160
+ "HC1" => DiceTable::Table.from_i18n("KizunaBullet.table.HC1", locale),
161
+ "HC2" => DiceTable::Table.from_i18n("KizunaBullet.table.HC2", locale),
162
+ "HC3" => DiceTable::Table.from_i18n("KizunaBullet.table.HC3", locale),
163
+ "HC4" => DiceTable::Table.from_i18n("KizunaBullet.table.HC4", locale),
164
+ "HC5" => DiceTable::Table.from_i18n("KizunaBullet.table.HC5", locale),
165
+ "HC6" => DiceTable::Table.from_i18n("KizunaBullet.table.HC6", locale),
166
+ }.freeze
167
+ end
168
+ end
169
+ end
170
+ end
171
+ end
@@ -2,6 +2,7 @@
2
2
 
3
3
  require "bcdice/game_system/AFF2e"
4
4
  require "bcdice/game_system/AceKillerGene"
5
+ require "bcdice/game_system/Agnostos"
5
6
  require "bcdice/game_system/Ainecadette"
6
7
  require "bcdice/game_system/Airgetlamh"
7
8
  require "bcdice/game_system/AlchemiaStruggle"
@@ -15,6 +16,7 @@ require "bcdice/game_system/AnimaAnimus"
15
16
  require "bcdice/game_system/AniMalus"
16
17
  require "bcdice/game_system/Aoharubaan"
17
18
  require "bcdice/game_system/Arianrhod"
19
+ require "bcdice/game_system/Arianrhod_Korean"
18
20
  require "bcdice/game_system/ArknightsFan"
19
21
  require "bcdice/game_system/ArsMagica"
20
22
  require "bcdice/game_system/AssaultEngine"
@@ -29,6 +31,7 @@ require "bcdice/game_system/BeastBindTrinity"
29
31
  require "bcdice/game_system/BeginningIdol"
30
32
  require "bcdice/game_system/BeginningIdol_Korean"
31
33
  require "bcdice/game_system/BeginningIdol2022"
34
+ require "bcdice/game_system/BlackJacket"
32
35
  require "bcdice/game_system/BladeOfArcana"
33
36
  require "bcdice/game_system/BlindMythos"
34
37
  require "bcdice/game_system/BloodCrusade"
@@ -50,6 +53,7 @@ require "bcdice/game_system/Cthulhu7th_ChineseTraditional"
50
53
  require "bcdice/game_system/Cthulhu7th_Korean"
51
54
  require "bcdice/game_system/CthulhuTech"
52
55
  require "bcdice/game_system/Cthulhu_ChineseTraditional"
56
+ require "bcdice/game_system/Cthulhu_English"
53
57
  require "bcdice/game_system/Cthulhu_Korean"
54
58
  require "bcdice/game_system/Cthulhu_SimplifiedChinese"
55
59
  require "bcdice/game_system/CyberpunkRed"
@@ -64,6 +68,7 @@ require "bcdice/game_system/DetatokoSaga"
64
68
  require "bcdice/game_system/DetatokoSaga_Korean"
65
69
  require "bcdice/game_system/DiceBot"
66
70
  require "bcdice/game_system/DiceOfTheDead"
71
+ require "bcdice/game_system/DivineCharger"
67
72
  require "bcdice/game_system/DoubleCross"
68
73
  require "bcdice/game_system/DoubleCross_Korean"
69
74
  require "bcdice/game_system/Dracurouge"
@@ -116,6 +121,7 @@ require "bcdice/game_system/InfiniteBabeL"
116
121
  require "bcdice/game_system/InfiniteFantasia"
117
122
  require "bcdice/game_system/Insane"
118
123
  require "bcdice/game_system/Insane_Korean"
124
+ require "bcdice/game_system/InvisibleLiar"
119
125
  require "bcdice/game_system/Irisbane"
120
126
  require "bcdice/game_system/IthaWenUa"
121
127
  require "bcdice/game_system/JamesBond"
@@ -129,6 +135,7 @@ require "bcdice/game_system/Karukami"
129
135
  require "bcdice/game_system/KemonoNoMori"
130
136
  require "bcdice/game_system/KillDeathBusiness"
131
137
  require "bcdice/game_system/KillDeathBusiness_Korean"
138
+ require "bcdice/game_system/KizunaBullet"
132
139
  require "bcdice/game_system/KurayamiCrying"
133
140
  require "bcdice/game_system/Kutulu"
134
141
  require "bcdice/game_system/KyokoShinshoku"
@@ -207,6 +214,7 @@ require "bcdice/game_system/ShinkuuGakuen"
207
214
  require "bcdice/game_system/ShinobiGami"
208
215
  require "bcdice/game_system/Shiranui"
209
216
  require "bcdice/game_system/ShoujoTenrankai"
217
+ require "bcdice/game_system/ShuumatsuBargainWars"
210
218
  require "bcdice/game_system/ShuumatsuKikou"
211
219
  require "bcdice/game_system/Siren"
212
220
  require "bcdice/game_system/Skynauts"
@@ -228,7 +236,10 @@ require "bcdice/game_system/SwordWorld2_0_SimplifiedChinese"
228
236
  require "bcdice/game_system/SwordWorld2_5_SimplifiedChinese"
229
237
  require "bcdice/game_system/TalesFromTheLoop"
230
238
  require "bcdice/game_system/TenkaRyouran"
239
+ require "bcdice/game_system/TensaiGunshiNiNaro"
240
+ require "bcdice/game_system/TheOneRing2nd"
231
241
  require "bcdice/game_system/TherapieSein"
242
+ require "bcdice/game_system/TheUnofficialHollowKnightRPG"
232
243
  require "bcdice/game_system/TokumeiTenkousei"
233
244
  require "bcdice/game_system/TokyoGhostResearch"
234
245
  require "bcdice/game_system/TokyoNova"
@@ -236,10 +247,12 @@ require "bcdice/game_system/Torg"
236
247
  require "bcdice/game_system/Torg1_5"
237
248
  require "bcdice/game_system/TorgEternity"
238
249
  require "bcdice/game_system/ToshiakiHolyGrailWar"
250
+ require "bcdice/game_system/TrailOfCthulhu"
239
251
  require "bcdice/game_system/TrinitySeven"
240
252
  require "bcdice/game_system/TunnelsAndTrolls"
241
253
  require "bcdice/game_system/TwilightGunsmoke"
242
254
  require "bcdice/game_system/UnsungDuet"
255
+ require "bcdice/game_system/UnsungDuet_Korean"
243
256
  require "bcdice/game_system/Utakaze"
244
257
  require "bcdice/game_system/VampireTheMasquerade5th"
245
258
  require "bcdice/game_system/Ventangle"
@@ -256,5 +269,8 @@ require "bcdice/game_system/WorldsEndFrontline"
256
269
  require "bcdice/game_system/YankeeYogSothoth"
257
270
  require "bcdice/game_system/YearZeroEngine"
258
271
  require "bcdice/game_system/Yggdrasill"
272
+ require "bcdice/game_system/Yotabana"
259
273
  require "bcdice/game_system/ZettaiReido"
260
274
  require "bcdice/game_system/ZombiLine"
275
+ require "bcdice/game_system/FinalFantasyXIV"
276
+ require "bcdice/game_system/FinalFantasyXIV_English"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BCDice
4
- VERSION = "3.13.0"
4
+ VERSION = "3.14.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bcdice
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.13.0
4
+ version: 3.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SAKATA Sinji
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-08 00:00:00.000000000 Z
11
+ date: 2024-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -51,12 +51,15 @@ files:
51
51
  - i18n/Amadeus/ja_jp.yml
52
52
  - i18n/Amadeus/ko_kr.yml
53
53
  - i18n/Arianrhod/ja_jp.yml
54
+ - i18n/Arianrhod/ko_kr.yml
54
55
  - i18n/BeginningIdol/ja_jp.yml
55
56
  - i18n/BeginningIdol/ko_kr.yml
57
+ - i18n/Cthulhu/en_us.yml
56
58
  - i18n/Cthulhu/ja_jp.yml
57
59
  - i18n/Cthulhu/ko_kr.yml
58
60
  - i18n/Cthulhu/zh_hans.yml
59
61
  - i18n/Cthulhu/zh_hant.yml
62
+ - i18n/CyberpunkRed/ja_jp.yml
60
63
  - i18n/DetatokoSaga/ja_jp.yml
61
64
  - i18n/DetatokoSaga/ko_kr.yml
62
65
  - i18n/DoubleCross/ja_jp.yml
@@ -66,6 +69,8 @@ files:
66
69
  - i18n/Emoklore/ja_jp.yml
67
70
  - i18n/Fiasco/ja_jp.yml
68
71
  - i18n/Fiasco/ko_kr.yml
72
+ - i18n/FinalFantasyXIV/en_us.yml
73
+ - i18n/FinalFantasyXIV/ja_jp.yml
69
74
  - i18n/FutariSousa/ja_jp.yml
70
75
  - i18n/FutariSousa/ko_kr.yml
71
76
  - i18n/Insane/ja_jp.yml
@@ -74,6 +79,7 @@ files:
74
79
  - i18n/Kamigakari/ko_kr.yml
75
80
  - i18n/KillDeathBusiness/ja_jp.yml
76
81
  - i18n/KillDeathBusiness/ko_kr.yml
82
+ - i18n/KizunaBullet/ja_jp.yml
77
83
  - i18n/LogHorizon/ja_jp.yml
78
84
  - i18n/LogHorizon/ko_kr.yml
79
85
  - i18n/MagicaLogia/ja_jp.yml
@@ -84,6 +90,7 @@ files:
84
90
  - i18n/Nechronica/ja_jp.yml
85
91
  - i18n/Nechronica/ko_kr.yml
86
92
  - i18n/NinjaSlayer2/ja_jp.yml
93
+ - i18n/SkynautsBouken/ja_jp.yml
87
94
  - i18n/StellarKnights/ja_jp.yml
88
95
  - i18n/StellarKnights/ko_kr.yml
89
96
  - i18n/StratoShout/ja_jp.yml
@@ -94,6 +101,10 @@ files:
94
101
  - i18n/SwordWorld2_0/zh_hans.yml
95
102
  - i18n/SwordWorld2_5/ja_jp.yml
96
103
  - i18n/SwordWorld2_5/zh_hans.yml
104
+ - i18n/TensaiGunshiNiNaro/ja_jp.yml
105
+ - i18n/UnsungDuet/ja_jp.yml
106
+ - i18n/UnsungDuet/ko_kr.yml
107
+ - i18n/en_us.yml
97
108
  - i18n/ja_jp.yml
98
109
  - i18n/ko_kr.yml
99
110
  - i18n/zh_hans.yml
@@ -154,6 +165,7 @@ files:
154
165
  - lib/bcdice/game_system.rb
155
166
  - lib/bcdice/game_system/AFF2e.rb
156
167
  - lib/bcdice/game_system/AceKillerGene.rb
168
+ - lib/bcdice/game_system/Agnostos.rb
157
169
  - lib/bcdice/game_system/Ainecadette.rb
158
170
  - lib/bcdice/game_system/Airgetlamh.rb
159
171
  - lib/bcdice/game_system/AlchemiaStruggle.rb
@@ -167,6 +179,7 @@ files:
167
179
  - lib/bcdice/game_system/AnimaAnimus.rb
168
180
  - lib/bcdice/game_system/Aoharubaan.rb
169
181
  - lib/bcdice/game_system/Arianrhod.rb
182
+ - lib/bcdice/game_system/Arianrhod_Korean.rb
170
183
  - lib/bcdice/game_system/ArknightsFan.rb
171
184
  - lib/bcdice/game_system/ArsMagica.rb
172
185
  - lib/bcdice/game_system/AssaultEngine.rb
@@ -181,6 +194,7 @@ files:
181
194
  - lib/bcdice/game_system/BeginningIdol.rb
182
195
  - lib/bcdice/game_system/BeginningIdol2022.rb
183
196
  - lib/bcdice/game_system/BeginningIdol_Korean.rb
197
+ - lib/bcdice/game_system/BlackJacket.rb
184
198
  - lib/bcdice/game_system/BladeOfArcana.rb
185
199
  - lib/bcdice/game_system/BlindMythos.rb
186
200
  - lib/bcdice/game_system/BloodCrusade.rb
@@ -202,6 +216,7 @@ files:
202
216
  - lib/bcdice/game_system/Cthulhu7th_Korean.rb
203
217
  - lib/bcdice/game_system/CthulhuTech.rb
204
218
  - lib/bcdice/game_system/Cthulhu_ChineseTraditional.rb
219
+ - lib/bcdice/game_system/Cthulhu_English.rb
205
220
  - lib/bcdice/game_system/Cthulhu_Korean.rb
206
221
  - lib/bcdice/game_system/Cthulhu_SimplifiedChinese.rb
207
222
  - lib/bcdice/game_system/CyberpunkRed.rb
@@ -216,6 +231,7 @@ files:
216
231
  - lib/bcdice/game_system/DetatokoSaga_Korean.rb
217
232
  - lib/bcdice/game_system/DiceBot.rb
218
233
  - lib/bcdice/game_system/DiceOfTheDead.rb
234
+ - lib/bcdice/game_system/DivineCharger.rb
219
235
  - lib/bcdice/game_system/DoubleCross.rb
220
236
  - lib/bcdice/game_system/DoubleCross_Korean.rb
221
237
  - lib/bcdice/game_system/Dracurouge.rb
@@ -236,6 +252,8 @@ files:
236
252
  - lib/bcdice/game_system/Fiasco.rb
237
253
  - lib/bcdice/game_system/Fiasco_Korean.rb
238
254
  - lib/bcdice/game_system/FilledWith.rb
255
+ - lib/bcdice/game_system/FinalFantasyXIV.rb
256
+ - lib/bcdice/game_system/FinalFantasyXIV_English.rb
239
257
  - lib/bcdice/game_system/FullFace.rb
240
258
  - lib/bcdice/game_system/FullMetalPanic.rb
241
259
  - lib/bcdice/game_system/FutariSousa.rb
@@ -268,6 +286,7 @@ files:
268
286
  - lib/bcdice/game_system/InfiniteFantasia.rb
269
287
  - lib/bcdice/game_system/Insane.rb
270
288
  - lib/bcdice/game_system/Insane_Korean.rb
289
+ - lib/bcdice/game_system/InvisibleLiar.rb
271
290
  - lib/bcdice/game_system/Irisbane.rb
272
291
  - lib/bcdice/game_system/IthaWenUa.rb
273
292
  - lib/bcdice/game_system/JamesBond.rb
@@ -281,6 +300,7 @@ files:
281
300
  - lib/bcdice/game_system/KemonoNoMori.rb
282
301
  - lib/bcdice/game_system/KillDeathBusiness.rb
283
302
  - lib/bcdice/game_system/KillDeathBusiness_Korean.rb
303
+ - lib/bcdice/game_system/KizunaBullet.rb
284
304
  - lib/bcdice/game_system/KurayamiCrying.rb
285
305
  - lib/bcdice/game_system/Kutulu.rb
286
306
  - lib/bcdice/game_system/KyokoShinshoku.rb
@@ -359,6 +379,7 @@ files:
359
379
  - lib/bcdice/game_system/ShinobiGami.rb
360
380
  - lib/bcdice/game_system/Shiranui.rb
361
381
  - lib/bcdice/game_system/ShoujoTenrankai.rb
382
+ - lib/bcdice/game_system/ShuumatsuBargainWars.rb
362
383
  - lib/bcdice/game_system/ShuumatsuKikou.rb
363
384
  - lib/bcdice/game_system/Siren.rb
364
385
  - lib/bcdice/game_system/Skynauts.rb
@@ -380,6 +401,9 @@ files:
380
401
  - lib/bcdice/game_system/SwordWorld_SimplifiedChinese.rb
381
402
  - lib/bcdice/game_system/TalesFromTheLoop.rb
382
403
  - lib/bcdice/game_system/TenkaRyouran.rb
404
+ - lib/bcdice/game_system/TensaiGunshiNiNaro.rb
405
+ - lib/bcdice/game_system/TheOneRing2nd.rb
406
+ - lib/bcdice/game_system/TheUnofficialHollowKnightRPG.rb
383
407
  - lib/bcdice/game_system/TherapieSein.rb
384
408
  - lib/bcdice/game_system/TokumeiTenkousei.rb
385
409
  - lib/bcdice/game_system/TokyoGhostResearch.rb
@@ -388,10 +412,12 @@ files:
388
412
  - lib/bcdice/game_system/Torg1_5.rb
389
413
  - lib/bcdice/game_system/TorgEternity.rb
390
414
  - lib/bcdice/game_system/ToshiakiHolyGrailWar.rb
415
+ - lib/bcdice/game_system/TrailOfCthulhu.rb
391
416
  - lib/bcdice/game_system/TrinitySeven.rb
392
417
  - lib/bcdice/game_system/TunnelsAndTrolls.rb
393
418
  - lib/bcdice/game_system/TwilightGunsmoke.rb
394
419
  - lib/bcdice/game_system/UnsungDuet.rb
420
+ - lib/bcdice/game_system/UnsungDuet_Korean.rb
395
421
  - lib/bcdice/game_system/Utakaze.rb
396
422
  - lib/bcdice/game_system/VampireTheMasquerade5th.rb
397
423
  - lib/bcdice/game_system/Ventangle.rb
@@ -408,6 +434,7 @@ files:
408
434
  - lib/bcdice/game_system/YankeeYogSothoth.rb
409
435
  - lib/bcdice/game_system/YearZeroEngine.rb
410
436
  - lib/bcdice/game_system/Yggdrasill.rb
437
+ - lib/bcdice/game_system/Yotabana.rb
411
438
  - lib/bcdice/game_system/ZettaiReido.rb
412
439
  - lib/bcdice/game_system/ZombiLine.rb
413
440
  - lib/bcdice/game_system/beginning_idol/accessories_table.rb
@@ -431,6 +458,7 @@ files:
431
458
  - lib/bcdice/game_system/filled_with/event_tables.rb
432
459
  - lib/bcdice/game_system/filled_with/lot_tables.rb
433
460
  - lib/bcdice/game_system/filled_with/tresure_tables.rb
461
+ - lib/bcdice/game_system/kizuna_bullet/tables.rb
434
462
  - lib/bcdice/game_system/meikyu_kingdom/item_table.rb
435
463
  - lib/bcdice/game_system/meikyu_kingdom/kingdom_name_table.rb
436
464
  - lib/bcdice/game_system/meikyu_kingdom/landscape_table.rb