bcdice 3.9.0 → 3.11.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +35 -1
- data/README.md +0 -1
- data/lib/bcdice/game_system/CastleInGray.rb +6 -4
- data/lib/bcdice/game_system/DemonSpike.rb +89 -0
- data/lib/bcdice/game_system/Emoklore.rb +3 -3
- data/lib/bcdice/game_system/GundamSentinel.rb +377 -0
- data/lib/bcdice/game_system/HeroScale.rb +837 -0
- data/lib/bcdice/game_system/KemonoNoMori.rb +133 -1
- data/lib/bcdice/game_system/MamonoScramble.rb +98 -0
- data/lib/bcdice/game_system/MonotoneMuseum.rb +4 -2
- data/lib/bcdice/game_system/NSSQ.rb +24 -11
- data/lib/bcdice/game_system/RuneQuestRoleplayingInGlorantha.rb +167 -0
- data/lib/bcdice/game_system/ShinobiGami.rb +155 -26
- data/lib/bcdice/game_system/VampireTheMasquerade5th.rb +40 -12
- data/lib/bcdice/game_system/Ventangle.rb +133 -0
- data/lib/bcdice/game_system/ZombiLine.rb +115 -0
- data/lib/bcdice/game_system/cthulhu7th/rollable.rb +2 -0
- data/lib/bcdice/game_system/sword_world/transcendent_test.rb +2 -0
- data/lib/bcdice/game_system.rb +7 -0
- data/lib/bcdice/version.rb +1 -1
- metadata +10 -3
data/lib/bcdice/game_system.rb
CHANGED
@@ -56,6 +56,7 @@ require "bcdice/game_system/DarkDaysDrive"
|
|
56
56
|
require "bcdice/game_system/DarkSouls"
|
57
57
|
require "bcdice/game_system/DeadlineHeroes"
|
58
58
|
require "bcdice/game_system/DemonParasite"
|
59
|
+
require "bcdice/game_system/DemonSpike"
|
59
60
|
require "bcdice/game_system/DesperateRun"
|
60
61
|
require "bcdice/game_system/DetatokoSaga"
|
61
62
|
require "bcdice/game_system/DetatokoSaga_Korean"
|
@@ -93,6 +94,7 @@ require "bcdice/game_system/GoblinSlayer"
|
|
93
94
|
require "bcdice/game_system/GoldenSkyStories"
|
94
95
|
require "bcdice/game_system/Gorilla"
|
95
96
|
require "bcdice/game_system/GranCrest"
|
97
|
+
require "bcdice/game_system/GundamSentinel"
|
96
98
|
require "bcdice/game_system/Gundog"
|
97
99
|
require "bcdice/game_system/GundogRevised"
|
98
100
|
require "bcdice/game_system/GundogZero"
|
@@ -100,6 +102,7 @@ require "bcdice/game_system/GURPS"
|
|
100
102
|
require "bcdice/game_system/GurpsFW"
|
101
103
|
require "bcdice/game_system/HarnMaster"
|
102
104
|
require "bcdice/game_system/HatsuneMiku"
|
105
|
+
require "bcdice/game_system/HeroScale"
|
103
106
|
require "bcdice/game_system/Hieizan"
|
104
107
|
require "bcdice/game_system/HouraiGakuen"
|
105
108
|
require "bcdice/game_system/HuntersMoon"
|
@@ -132,6 +135,7 @@ require "bcdice/game_system/LostRoyal"
|
|
132
135
|
require "bcdice/game_system/MagicaLogia"
|
133
136
|
require "bcdice/game_system/MagicaLogia_Korean"
|
134
137
|
require "bcdice/game_system/MagicaLogia_SimplifiedChinese"
|
138
|
+
require "bcdice/game_system/MamonoScramble"
|
135
139
|
require "bcdice/game_system/MeikyuDays"
|
136
140
|
require "bcdice/game_system/MeikyuKingdom"
|
137
141
|
require "bcdice/game_system/MeikyuKingdomBasic"
|
@@ -174,6 +178,7 @@ require "bcdice/game_system/RokumonSekai2"
|
|
174
178
|
require "bcdice/game_system/RoleMaster"
|
175
179
|
require "bcdice/game_system/RuinBreakers"
|
176
180
|
require "bcdice/game_system/RuneQuest"
|
181
|
+
require "bcdice/game_system/RuneQuestRoleplayingInGlorantha"
|
177
182
|
require "bcdice/game_system/RyuTuber"
|
178
183
|
require "bcdice/game_system/Ryutama"
|
179
184
|
require "bcdice/game_system/SajinsenkiAGuS"
|
@@ -226,6 +231,7 @@ require "bcdice/game_system/TwilightGunsmoke"
|
|
226
231
|
require "bcdice/game_system/UnsungDuet"
|
227
232
|
require "bcdice/game_system/Utakaze"
|
228
233
|
require "bcdice/game_system/VampireTheMasquerade5th"
|
234
|
+
require "bcdice/game_system/Ventangle"
|
229
235
|
require "bcdice/game_system/Villaciel"
|
230
236
|
require "bcdice/game_system/VisionConnect"
|
231
237
|
require "bcdice/game_system/WARPS"
|
@@ -239,3 +245,4 @@ require "bcdice/game_system/YankeeYogSothoth"
|
|
239
245
|
require "bcdice/game_system/YearZeroEngine"
|
240
246
|
require "bcdice/game_system/Yggdrasill"
|
241
247
|
require "bcdice/game_system/ZettaiReido"
|
248
|
+
require "bcdice/game_system/ZombiLine"
|
data/lib/bcdice/version.rb
CHANGED
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.
|
4
|
+
version: 3.11.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: 2023-
|
11
|
+
date: 2023-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: i18n
|
@@ -193,6 +193,7 @@ files:
|
|
193
193
|
- lib/bcdice/game_system/DarkSouls.rb
|
194
194
|
- lib/bcdice/game_system/DeadlineHeroes.rb
|
195
195
|
- lib/bcdice/game_system/DemonParasite.rb
|
196
|
+
- lib/bcdice/game_system/DemonSpike.rb
|
196
197
|
- lib/bcdice/game_system/DesperateRun.rb
|
197
198
|
- lib/bcdice/game_system/DetatokoSaga.rb
|
198
199
|
- lib/bcdice/game_system/DetatokoSaga_Korean.rb
|
@@ -231,12 +232,14 @@ files:
|
|
231
232
|
- lib/bcdice/game_system/GoldenSkyStories.rb
|
232
233
|
- lib/bcdice/game_system/Gorilla.rb
|
233
234
|
- lib/bcdice/game_system/GranCrest.rb
|
235
|
+
- lib/bcdice/game_system/GundamSentinel.rb
|
234
236
|
- lib/bcdice/game_system/Gundog.rb
|
235
237
|
- lib/bcdice/game_system/GundogRevised.rb
|
236
238
|
- lib/bcdice/game_system/GundogZero.rb
|
237
239
|
- lib/bcdice/game_system/GurpsFW.rb
|
238
240
|
- lib/bcdice/game_system/HarnMaster.rb
|
239
241
|
- lib/bcdice/game_system/HatsuneMiku.rb
|
242
|
+
- lib/bcdice/game_system/HeroScale.rb
|
240
243
|
- lib/bcdice/game_system/Hieizan.rb
|
241
244
|
- lib/bcdice/game_system/HouraiGakuen.rb
|
242
245
|
- lib/bcdice/game_system/HunterTheReckoning5th.rb
|
@@ -269,6 +272,7 @@ files:
|
|
269
272
|
- lib/bcdice/game_system/MagicaLogia.rb
|
270
273
|
- lib/bcdice/game_system/MagicaLogia_Korean.rb
|
271
274
|
- lib/bcdice/game_system/MagicaLogia_SimplifiedChinese.rb
|
275
|
+
- lib/bcdice/game_system/MamonoScramble.rb
|
272
276
|
- lib/bcdice/game_system/MeikyuDays.rb
|
273
277
|
- lib/bcdice/game_system/MeikyuKingdom.rb
|
274
278
|
- lib/bcdice/game_system/MeikyuKingdomBasic.rb
|
@@ -311,6 +315,7 @@ files:
|
|
311
315
|
- lib/bcdice/game_system/RoleMaster.rb
|
312
316
|
- lib/bcdice/game_system/RuinBreakers.rb
|
313
317
|
- lib/bcdice/game_system/RuneQuest.rb
|
318
|
+
- lib/bcdice/game_system/RuneQuestRoleplayingInGlorantha.rb
|
314
319
|
- lib/bcdice/game_system/RyuTuber.rb
|
315
320
|
- lib/bcdice/game_system/Ryutama.rb
|
316
321
|
- lib/bcdice/game_system/SRS.rb
|
@@ -363,6 +368,7 @@ files:
|
|
363
368
|
- lib/bcdice/game_system/UnsungDuet.rb
|
364
369
|
- lib/bcdice/game_system/Utakaze.rb
|
365
370
|
- lib/bcdice/game_system/VampireTheMasquerade5th.rb
|
371
|
+
- lib/bcdice/game_system/Ventangle.rb
|
366
372
|
- lib/bcdice/game_system/Villaciel.rb
|
367
373
|
- lib/bcdice/game_system/VisionConnect.rb
|
368
374
|
- lib/bcdice/game_system/WARPS.rb
|
@@ -376,6 +382,7 @@ files:
|
|
376
382
|
- lib/bcdice/game_system/YearZeroEngine.rb
|
377
383
|
- lib/bcdice/game_system/Yggdrasill.rb
|
378
384
|
- lib/bcdice/game_system/ZettaiReido.rb
|
385
|
+
- lib/bcdice/game_system/ZombiLine.rb
|
379
386
|
- lib/bcdice/game_system/beginning_idol/accessories_table.rb
|
380
387
|
- lib/bcdice/game_system/beginning_idol/bad_status_table.rb
|
381
388
|
- lib/bcdice/game_system/beginning_idol/chain_d66_table.rb
|
@@ -450,7 +457,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
450
457
|
- !ruby/object:Gem::Version
|
451
458
|
version: '0'
|
452
459
|
requirements: []
|
453
|
-
rubygems_version: 3.4.
|
460
|
+
rubygems_version: 3.4.1
|
454
461
|
signing_key:
|
455
462
|
specification_version: 4
|
456
463
|
summary: BCDice is a rolling dice engine for TRPG
|