forked from OceanUwU/slaytabase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextraItems.js
More file actions
2334 lines (2077 loc) · 125 KB
/
extraItems.js
File metadata and controls
2334 lines (2077 loc) · 125 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export default {
"Slay the Spire" : {
"pre": {
"add": {
"creatures": [
{
"name": "Spike Slime (L)",
"type": "Normal",
"minHP": "64",
"maxHP": "70",
"minHPA": "67",
"maxHPA": "73",
"id": "SpikeSlime_L",
"img": "/extraImages/creatures/Spike-slime-l.png"
},
{
"name": "Bronze Orb",
"type": "Boss",
"minHP": "52",
"maxHP": "58",
"minHPA": "54",
"maxHPA": "60",
"id": "BronzeOrb",
"img": "/extraImages/creatures/Bronze-orb.png"
},
{
"name": "Torch Head",
"type": "Boss",
"minHP": "38",
"maxHP": "40",
"minHPA": "40",
"maxHPA": "45",
"id": "TorchHead",
"img": "/extraImages/creatures/Torchhead.png"
},
{
"name": "Mad Gremlin",
"type": "Normal",
"minHP": "20",
"maxHP": "24",
"minHPA": "21",
"maxHPA": "25",
"id": "GremlinWarrior",
"img": "/extraImages/creatures/Mad-gremlin.png"
},
],
"keywords": [
{
"name": "Ascension",
"description": "1. Elites spawn more often.\n2. Normal enemies are deadlier.\n3. Elites are deadlier.\n4. Bosses are deadlier.\n5. Heal less after Boss battles.\n6. Start each run damaged.\n7. Normal enemies are tougher.\n8. Elites are tougher.\n9. Bosses are tougher.\n10. Start each run cursed.\n11. Fewer Potion Slots.\n12. Upgraded cards appear less often.\n13. Poor bosses.\n14. Lower Max HP.\n15. Unfavorable Events.\n16. Shops are more costly.\n17. Normal enemies have more challenging movesets and abilities.\n18. Elites have more challenging movesets and abilities.\n19. Bosses have more challenging movesets and abilities.\n20. (Max Level) Double Boss.\n"
}
]
},
"edit": {
"creatures": [
/*
move types:
a - attack
d - debuff
D - debuff (large)
f - buff
b - block
bd - block + debuff
bf - block + buff
af - attack + buff
ad - attack + debuff
ab - attack + block
u - unknown
s - stunned
e - escape
z - sleep
*/
{
"where": {"id": "AcidSlime_L"},
"to": {
"moves": [
{"type": "ad", "name": "Corrosive Spit", "description": "#r11 #b(12). Shuffles #r2 #ySlimed into your discard pile."},
{"type": "d", "name": "Lick", "description": "Applies #r2 #yWeak."},
{"type": "a", "name": "Tackle", "description": "#r16 #b(18)."},
{"type": "u", "name": "Split", "description": "Splits into #r2 Acid Slimes (M) with its current HP."},
],
"description": "30%/40%/30% (40%/30%/30% on A17) chance to use Corrosive Spit/Tackle/Lick.\nWhen its HP is at or below 50%, switches its intent to Split.\nCannot use Tackle twice in a row or Corrosive Spit three times in a row. Cannot use Lick three times in a row (or twice in a row on A17)."
}
},
{
"where": {"id": "AcidSlime_M"},
"to": {
"moves": [
{"type": "ad", "name": "Corrosive Spit", "description": "#r7 #b(8). Shuffles #r2 #ySlimed into your discard pile."},
{"type": "d", "name": "Lick", "description": "Applies #r1 #yWeak."},
{"type": "a", "name": "Tackle", "description": "#r10 #b(12)."},
],
"description": "30%/40%/30% (40%/40%/20% on A17) chance to use Corrosive Spit/Tackle/Lick.\nCannot use Tackle twice in a row or Corrosive Spit three times in a row. Cannot use Lick three times in a row (or twice in a row on A17)."
}
},
{
"where": {"id": "AcidSlime_S"},
"to": {
"moves": [
{"type": "d", "name": "Lick", "description": "Applies #r1 #yWeak."},
{"type": "a", "name": "Tackle", "description": "#r3 #b(4)."},
],
"description": "Starts with Lick on A17, otherwise starts with a random move. Then alternates between moves."
}
},
{
"where": {"id": "AwakenedOne"},
"to": {
"moves": [
{"type": "a", "name": "Slash", "description": "#r20."},
{"type": "a", "name": "Soul Strike", "description": "#r6x4."},
{"type": "u", "name": "Rebirth", "description": "Removes all debuffs. Removes curiosity. Heals to full. Switches to Awakened Form."},
{"type": "a", "name": "Dark Echo", "description": "#r40."},
{"type": "ad", "name": "Sludge", "description": "#r18. Shuffle #r1 #yVoid into the draw pile."},
{"type": "a", "name": "Tackle", "description": "#r10x3."},
],
"description": "Whenever you play a power, gains 1 Strength (2 on A19). Starts with 2 Strength on A4. Heals 10 HP at the end of its turn (15 on A19).\nWhen killed for the first time, changes its intent to Rebirth.\nUnawakened Form: Starts with Slash. Then has a 25%/75% chance to use Soul Strike/Slash.\nCannot use Slash three times in a row or Soul Strike twice in a row.\nAwakened Form: Starts with Dark Echo. Then has a 50%/50% chance to use Tackle/Sludge.\nCannot use any move three times in a row."
}
},
{
"where": {"id": "BanditBear"},
"to": {
"moves": [
{"type": "d", "name": "Bear Hug", "description": "Removes #r2 #b(4) #yDexterity."},
{"type": "ab", "name": "Lunge", "description": "#r9 #b(10) damage, #r9 #yBlock."},
{"type": "a", "name": "Maul", "description": "#r18 #b(20)."},
],
"description": "Starts with Bear Hug, then alternates between Lunge and Maul."
}
},
{
"where": {"id": "BookOfStabbing"},
"to": {
"moves": [
{"type": "a", "name": "Multi-Stab", "description": "#r6xN #b(7xN)."},
{"type": "a", "name": "Simgle Stab", "description": "#r21 #b(24)."},
],
"description": "N=2 and increases by 1 when Multi-Stab is used. On A18, N=1+turn number. Whenever it deals unblocked damage, adds a Wound to your discard pile.\nHas an 85%/15% chance to use Multi-Stab/Single Stab.\nCannot use Multi-Stab 3 times in a row or Single Stab twice in a row."
}
},
{
"where": {"id": "BronzeAutomaton"},
"to": {
"moves": [
{"type": "u", "name": "Spawn Orbs", "description": "Spawns 2 Bronze Orbs."},
{"type": "bf", "name": "Boost", "description": "Gains #r3 #b(4) #yStrength and #r9 #b(12) Block."},
{"type": "a", "name": "Flail", "description": "#r7x2 #b(8x2)."},
{"type": "a", "name": "HYPER BEAM", "description": "#r45 #b(50)."},
{"type": "s", "name": "Stunned", "description": "Nothing."},
],
"description": "Has 3 Artifact.\nStarts with Spawn Orbs, then repeats Flail/Boost/Flail/Boost/HYPER BEAM/Stunned. On A19, Stunned is replaced with Boost."
}
},
{
"where": {"id": "Byrd"},
"to": {
"moves": [
{"type": "f", "name": "Caw", "description": "Gains #r1 #yStrength."},
{"type": "a", "name": "Peck", "description": "#r1x5 #b(1x6)"},
{"type": "a", "name": "Swoop", "description": "#r12 #b(14)."},
{"type": "s", "name": "Stunned", "description": "Nothing."},
{"type": "a", "name": "Headbutt", "description": "#r3."},
{"type": "u", "name": "Fly", "description": "Starts Flying."},
],
"description": "Starts out Flying. When Flying, it takes half as much attack damage. If hit 3 (4 on A17) times in a turn while Flying, it becomes grounded.\nFlying: On turn 1, has a 62.5%/37.5% chance to use Peck/Caw. Then, has a 50%/20%/30% chance of using Peck/Swoop/Caw.\nCannot use Peck three times in a row or use Caw or Swoop twice in a row.\nGrounded: Uses Stunned then Headbutt then Fly."
}
},
{
"where": {"id": "ByrdGrounded"},
"to": {
"moves": [],
"description": "See Byrd."
}
},
{
"where": {"id": "Centurion"},
"to": {
"moves": [
{"type": "a", "name": "Slash", "description": "#r12 #b(14)."},
{"type": "a", "name": "Fury", "description": "#r6x3 #b(7x3)."},
{"type": "b", "name": "Defend", "description": "#r15 #b(20) to other enemy, or self if alone."},
],
"description": "65%/35% chance to use Slash/Defend. If Mystic is dead, uses Defend instead of Fury."
}
},
{
"where": {"id": "Chosen"},
"to": {
"moves": [
{"type": "a", "name": "Poke", "description": "#r5x2 #b(6x2)."},
{"type": "a", "name": "Zap", "description": "#r18 #b(21)."},
{"type": "ad", "name": "Debilitate", "description": "#r10 #b(12). Applies #r2 #yVulnerable."},
{"type": "d", "name": "Drain", "description": "Applies #r3 #yWeak and gains #r3 #yStrength."},
{"type": "D", "name": "Hex", "description": "Applies Hex."},
],
"description": "Hex - Shuffle a Dazed into your draw pile whenever you play a skill.\nStarts with Poke then Hex. On A17 starts with just Hex. Then alternates between a 50%/50% chance to use Debilitate/Drain and a 60%/40% chance of using Poke/Zap."
}
},
{
"where": {"id": "CorruptHeart"},
"to": {
"moves": [
{"type": "D", "name": "Debilitate", "description": "Applies #r2 #yVulnerable, #yWeak, and #yFrail. Shuffles #r1 of #rEVERY status into your draw pile."},
{"type": "a", "name": "Blood Shots", "description": "#r2x12 #b(2x15)."},
{"type": "a", "name": "Echo", "description": "#r40 #b(45)."},
{"type": "f", "name": "Buff", "description": "Removes negative #yStrength. Gains #r2 #yStrength. Gains an extra buff based on the buff number."},
],
"description": "Whenever you play a card, deals 1 damage (2 on A19). Caps all damage in a turn to 250 (200 on A19).\nStarts with Debilitate. Then repeats Blood Shots/Echo/Buff and Echo/Blood Shots/Buff at random.\nExtra buffs, in order: 2 Artifact, +1 to the damage dealt whenever you play a card, starts adding a Wound to your discard whenever it deals unblocked attack damage, +10 Strength, +50 Strength. Further buffs repeat the +50 Strength."
}
},
{
"where": {"id": "Cultist"},
"to": {
"moves": [
{"type": "f", "name": "Incantation", "description": "Gains #r3 #b(4) #b(5) #yRitual."},
{"type": "a", "name": "Dark Strike", "description": "6."},
],
"description": "Starts with Incantation, then repeats Dark Strike."
}
},
{
"where": {"id": "Dagger"},
"to": {
"moves": [
{"type": "ad", "name": "Stab", "description": "#r9. Adds a #yWound to your discard pile."},
{"type": "a", "name": "Explode", "description": "#r25. Dies."},
],
"description": "Uses Stab then Explode."
}
},
{
"where": {"id": "Darkling"},
"to": {
"moves": [
{"type": "a", "name": "Nip", "description": "#rD #b(D+2)."},
{"type": "a", "name": "Chomp", "description": "#r8x2 #b(9x2)."},
{"type": "b", "name": "Harden", "description": "#r12. #b(Gains 2 #yStrength)."},
{"type": "u", "name": "Regrow", "description": "Nothing."},
{"type": "f", "name": "Reincarnate", "description": "Revives with 50% HP."},
],
"description": "D is a random number chosen between 7 and 11 for each darkling that does not change.\nMiddle Darkling: 50%/50% chance to use Nip/Harden.\nSide Darklings: Same pattern as the middle Darkling on turn 1, then has a 30%/40%/30% chance to use Nip/Chomp/Harden.\nCannot use Harden or Chomp twice in a row, or Nip three times in a row.\nWhen killed, if there are other Darklings alive, uses Regrow then Reincarnate.\nDespite not being a \"minion\" enemy, Fatal effects used on Darklings will not trigger unless there are no other darklings alive."
}
},
{
"where": {"id": "Deca"},
"to": {
"moves": [
{"type": "b", "name": "Square of Protection", "description": "#r16 to all enemies. #b(Applies #r3 #bPlated #bArmor #bto #ball #benemies.)"},
{"type": "ad", "name": "Beam", "description": "#r10x2 #b(12x2). Adds #r2 #yDazed to your discard pile."},
],
"description": "Has 2 (3 on A19) Artifact.\nRepeats Square of Protection/Beam."
}
},
{
"where": {"id": "Donu"},
"to": {
"moves": [
{"type": "f", "name": "Circle of Power", "description": "Applies #r3 #yStrength to all enemies."},
{"type": "a", "name": "Beam", "description": "#r10x2 #b(12x2)."},
],
"description": "Has 2 (3 on A19) Artifact.\nRepeats Beam/Circle of Power."
}
},
{
"where": {"id": "Exploder"},
"to": {
"moves": [
{"type": "a", "name": "Slam", "description": "#r9 #b(11)."},
{"type": "u", "name": "Explode", "description": "Deals 30 non-attack damage. Dies."},
],
"description": "Uses Slam then Slam then Explode."
}
},
{
"where": {"id": "GremlinFat"},
"to": {
"moves": [
{"type": "ad", "name": "Smash", "description": "#r4 #b(5). Applies #r1 #yWeak #b(And #yFrail)."},
],
"description": "Repeats Smash."
}
},
{
"where": {"id": "FungiBeast"},
"to": {
"moves": [
{"type": "a", "name": "Bite", "description": "#r6."},
{"type": "f", "name": "Grow", "description": "Gains #r3 #b(4) #b(5) #yStrength."},
],
"description": "Applies 2 Vulnerable on death.\n60%/40% to use Bite/Grow. Cannot use Bite three times in a row or Grow twice in a row."
}
},
{
"where": {"id": "GiantHead"},
"to": {
"moves": [
{"type": "a", "name": "Count", "description": "#r13."},
{"type": "d", "name": "Glare", "description": "Applies #r1 #yWeak."},
{"type": "a", "name": "It Is Time", "description": "#r30 #b(40). Increases the damage of It Is Time by 5."},
],
"description": "For the first 4 (3 on A18) turns, has a 50%/50% chance of using Count/Glare, then repeats It Is Time.\nCannot use Count or Glare three times in a row.\nIt Is Time's damage cannot be increased by more than a total of 30."
}
},
{
"where": {"id": "GremlinLeader"},
"to": {
"moves": [
{"type": "bf", "name": "Encourage", "description": "#r6 #b(10) to other enemies. Applies #r3 #b(4) #b(5) #yStrength to all enemies."},
{"type": "a", "name": "Stab", "description": "#r6x3."},
{"type": "u", "name": "Rally!", "description": "Summon #r2 random Gremlins."},
],
"description": "Starts combat with the effects of Rally!\nWith 0 minions: Has a 75%/25% chance to use Rally!/Stab.\nWith 1 minion: If the last move was Encourage, has a 50%/50% chance to use Rally!/Stab. If the last move was Stab, has a 62.5%/37.5% chance to use Rally!/Encourage.\nWith 2+ minions: Has a 67%/33% chance to use Encourage/Stab.\nCannot use any of its move twice in a row."
}
},
{
"where": {"id": "GremlinNob"},
"to": {
"moves": [
{"type": "f", "name": "Bellow", "description": "Gains #r2 #b(3) Enrage."},
{"type": "ad", "name": "Skull Bash", "description": "#r6 #b(8). Applies #r2 #yVulnerable."},
{"type": "a", "name": "Rush", "description": "#r14 #b(16)."},
],
"description": "Enrage - Gains Strength whenever you play a skill.\nStarts with Bellow. Then, has a 33%/67% chance to use Skull Bash/Rush, or, if on A18, repeats Skull Bash/Rush/Rush.\nCannot use Rush 3 times in a row."
}
},
{
"where": {"id": "GremlinWizard"},
"to": {
"moves": [
{"type": "u", "name": "Charging", "description": "Nothing."},
{"type": "a", "name": "Ultimate Blast", "description": "#r25 #b(30)."},
],
"description": "Repeats Charging/Charging/Ultimate Blast. On A17, uses Charging for the first 2 turns then repeats Ultimate Blast."
}
},
{
"where": {"id": "Hexaghost"},
"to": {
"moves": [
{"type": "u", "name": "Activate", "description": "Nothing."},
{"type": "a", "name": "Divider", "description": "#rHx6."},
{"type": "ad", "name": "Sear", "description": "#r6. Adds #r1 #b(2) #yBurn(s) to your discard pile."},
{"type": "a", "name": "Tackle", "description": "#r5x2 #b(6x2)."},
{"type": "bf", "name": "Inflame", "description": "12. Gains #r2 #b(3) #yStrength."},
{"type": "a", "name": "Inferno", "description": "#r2x6 #b(3x6). Upgrades ALL current and future #yBurns. Adds 3 #yBurns to your discard pile."},
],
"description": "H=Current Player HP / 12 + 1.\nStarts with Activate and Divider, then repeats Sear/Tackle/Sear/Inflame/Tackle/Sear/Inferno."
}
},
{
"where": {"id": "JawWorm"},
"to": {
"moves": [
{"type": "a", "name": "Chomp", "description": "#r11 #b(12)."},
{"type": "ab", "name": "Thrash", "description": "#r7 damage, #r5 #yBlock."},
{"type": "bf", "name": "Bellow", "description": "#r6 #b(9). Gains #r3 #b(4) #b(5) #yStrength."},
],
"description": "Starts with Chomp. Then has a 45%/30%/25% chance of using Bellow/Thrash/Chomp. Cannot use Bellow or Chomp twice in a row, or Thrash three times in a row.\nIn the act 3 encounter of 3 Jaw Worms, they start combat with the effects of Bellow."
}
},
{
"where": {"id": "Lagavulin"},
"to": {
"moves": [
{"type": "z", "name": "Sleep", "description": "Nothing."},
{"type": "s", "name": "Wake", "description": "Loses #g8 Metallicize."},
{"type": "a", "name": "Attack", "description": "#r18 #b(20)."},
{"type": "D", "name": "Siphon Soul", "description": "Removes #r1 #b(2) #yStrength and #yDexterity."},
],
"description": "Starts with 8 Block and Metallicize.\nUses Sleep for the first 2 turns, then uses Wake. If it loses HP while Sleeping, it changes its intent to Wake. After using Wake, it repeats Attack/Attack/Siphon Soul."
}
},
{
"where": {"id": "LagavulinAwake"},
"to": {
"moves": [],
"description": "See Lagavulin."
}
},
{
"where": {"id": "Looter"},
"to": {
"moves": [
{"type": "a", "name": "Mug", "description": "#r10 #b(11)."},
{"type": "a", "name": "Lunge", "description": "#r12 #b(14)."},
{"type": "b", "name": "Smoke Bomb", "description": "#r6."},
{"type": "e", "name": "Escape", "description": "Escape."},
],
"description": "Steals 15 (20 on A17) gold whenever it attacks. If killed before it manages to Escape, all stolen gold is added to the post-combat rewards.\nStarts with Mug then Mug. Then, has a 50%/50% chance to use Lunge then Smoke Bomb, or immediately use Smoke Bomb. Then, uses Escape."
}
},
{
"where": {"id": "FuzzyLouseDefensive"},
"to": {
"moves": [
{"type": "a", "name": "Bite", "description": "#rD #b(D+1)."},
{"type": "d", "name": "Spit Web", "description": "Applies #r2 #yWeak."},
],
"description": "D is a random number chosen between 5 and 7 for each louse that does not change. Gains 3-7 (4-8 on A7, 9-12 on A17) Block the first time it's hit.\nHas a 25%/75% chance to use Spit Web/Bite.\nCannot use Bite or Spit Web three times in a row. On A17, cannot use Spit Web twice in a row."
}
},
{
"where": {"id": "FuzzyLouseNormal"},
"to": {
"moves": [
{"type": "a", "name": "Bite", "description": "#rD #b(D+1)."},
{"type": "f", "name": "Grow", "description": "Gains #r3 #b(4) #yStrength."},
],
"description": "D is a random number chosen between 5 and 7 for each louse that does not change. Gains 3-7 (4-8 on A7, 9-12 on A17) Block the first time it's hit.\nHas a 25%/75% chance to use Grow/Bite.\nCannot use Bite or Grow three times in a row. On A17, cannot use Grow twice in a row."
}
},
{
"where": {"id": "Mugger"},
"to": {
"moves": [
{"type": "a", "name": "Mug", "description": "#r10 #b(11)."},
{"type": "a", "name": "Lunge", "description": "#r16 #b(18)."},
{"type": "b", "name": "Smoke Bomb", "description": "#r11 #b(17)."},
{"type": "e", "name": "Escape", "description": "Escape."},
],
"description": "Steals 15 (20 on A17) gold whenever it attacks. If killed before it manages to Escape, all stolen gold is added to the post-combat rewards.\nStarts with Mug then Mug. Then, has a 50%/50% chance to use Lunge then Smoke Bomb, or immediately use Smoke Bomb. Then, uses Escape."
}
},
{
"where": {"id": "Healer"},
"to": {
"moves": [
{"type": "ad", "name": "Attack", "description": "#r8 #b(9). Applies #r2 #yFrail."},
{"type": "f", "name": "Heal", "description": "Heals all enemies for #r16 #b(20)."},
{"type": "f", "name": "Buff", "description": "Applies #r2 #b(3) #b(4) #yStrength to all enemies."},
],
"description": "If the total amount of HP that the enemy team is missing is at least 16 (21 if A17), will use Heal. Otherwise has a 40%/60% chance to use Buff/Heal.\nCannot use any move three times in a row. On A17, cannot use Attack twice in a row."
}
},
{
"where": {"id": "Nemesis"},
"to": {
"moves": [
{"type": "d", "name": "Debuff", "description": "Adds #r3 #b(5) #yBurns to your discard pile."},
{"type": "a", "name": "Attack", "description": "#r6x3 #b(7x3)/"},
{"type": "a", "name": "Scythe", "description": "#r45."},
],
"description": "Has Intangible on even-numbered turns.\nHas a 35%/35%/30% chance to use Debuff/Attack/Scythe, but cannot use Scythe on turn 1.\nCannot use attack three times in a row, or use Debuff or Scythe twice in a row.\nBoot fearer."
}
},
{
"where": {"id": "Orb Walker"},
"to": {
"moves": [
{"type": "ad", "name": "Laser", "description": "#r10 #b(11). Shuffles a #yBurn into your draw pile. Adds a #yBurn to your discard pile."},
{"type": "a", "name": "Claw", "description": "#r15 #b(16)."},
],
"description": "Gains 3 (5 on A17) Strength at the end of its turn.\nHas a 60%/40% chance to use Laser/Claw.\nCannot use either move three times in a row."
}
},
{
"where": {"id": "BanditChild"},
"to": {
"moves": [
{"type": "a", "name": "Attack", "description": "#r5x2 #r(6x2)."},
],
"description": "Repeats Attack."
}
},
{
"where": {"id": "Reptomancer"},
"to": {
"moves": [
{"type": "u", "name": "Summon", "description": "Summons #r1 #b(2) #yDagger(s)."},
{"type": "ad", "name": "Snake Strike", "description": "#r13x2 #b(16x2). Applies #r1 #yWeak."},
{"type": "a", "name": "Big Bite", "description": "#r30 #b(34)."},
],
"description": "Starts with 2 daggers.\nStarts with Summon. Then, has a 33%/33%/33% chance to use Summon/Snake Strike/Big Bite, or if there are 4 daggers, has a 67%/33% chance to use Snake Strike/Big Bite.\nCannot use Summon three times in a row, or use Snake Strike or Big Bite twice in a row."
}
},
{
"where": {"id": "Repulsor"},
"to": {
"moves": [
{"type": "a", "name": "Bash", "description": "#r11 #b(13)."},
{"type": "d", "name": "Repulse", "description": "Shuffles #r2 #yDazed into your draw pile."},
],
"description": "Has a 20%/80% chance to use Bash/Repulse.\nCannot use Bash twice in a row."
}
},
{
"where": {"id": "BanditLeader"},
"to": {
"moves": [
{"type": "u", "name": "Mock", "description": "Nothing."},
{"type": "ad", "name": "Agonizing Slash", "description": "#r10 #r(12). Applies #r2 #r(3) #yWeak."},
{"type": "a", "name": "Cross Slash", "description": "#r15 #r(17)."},
],
"description": "Starts with Mock, then repeats Agonizing Slash/Cross Slash (Agonizing Slash/Cross Slash/Cross Slash on A17)."
}
},
{
"where": {"id": "Sentry"},
"to": {
"moves": [
{"type": "a", "name": "Beam", "description": "#r9 #b(10)."},
{"type": "d", "name": "Bolt", "description": "Adds #r2 #b(3) #yDazed to your discard pile."},
],
"description": "Has 1 Artifact.\nWhen starting between two other sentries, repeats Beam/Bolt, otherwise repeats Bolt/Beam."
}
},
{
"where": {"id": "Shelled Parasite"},
"to": {
"moves": [
{"type": "ad", "name": "Fell", "description": "#r18 #b(21). Applies #r2 #yFrail."},
{"type": "a", "name": "Double Strike", "description": "#r6x2 #b(7x2)."},
{"type": "af", "name": "Suck", "description": "#r10 #b(12). Heals HP equal to unblocked damage dealt."},
{"type": "s", "name": "Stun", "description": "Nothing."},
],
"description": "Starts with 14 Block and Plated Armor.\nStarts with a 50%/50% chance to use Suck/Double Strike. On A17 starts with Fell. Then, has a 40%/40$/20% chance to use Double Strike/Suck/Fell. If its Plated Armor is reduced to 0, sets its intent to Stun.\nCannot use Double Strike or Suck three times in a row, or Fell twice in a row."
}
},
{
"where": {"id": "GremlinTsundere"},
"to": {
"moves": [
{"type": "b", "name": "Protect", "description": "#r7 #b(8) #b(11) to a random other enemy, or self if alone."},
{"type": "a", "name": "Shield Bash", "description": "#r6 #b(8)."},
],
"description": "Repeats Protect until no other enemies are alive, then repeats Shield Bash."
}
},
{
"where": {"id": "SlaverBlue"},
"to": {
"moves": [
{"type": "a", "name": "Stab", "description": "#r12 #b(13)."},
{"type": "ad", "name": "Rake", "description": "#r7 #b(8). Applies #r1 #b(2) #yWeak."},
],
"description": "Has a 40%/60% chance to use Rake/Stab.\nCannot use any move 3 times in a row. On A17, cannot use Rake twice in a row."
}
},
{
"where": {"id": "SlaverRed"},
"to": {
"moves": [
{"type": "a", "name": "Stab", "description": "#r13 #b(14)."},
{"type": "ad", "name": "Scrape", "description": "#r8 #b(9). Applies #r1 #b(2) #Vulnerable."},
{"type": "D", "name": "Entangle", "description": "Stops the player from playing attacks for #r1 turn."},
],
"description": "Starts with Stab. Then, repeats Scrape/Scrape/Stab (Scrape/Stab on A17) with a 25% chance replace Entangle as any move. After Entangle is used, has a 55%/45% chance to use Scrape/Stab.\nCannot use any move 3 times in a row. On A17, cannot use Scrape twice in a row."
}
},
{
"where": {"id": "SlimeBoss"},
"to": {
"moves": [
{"type": "D", "name": "Goop Spray", "description": "Adds #r3 #b(5) #ySlimed to your discard pile."},
{"type": "u", "name": "Preparing", "description": "Nothing."},
{"type": "a", "name": "Slam", "description": "#r35 #b(38)."},
{"type": "u", "name": "Split", "description": "Splits into an Acid Slime (L) and a Spike Slime (L) with its current HP."},
],
"description": "Repeats Goop Spray/Preparing/Slam. When its HP is at or below 50%, switches its intent to Split."
}
},
{
"where": {"id": "SnakePlant"},
"to": {
"moves": [
{"type": "a", "name": "Chomp", "description": "#r7x3 #b(8x3)."},
{"type": "D", "name": "Enfeebling Spores", "description": "Applies #r2 #yFrail and #yWeak."},
],
"description": "Starts with 3 Malleable - Gains block when attacked and increases that block by 1. Resets to 3 at the start of its turn.\nHas a 65%/35% chance to use Chomp/Enfeebling Spores. On A17, after using Enfeebling Spores for the first time, repeats Chomp/Chomp/Enfeebling Spores.\nCannot use Chomp three times in a row or Enfeebling Spores twice in a row."
}
},
{
"where": {"id": "GremlinThief"},
"to": {
"moves": [
{"type": "a", "name": "Puncture", "description": "#r9 #b(10)."},
],
"description": "Repeats Puncture."
}
},
{
"where": {"id": "Snecko"},
"to": {
"moves": [
{"type": "D", "name": "Perplexing Glare", "description": "Applies #yConfused."},
{"type": "a", "name": "Tail Whip", "description": "#r8 #b(10). Applies #r2 #yVulnerable #b(and #yWeak)"},
{"type": "a", "name": "Bite", "description": "#r15 #b(18)."},
],
"description": "Starts with Perplexing Glare. Then, has a 60%/40% chance to use Bite/Tail Whip.\nCannot use Bite 3 times in a row."
}
},
{
"where": {"id": "SphericGuardian"},
"to": {
"moves": [
{"type": "b", "name": "Activate", "description": "#r25 #b(35)."},
{"type": "ad", "name": "Attack", "description": "#r10 #b(11). Apply #r5 #yFrail."},
{"type": "a", "name": "Slam", "description": "#r10x2 #b(11x2)."},
{"type": "ab", "name": "Harden", "description": "#r10 #b(11) damage, #r15 #yBlock."},
],
"description": "Has 3 Artifact, 40 Block, and the effects of Barricade.\nStarts with Activate then Attack. Then, repeats Slam/Harden."
}
},
{
"where": {"id": "SpikeSlime_L"},
"to": {
"moves": [
{"type": "ad", "name": "Flame Tackle", "description": "#r16 #b(18). Shuffles #r2 #ySlimed into your discard pile."},
{"type": "d", "name": "Lick", "description": "Applies #r2 #Frail."},
{"type": "u", "name": "Split", "description": "Splits into #r2 Acid Slimes (M) with its current HP."},
],
"description": "30%/70% chance to use Flame Tackle/Lick.\nWhen its HP is at or below 50%, switches its intent to Split.\nCannot use any move three times in a row. Cannot use Lick twice in a row on A17."
}
},
{
"where": {"id": "SpikeSlime_M"},
"to": {
"moves": [
{"type": "ad", "name": "Flame Tackle", "description": "#r8 #b(10). Shuffles #r2 #ySlimed into your discard pile."},
{"type": "d", "name": "Lick", "description": "Applies #r1 #yFrail."},
],
"description": "30%/70% chance to use Flame Tackle/Lick.\nCannot use either move three times in a row. Cannot use Lick twice in a row on A17."
}
},
{
"where": {"id": "SpikeSlime_S"},
"to": {
"moves": [
{"type": "a", "name": "Tackle", "description": "#r5 #b(6)."},
],
"description": "Repeats Tackle."
}
},
{
"where": {"id": "Spiker"},
"to": {
"moves": [
{"type": "a", "name": "Cut", "description": "#r7 #b(9)."},
{"type": "f", "name": "Spike", "description": "Gains #r2 #yThorns."},
],
"description": "Starts with 3 (4 on A2 and 7 on A17) Thorns.\nHas a 50%/50% chance to use Cut/Spike. Can only use Spike 6 times.\nCannot use Cut twice in a row, unless Spike has reached its maximum uses."
}
},
{
"where": {"id": "Serpent"},
"to": {
"moves": [
{"type": "D", "name": "Constrict", "description": "Applies #r10 #b(12) Constricted."},
{"type": "a", "name": "Quick Tackle", "description": "#r16 #b(18)."},
{"type": "a", "name": "Smash", "description": "#r22 #b(25)."},
],
"description": "Constrict - At the end of your turn, take damage.\nIf the player is Constricted or if Constrict was used last turn, has a 50%/50% chance to use Quick Tackle/Smash. Otherwise, has a 50%/50% (100%/0% on A17) chance to use Constrict/Quick Tackle."
}
},
{
"where": {"id": "SpireShield"},
"to": {
"moves": [
{"type": "b", "name": "Bash", "description": "#r30 to all enemies."},
{"type": "ad", "name": "Fortify", "description": "#r12 #b(14). Removes #r1 #yStrength."},
{"type": "ab", "name": "Smash", "description": "#r34 #b(38). Gains #yBlock equal to damage dealt #b(99)."},
],
"description": "Has 1 (2 on A18) Artifact. Deals +50% damage from behind.\nIf the player has any Orb slots, the Strength removal has a 50% chance to be replaced with 1 Focus removal.\nRepeats Bash/Fortify/Smash and Fortify/Bash/Smash at random."
}
},
{
"where": {"id": "SpireSpear"},
"to": {
"moves": [
{"type": "ad", "name": "Burn Strike", "description": "#r5x2 #b(6x2). Adds #r2 #yBurns to your discard #b(the top of your draw) pile."},
{"type": "f", "name": "Piercer", "description": "Applies #r2 #yStrength to all enemies."},
{"type": "a", "name": "Skewer", "description": "#r10x3 #b(10x4)."},
],
"description": "Has 1 (2 on A18) Artifact. Deals +50% damage from behind.\nStarts with Burn Strike. Then, repeats Skewer/Burn Strike/Piercer and Skewer/Piercer/Burn Strike at random."
}
},
{
"where": {"id": "SlaverBoss"},
"to": {
"moves": [
{"type": "ad", "name": "Scouring Whip", "description": "#r7. Adds #r1 #b(2) #b(3) #yWound(s) to your discard pile. #b(Gains #r1 #yStrength.)"},
],
"description": "Repeats Scouring Whip."
}
},
{
"where": {"id": "Champ"},
"to": {
"moves": [
{"type": "bf", "name": "Defensive Stance", "description": "#r15 #b(18) #b(20). Gains #r5 #b(6) #b(7) Metallicize."},
{"type": "ad", "name": "Face Slap", "description": "#r12 #b(14). Applies #r2 #yFrail and #yVulnerable."},
{"type": "d", "name": "Taunt", "description": "Applies #r2 #yWeak and #yVulnerable."},
{"type": "a", "name": "Heavy Slash", "description": "#r16 #b(18)."},
{"type": "f", "name": "Gloat", "description": "Gains #r2 #b(3) #b(4) #yStrength."},
{"type": "f", "name": "Anger", "description": "Removes all debuffs. Gains #r6 #b(9) #b(12) #yStrength."},
{"type": "af", "name": "Execute", "description": "#r10x2."},
],
"description": "Uses Taunt every 4 turns. Otherwise, has a 15%/15%/25%/45% chance to use Defensive Stance/Gloat/Face Slap/Heavy Slash. On A19, Gloat is replaced with Defensive Stance, if it can be used.\nAfter its HP is reduced below 50%, uses Anger then repeats Execute/Move as normal/Move as normal.\nCannot use any move twice in a row. Cannot use Defensive Stance more than twice per combat."
}
},
{
"where": {"id": "TheCollector"},
"to": {
"moves": [
{"type": "u", "name": "Spawn", "description": "Spawns Torch Heads until there are #r2."},
{"type": "a", "name": "Fireball", "description": "#r18 #b(21)."},
{"type": "bf", "name": "Buff", "description": "#r15 #b(18) #b(23). Applies #r3 #b(4) #b(5) #yStrength to all enemies."},
{"type": "D", "name": "YOU ARE MINE", "description": "Applies #r3 #b(5) #yWeak, #yVulnerable, and #yFrail."},
],
"description": "Starts with Spawn. Uses YOU ARE MINE on turn 4. Otherwise, has a 25%/45%/30% chance to use Spawn/Fireball/Buff.\nCannot use Spawn if there are 2 Torch Heads (uses Fireball instead). Cannot use Buff twice in a row or Fireball three times in a row."
}
},
{
"where": {"id": "TheGuardian"},
"to": {
"moves": [
{"type": "b", "name": "Charging Up", "description": "#r9."},
{"type": "a", "name": "Fierce Bash", "description": "#r32 #b(36)."},
{"type": "D", "name": "Vent Steam", "description": "Applies #r2 #yVulnerable and #yWeak."},
{"type": "a", "name": "Whirlwind", "description": "#r5x4."},
{"type": "f", "name": "Defending...", "description": "Gains #r3 #b(4) Sharp Hide."},
{"type": "a", "name": "Roll Attack", "description": "#r9 #b(10)."},
{"type": "af", "name": "Twin Slam", "description": "#r8x2. Removes Sharp Hide. Switches to Offensive Mode."},
],
"description": "Sharp Hide - Whenever you play an attack, take damage. Has Mode Shift 30 (35 on A9, 40 on A19), which reduces by unblocked damage dealt. When it reaches 0, switches to Defensive Mode. Starts in Offensive Mode.\nOffensive Mode: Repeats Charging Up/Fierce Bash/Vent Steam/Whirlwind. Starts with Whirlwind when coming out of Defensive Mode.\nDefensive Mode: Uses Defending... then Roll Attack then Twin Slam."
}
},
{
"where": {"id": "Maw"},
"to": {
"moves": [
{"type": "D", "name": "Roar", "description": "Applies #r3 #b(5) #yWeak and #yFrail."},
{"type": "f", "name": "Slam", "description": "#r25 #b(30)."},
{"type": "a", "name": "Nom", "description": "#r5xT."},
{"type": "a", "name": "Drool", "description": "Gains #r3 #b(5) #yStrength."},
],
"description": "T=turn number / 2, rounded up.\nStarts with Roar. After using Roar or Drool, has a 50%/50% chance to use Slam/Nom. After using Slam, has a 50%/50% chance to use Drool/Nom. After using Nom, uses Drool."
}
},
{
"where": {"id": "TimeEater"},
"to": {
"moves": [
{"type": "a", "name": "Reverbrate", "description": "#r7x3 #b(8x3)."},
{"type": "a", "name": "Head Slam", "description": "#r26 #b(32). Reduces draw by #r1 for the next #r2 turns. #b(Adds #r2 #ySlimed #bto #byour #bdiscard #bpile.)"},
{"type": "bd", "name": "Ripple", "description": "#r20. Applies #r1 #yVulnerable, #yWeak #b(and #yFrail)."},
{"type": "f", "name": "Haste", "description": "Removes all debuffs. Heals to 50% HP."},
],
"description": "For each 12 cards you play, ends your turn and gains 2 Strength.\nIf its HP is below 50%, uses Haste. Otherwise, has a 20%/45%/35% chance to use Ripple/Reverbrate/Head Slam.\nCannot use Ripple or Head Slam twice in a row, or Reverbrate three times in a row. Can only use Haste once per combat."
}
},
{
"where": {"id": "Transient"},
"to": {
"moves": [
{"type": "a", "name": "Attack", "description": "#r30 #b(40). Increases the damage of Attack by #r10."},
],
"description": "Dies after 5 (6 if A17) turns. When attacked, loses Strength equal to damage taken. Gains that Strength back at the end of its turn.\nRepeats Attack."
}
},
{
"where": {"id": "WrithingMass"},
"to": {
"moves": [
{"type": "ab", "name": "Flail", "description": "#r15 #b(16) damage, #r16 #b(18) #yBlock."},
{"type": "ad", "name": "Wither", "description": "#r10 #b(12). Applies #b2 #yWeak and #yVulnerable."},
{"type": "a", "name": "Multi-Strike", "description": "#r7x3 #b(9x3)."},
{"type": "a", "name": "Strong Strike", "description": "#r32 #b(38)."},
{"type": "D", "name": "Implant", "description": "Permanently adds a #yParasite to your deck."},
],
"description": "When attacked, changes its intent. Starts with 3 Malleable - Gains block when attacked and increases that block by 1. Resets to 3 at the start of its turn.\nIts starting move has an equal chance to be any move but Implant. Future moves have a 10%/30%/20%/30%/10% chance to be Implant/Flail/Wither/Multi-Strike/Strong Strike.\nCan only use Implant once per combat."
}
},
{
"where": {"id": "BronzeOrb"},
"to": {
"moves": [
{"type": "D", "name": "Stasis", "description": "Steals the rarest card in the draw pile, or from the discard pile if the draw pile is empty."},
{"type": "a", "name": "Beam", "description": "#r8."},
{"type": "b", "name": "Support Beam", "description": "#r12 to Bronze Automaton."},
],
"description": "When killed, adds the card taken from Stasis to your hand.\nHas a 75%/7.5%/17.5% chance to use Stasis/Beam/Support Beam.\nCan only use Stasis once per combat. Cannot use any move 3 times in a row."
}
},
{
"where": {"id": "TorchHead"},
"to": {
"moves": [
{"type": "a", "name": "Tackle", "description": "#r7."},
],
"description": "Repeats Tackle."
}
},
{
"where": {"id": "GremlinWarrior"},
"to": {
"moves": [
{"type": "a", "name": "Scratch", "description": "#r4 #b(5)."},
],
"description": "Gains 1 (2 on A17) Strength when hit."
}
}
]
}
},
"post": {
"add": {
"events": [
{
"name": "Ominous Forge",
"acts": [1, 2, 3],
"options": [
["Tinker", "automaton only", "g/Upgrade 3 Random Cards with Encode."],
["Tinker", "guardian only - have a card with sockets", "g/Add a socket to any socketed card."],
["Forge", null, "g/Upgrade a card in your deck."],
["Rummage", null, "g/Obtain a special Relic. r/Become Cursed - Pain."],
["Leave", null, ""]
]
},
{
"name": "Pleading Vagrant",
"acts": [2],
"options": [
["Offer Gold", "requires 85 gold", "y/85 Gold: g/Obtain a Relic."],
["Rob", null, "g/Obtain a Relic. r/Become Cursed - Shame."],
["Leave", "", ""]
]
},
{
"name": "Ancient Writing",
"acts": [2],
"options": [
["Elegance", null, "g/Remove a card from your deck."],
["Simplicity", null, "g/Upgrade all Strikes and Defends."],
["Unification", "automaton only", "All g/Strikes n/and g/Defends n/gain g/Encode."],
["Intuition", "champ only", "g/Add y/'trigger Skill Bonus.' n/to all g/Strikes n/and g/Defends."],
["Caprice", "gremlins only", "g/Replace n/all g/Strikes n/and g/Defends n/with g/Shivs n/and g/Wards."],
["Endurance", "guardian only", "g/Add Brace 2 n/to all g/Strikes n/and g/Defends."],
["Wistfulness", "hexaghost only", "g/Add Ethereal n/to all g/Strikes n/and g/Defends."],
["Inspiration", "slime boss only", "g/Add Command n/to all g/Strikes n/and g/Defends."],
["Improvisation", "snecko only", "g/Replace n/all g/Strikes n/and g/Defends n/with random g/Unidentified n/cards."]
]
},
{
"name": "Old Beggar",
"acts": [2],
"options": [
["Offer Gold", "requires 75 gold", "y/75 Gold: g/Remove a card from your deck."],
["Leave", null, ""]
]
},
{
"name": "Big Fish",
"acts": [1],
"options": [
["Banana", null, "g/Heal HP equal to 33% of your max HP."],
["Donut", null, "g/Max HP +5."],
["Box", null, "g/Obtain a Relic. r/Become Cursed - Regret."]
]
},
{
"name": "Bonfire Spirits",
"acts": [1, 2, 3],
"options": [
["Offer", null, "Receive a reward based on the offer."],
["Donate", "downfall only, requires 150 souls", "r/Lose 150 Souls. g/Gain 10 Max HP."]
]
},
{
"name": "Dead Adventurer",
"acts": [1],
"options": [
["Soul Harvest", null, "g/Find Loot. r/25% -> 50% -> 75% a/(35% -> 60% -> 85%)r/: monster returns."],
["Leave", null, ""]
]
},
{
"name": "Augmenter",
"acts": [2],
"options": [
["Test J.A.X.", null, "g/Get JAXXED."],
["Become Test Subject", null, "g/Transform 2 cards."],
["Ingest Mutagens", null, "g/Gain Mutagenic Strength."],
["Punch", "downfall only", "r/Fight. g/Take Everything."]
]
},
{
"name": "Duplicator",
"acts": [1, 2, 3],
"options": [
["Desecrate", "downfall only", "g/Duplicate 2 cards. r/Cursed - Random."],
["Pray", null, "g/Duplicate a card in your deck."],
["Leave", null, ""]
]
},
{
"name": "Falling",
"acts": [3],
"options": [
["Land", null, "r/Lose (random skill)."],
["Channel", null, "r/Lose(random power) n/"],
["Strike", null, "r/Lose (random attack)n/"],
["Float", "hexaghost only", "r/Lose nothing..."]
]
},
{
"name": "Forgotten Altar",
"acts": [2],
"options": [
["Offer", "requires golden idol", "g/Obtain a special Relic. r/Lose Golden Idol."],
["Sacrifice", null, "g/Gain 5 max HP. r/Lose HP equal to 25% a/(35%) r/of your max HP."],
["Desecrate", "standard only", "r/Become Cursed - Decay."],
["Offer Souls", "downfall only, requires 50 souls", "r/Lose 50 Souls. g/Heal HP equal to 35% a/(45%) g/of your max HP."],
["Leave", "downfall only", ""]
]
},
{