-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfloors_data.json
More file actions
1074 lines (1074 loc) · 31.6 KB
/
Copy pathfloors_data.json
File metadata and controls
1074 lines (1074 loc) · 31.6 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
{
"carl_floor1": "\u201cMordecai, darling. Is there a worst-dressed award for the dungeon?\u201d[1]\n\nThis page documents Carl's gear, levels, stats, and skills as he progresses through the First Floor.\n\nCarl\tFloor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9\nDonut\tFloor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9\nJump To Section\tGear \u2022 Levels & Stats \u2022 Skills \u2022 Spells \u2022 Passive Effects \u2022 Ratings\nContents\n1\tLevels & Stats\n2\tGear\n2.1\tStarting Gear\n2.2\tGear Gained\n2.3\tEnding Gear\n3\tSkills\n4\tSpells\n5\tPassive Effects\n6\tRatings\n7\tReferences\nLevels & Stats\nChapter\tNOTES\tLVL\tSTR\tINT\tCON\tDEX\t\nCollapse\nCHA\n4\tStarting Stats\t1\t6\t3\t5\t5\t4\n5\tLevel Up\t2\t6\t3\t5\t5\t4\n\tEnchanted Nightgaunt Cloak of Stoutness\n\n+4 CON\n\n\t2\t6\t3\t5/9\t5\t4\n\tEnchanted Toe Ring of the Splatter Skunk\n\n+3 STR\n\n\t2\t6/9\t3\t5/9\t5\t4\n\tLevel Up\t3\t6/9\t3\t5/9\t5\t4\n\tSilver Ring of +1 CON\t3\t6/9\t3\t5/10\t5\t4\n\tLevel Up\t5\t6/9\t3\t5/10\t5\t4\n\tStated Level\t7\t6/9\t3\t5/10\t5\t4\n\tLevel Up\t8\t6/9\t3\t5/10\t5\t4\n\tSilver Ring of +2 CON\t8\t6/9\t3\t5/12\t5\t4\n\tLevel Up (after fight with Juicer)\t9\t6/9\t3\t5/12\t5\t4\n\tEnchanted War Gauntlet of the Exalted Grull\n\n+1 DEX | +3 STR (fist mode only; not factored)\n\n\t9\t6/9/12\t3\t5/12\t5/6\t4\n\tLevel Up\t10\t6/9/12\t3\t5/12\t5/6\t4\nGear\nStarting Gear\n\nCarl enters the Dungeon with only his leather coat, boxers, Beatrice's ill-fitting pink croc sandals, a Zippo lighter, and half a pack of Marlboro Red cigarettes.[2][3]\n\nGear Gained\n\nWithin an hour of entering the First Floor, Carl receives a Goblin Pass Tattoo on his left inner forearm, which he grumbles about because he had never wanted tattoos.[4][5] At the same time, he puts on the Enchanted Trollskin Shirt of Pummeling, attaches the Enchanted Nightgaunt Cloak of Stoutness to his leather coat (Mordecai later notes that it occupies his \"neck\" slot), and puts the Enchanted Toe Ring of the Splatter Skunk onto his right index toe.[5][6] Some six hours later, he gains a Silver Ring of +1 CON, which he wears on a finger.[7]\n\nHe wears unenchanted fingerless gloves for the first two days or so, and wraps a chainlink leash around his right fist during the Hoarder battle (around one day after the Dungeon opens).[8] After the battle, he receives and immediately equips the Enchanted Spiked Kneepads of the Shade Gnoll Riot Forces.[9] With 3 Days, 2 Hours to level collapse, he punches a Slime, which dissolves his right glove and the right arm of his leather jacket, but leaves the chain on his fist gleaming and polished.[10]\n\nCarl gains the Goblin Copper Chopper. With 2 Days 18 Hours to level collapse, Carl receives the Desperado Pass Tattoo on his neck and a Silver Ring of +2 CON, which he wears on his left ring finger.[11] With just under 2 days to level collapse, he receives the Enchanted War Gauntlet of the Exalted Grull and equips it on his right wrist.[12]\n\nEnding Gear\nSLOT\t\nCollapse\nGEAR\nHead\t\nNeck\tNightgaunt Cloak of Stoutnessa (attached to coat)[5]\nJacket\tUnenchanted Leather Coat (missing right arm)[10]\nUndershirt\tTrollskin Shirt of Pummelingb[5]\nWrists\tWar Gauntlet of the Exalted Grullf (right wrist)[12]\nHands\tSilver Ring of +1 CON (unspecified finger)d [7]\nSilver Ring of +2 CONe (left ring finger)[11]\nLegs\tUnenchanted Boxers[2]\nKnees\tSpiked Kneepads of the Shade Gnoll Riot Forces[9]\nFeet\tToe Ring of the Splatter Skunkc (right index toe)[5]\nTattoos\tDesperado Pass Tattoo (neck)[11]\nGoblin Pass Tattoo (left inner forearm)[4]\nSkills\nSKILL\tSTARTING LEVEL\tFINAL LEVEL\t\nCollapse\nNOTES\nBare Knuckle Skill\t\t6[12]\t\nChopper Pilot Skill\t1\t5[13]\tFor driving the Goblin Copper Chopper\nDangerous Explosives Handling Skill\t1\t5[11]\t\nDetermine Value Skill\t1[11]\t2[12]\tGained from Skill Potion[11][12]\nExplosives Handling Skill\t1\t5[11]\t\nFoot Soldier Skill\t3\t6[11]\tReceived skill +3 after reaching level 3.[14]\nGoblin Explosives Skill\t1\t5[11]\t\nIED Skill\t3[11]\t\tFor blowing up Goblin War Chieftan[11]\nIron Punch Skill\t3[9]\t5/7f[12]\tEnchanted War Gauntlet of the Exalted Grull +2f\nJump Attack\t1?\t2?\tReceived notification after Hoarder battle[9]\nPowerful Strike Skill\t3c\t5[12]/9cf\tIncludes:\nEnchanted Toe Ring of the Splatter Skunk +3c\nEnchanted War Gauntlet of the Exalted Grull +1f\n\nPugilism Skill\t3[4]\t6[11]\tReceives skill level notification when Pugilism reaches level 4.[4]\nRegeneration Skill\t7b\t7b\tEnchanted Trollskin Shirt of Pummeling +7b\nSmush Skill\t3\t6[12]\tReceived skill +3 after reaching level 3.[14]\nUnarmed Combat Skill\t3\t6[12]\t\nSee Also: Skills for a list of the joke skills.\nSpells\n\nCarl does not learn any spells on the First Floor.\n\nPassive Effects\nAttacks Gain\n2% chance to stun target when struck with Gauntlet.\nAll Equipped Armor gains:\nAnti-Piercing Resistance (from Nightgaunt Cloak).\n10% Damage Reflect (from Spiked Kneepads).\nNegated Effects/Attacks:\nMelee-based Damage Debuffs (from Trollskin Shirt).\nMomentum-based attacks (from Kneepads).\nResistant to:\nIce attacks (from Nightgaunt Cloak).\nPoison attacks (from Nightgaunt Cloak).\nWeak to:\nGoblin enemies deal +20% damage to Carl (from Goblin Pass Tattoo).\nMemberships & Allies\nDesperado Club membership (from Desperado Pass Tattoo)\nGoblins are white-tagged; free passage in goblin territory (from Goblin Pass).\nOther\nBy the end of the floor, he can barely feel the soles of his feet. The sides of his feet are still sensitive.[15]\nRatings\n\nRatings are not active on the First Floor.\n\nReferences\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 12) (p. 108). Dandy House. Kindle Edition.\n\u2191 \nJump up to:\n2.0 2.1 Dinniman, Matt. Dungeon Crawler Carl (Chapter 1)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 8)\n\u2191 \nJump up to:\n4.0 4.1 4.2 4.3 Dinniman, Matt. Dungeon Crawler Carl (Chapter 5)\n\u2191 \nJump up to:\n5.0 5.1 5.2 5.3 5.4 Dinniman, Matt. Dungeon Crawler Carl (Chapter 6)\n\u2191 Dinniman, Matt. The Gate of the Feral Gods (Chapter 28)\n\u2191 \nJump up to:\n7.0 7.1 Dinniman, Matt. Dungeon Crawler Carl (Chapter 9)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 11)\n\u2191 \nJump up to:\n9.0 9.1 9.2 9.3 Dinniman, Matt. Dungeon Crawler Carl (Chapter 12)\n\u2191 \nJump up to:\n10.0 10.1 Dinniman, Matt. Dungeon Crawler Carl (Chapter 15)\n\u2191 \nJump up to:\n11.00 11.01 11.02 11.03 11.04 11.05 11.06 11.07 11.08 11.09 11.10 11.11 Dinniman, Matt. Dungeon Crawler Carl (Chapter 19)\n\u2191 \nJump up to:\n12.0 12.1 12.2 12.3 12.4 12.5 12.6 12.7 12.8 Dinniman, Matt. Dungeon Crawler Carl (Chapter 25)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 21)\n\u2191 \nJump up to:\n14.0 14.1 Dinniman, Matt. Dungeon Crawler Carl (Chapter 8) (p.78). Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 30)",
"carl_floor2": [
{
"caption": "",
"rows": [
[
"Carl",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Donut",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Jump To Section",
"Gear \u2022 Levels & Stats \u2022 Skills \u2022 Spells \u2022 Passive Effects \u2022 Ratings"
]
]
},
{
"caption": "",
"rows": [
[
"TIME",
"NOTES",
"LVL",
"STR",
"INT",
"CON",
"DEX",
"CHA"
],
[
"6 d 05h[2]",
"Base Stats",
"10",
"6",
"3",
"5",
"5",
"4"
],
[
"6 d 05h",
"w/ Enchanted Toe Ring of the Splatter Skunk +3 STRc",
"10",
"6/9c",
"3",
"5/9a",
"5",
"4"
],
[
"6 d 05h",
"w/ Enchanted Nightgaunt Cloak of Stoutness +4 CONa",
"10",
"6",
"3",
"5/9a",
"5",
"4"
],
[
"6 d 05h",
"w/ Silver Ring of +1 CONd",
"10",
"6/9c",
"3",
"5/10ad",
"5",
"4"
],
[
"6 d 05h",
"w/ Silver Ring of +2 CONe",
"10",
"6/9c",
"3",
"5/12ade",
"5",
"4"
],
[
"6 d 05h",
"w/ Enchanted War Gauntlet of the Exalted Grull +3 STR (Fist Mode Only), +1 DEXf",
"10",
"6/9c/12cf",
"3",
"5/12ade",
"5/6f",
"4"
],
[
"~5 d 02h[3]",
"Level Up",
"11",
"6/9c/12cf",
"3",
"5/12ade",
"5/6f",
"4"
],
[
"~4 d 04h[4]",
"Enchanted BigBoi Boxersg +2 CON",
"11",
"6/9c/12cf",
"3",
"5/14adeg",
"5/6f",
"4"
]
]
},
{
"caption": "",
"rows": [
[
"SLOT",
"GEAR"
],
[
"Head",
""
],
[
"Neck",
"Nightgaunt Cloak of Stoutnessa (attached to coat)[5]"
],
[
"Jacket",
"Unenchanted Leather Coat (missing right arm)[6]"
],
[
"Undershirt",
"Trollskin Shirt of Pummelingb[5]"
],
[
"Wrists",
"War Gauntlet of the Exalted Grullf (right wrist)[7]"
],
[
"Hands",
"Silver Ring of +1 CON (unspecified finger)d[8]Silver Ring of +2 CONe (left ring finger)[9]"
],
[
"Legs",
"Unenchanted Boxers[10]"
],
[
"Knees",
"Spiked Kneepads of the Shade Gnoll Riot Forces[11]"
],
[
"Feet",
"Toe Ring of the Splatter Skunkc (right index toe)[5]"
],
[
"Tattoos",
"Desperado Pass Tattoo (neck)[9]Goblin Pass Tattoo (left inner forearm)[12]"
]
]
},
{
"caption": "",
"rows": [
[
"SLOT",
"GEAR"
],
[
"Head",
""
],
[
"Neck",
"Nightgaunt Cloak of Stoutnessa (attached to coat)[5]"
],
[
"Jacket",
"Unenchanted Leather Coat (missing right arm)[6]"
],
[
"Undershirt",
"Trollskin Shirt of Pummelingb[5]"
],
[
"Wrists",
"War Gauntlet of the Exalted Grullf (right wrist)[7]"
],
[
"Hands",
"Silver Ring of +1 CON (unspecified finger)d[8]Silver Ring of +2 CONe (left ring finger)[9]"
],
[
"Legs",
"Enchanted BigBoi Boxersg[14]"
],
[
"Knees",
"Spiked Kneepads of the Shade Gnoll Riot Forces[11]"
],
[
"Feet",
"Toe Ring of the Splatter Skunkc (right index toe)[5]"
],
[
"Tattoos",
"Desperado Pass Tattoo (neck)[9]Goblin Pass Tattoo (left inner forearm)[12]"
],
[
"Other",
"Enchanted Pedicure Kit of the Sylph[15]"
]
]
},
{
"caption": "",
"rows": [
[
"SKILL",
"STARTING LEVEL",
"FINAL LEVEL",
"NOTES"
],
[
"Aiming Skill",
"1[13]",
"4[16]",
""
],
[
"Foot Soldier Skill",
"6[9]",
"",
""
],
[
"Iron Punch Skill",
"5/7f[7]",
"",
"Enchanted War Gauntlet of the Exalted Grull +2f"
],
[
"Jump Attack",
"1?",
"2?",
""
],
[
"Powerful Strike Skill",
"5[7]/9cf",
"",
"Includes: Enchanted Toe Ring of the Splatter Skunk +3c Enchanted War Gauntlet of the Exalted Grull +1f"
],
[
"Pugilism Skill",
"7[15]",
"10[15]",
""
],
[
"Slingshot Skill",
"1",
"3[16]",
""
],
[
"Smush Skill",
"6[7]",
"6/9[15]",
"Enchanted Pedicure Kit of the Sylph +3"
],
[
"Steady Hand Skill",
"1[13]",
"",
""
],
[
"Unarmed Combat Skill",
"6[7]",
"",
""
]
]
},
{
"caption": "",
"rows": [
[
"SKILL",
"STARTING LEVEL",
"FINAL LEVEL",
"NOTES"
],
[
"Chopper Pilot Skill",
"5 [17]",
"",
""
],
[
"Dangerous Explosives Handling Skill",
"5 [9]",
"7 [14]",
""
],
[
"Determine Value Skill",
"2 [7]",
"",
""
],
[
"Explosives Handling Skill",
"5 [9]",
"7 [14]",
""
],
[
"Goblin Explosives Skill",
"5 [9]",
"",
""
],
[
"IED Skill",
"3 [9]",
"7 [14]",
""
],
[
"Incendiary Device Handling Skill",
"0[13]",
"5[13]",
"Gains (5) levels from creating Carl's Jug O'Boom[13]"
],
[
"Regeneration Skill",
"7b[5]",
"",
"Enchanted Trollskin Shirt of Pummeling +7b"
]
]
},
{
"caption": "",
"rows": [
[
"SPELL",
"STARTING LEVEL",
"FINAL LEVEL",
"NOTES"
],
[
"Protective Shell",
"15[14]",
"15[14]",
"From Enchanted BigBoi Boxersg"
]
]
},
{
"caption": "",
"rows": [
[
"TIME",
"LEADERBOARD",
"VIEWS",
"FOLLOWERS",
"FAVORITES",
"PATRONS"
],
[
"5 d 10h[13]",
"n/a",
"69 Billion",
"635 million",
"149 million",
"n/a"
],
[
"4 d 18h[18]",
"n/a",
"212 Billion",
"4.4 Billion",
"793 million",
"n/a"
]
]
}
],
"carl_floor3": [
{
"caption": "",
"rows": [
[
"Carl",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Donut",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Jump To Section",
"Gear \u2022 Levels & Stats \u2022 Skills \u2022 Spells \u2022 Passive Effects \u2022 Ratings"
]
]
},
{
"caption": "",
"rows": [
[
"TIME",
"NOTES",
"LVL",
"STR",
"INT",
"CON",
"DEX",
"CHA"
],
[
"- 3h 35m",
"Start of Floor",
"13",
"9 / 12",
"3",
"14",
"6",
"4"
],
[
"",
"Race Selection - Primal",
"13",
"8 / 11",
"2",
"13",
"5",
""
],
[
"",
"Stat Allocation",
"13",
"10 / 13 / 16",
"5",
"10 / 19",
"10 / 11",
"25"
],
[
"",
"Book 2 Page 71*",
"13",
"14 / 17 / 20",
"5",
"10 / 19",
"10 / 11",
"25"
],
[
"",
"Book 2 Page 88*",
"14",
"14 / 17 / 20",
"5",
"10 / 19",
"10 / 11",
"25"
],
[
"",
"Book 2 Page 102*",
"14",
"17 / 20 / 23",
"5",
"10 / 19",
"10 / 11",
"25"
],
[
"",
"Book 2 Page 118*",
"15",
"17 / 20 /23",
"5",
"10 / 19",
"10 / 11",
"25"
],
[
"",
"Book 2 Page 146*",
"18",
"17 / 20 /23",
"5",
"10 / 19",
"10 / 11",
"25"
],
[
"",
"Book 2 Page 168*",
"18",
"17 / 20 /23",
"10",
"13 / 22",
"15 / 16",
"25"
],
[
"",
"Book 2 Page 174*",
"18",
"27 / 30 / 33",
"10",
"15 / 24",
"15 / 16",
"25"
],
[
"",
"Book 2 Page 238*",
"19",
"27 / 30 / 33",
"10",
"15 / 24",
"15 / 16",
"25"
],
[
"",
"Book 2 Page 296*",
"21",
"27 / 30 / 33",
"10",
"15 / 24",
"15 / 16",
"25"
],
[
"",
"Book 2 Page 355*",
"27",
"27 / 30 / 33",
"10",
"15 / 24",
"15 / 16",
"25"
]
]
},
{
"caption": "",
"rows": [
[
"SLOT",
"GEAR"
],
[
"Head",
""
],
[
"Neck",
"Nightgaunt Cloak of Stoutnessa (attached to coat)[1]"
],
[
"Jacket",
"Unenchanted Leather Coat (missing right arm)[2]"
],
[
"Undershirt",
"Trollskin Shirt of Pummelingb[1]"
],
[
"Wrists",
"War Gauntlet of the Exalted Grullf (right wrist)[3]"
],
[
"Hands",
"Silver Ring of +1 CON (unspecified finger)d[4]Silver Ring of +2 CONe (left ring finger)[5]"
],
[
"Legs",
"Enchanted BigBoi Boxersg[6]"
],
[
"Knees",
"Spiked Kneepads of the Shade Gnoll Riot Forces[7]"
],
[
"Feet",
"Toe Ring of the Splatter Skunkc (right index toe)[1]"
],
[
"Tattoos",
"Desperado Pass Tattoo (neck)[5]Goblin Pass Tattoo (left inner forearm)[8]"
],
[
"Other",
"Enchanted Pedicure Kit of the Sylph[9]"
]
]
},
{
"caption": "",
"rows": [
[
"SLOT",
"GEAR"
]
]
},
{
"caption": "",
"rows": [
[
"SKILL",
"STARTING LEVEL",
"FINAL LEVEL",
"NOTES"
],
[
"Bomb Surgeon",
"Acquired",
"1*",
"Compensated Anarchist"
],
[
"Trap Engineer",
"Acquired",
"1*",
"Compensated Anarchist"
],
[
"Unarmed Combat",
"3",
"4",
"Compensated Anarchist"
],
[
"Hide in Shadows",
"Acquired",
"2",
"Compensated Anarchist"
],
[
"Find Trap",
"Acquired",
"5",
"Compensated Anarchist"
],
[
"Backfire",
"Acquired",
"5",
"Compensated Anarchist"
],
[
"Escape Plan",
"Acquired",
"5",
"Compensated Anarchist"
],
[
"Cesta Punta",
"Acquired",
"3",
""
],
[
"Iron Punch",
"3",
"10",
""
],
[
"Alchemy",
"",
"3",
""
]
]
},
{
"caption": "",
"rows": [
[
"SPELL",
"STARTING LEVEL",
"FINAL LEVEL",
"NOTES"
],
[
"Fear",
"",
"3",
""
]
]
},
{
"caption": "",
"rows": [
[
"TIME",
"LEADERBOARD",
"VIEWS",
"FOLLOWERS",
"FAVORITES",
"PATRONS"
]
]
}
],
"donut_floor1": "This page documents Princess Donut's levels, stats, skills, and gear on the First Floor (5 Days).\n\nCarl\tFloor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9\nDonut\tFloor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9\nJump To Section\tGear \u2022 Levels & Stats \u2022 Skills \u2022 Spells \u2022 Passive Effects \u2022 Ratings\nContents\n1\tGear\n1.1\tStarting Gear\n1.2\tGained Gear\n1.3\tEnding Gear\n2\tLevels & Stats\n3\tSkills\n4\tSpells\n5\tPassive Effects\n6\tReferences\nGear\nStarting Gear\n\nDonut enters the Dungeon wearing a collar and nothing else.\n\nGained Gear\n\nWithin one hour, she grows slightly larger as a result of her transformation from the Enhanced Pet Biscuit and equips the Enchanted Crown of the Sepsis Whore.[1] Just under seven hours later, she receives and equips the Talisman of the Slate Butterfly.[2]\n\nWith two days and 18 hours to level collapse, she receives a Desperado Pass Tattoo just above her right shoulder blade; it glows through her fur, but looks like nothing so much as a gold-colored splotch. At the same time, she gains and equips the Enchanted Fae Scale Quadruped Crupper of the Fleet.[3]\n\nWith less than 40 hours remaining in the Dungeon, she gains a Bracelet of +2 DEX, which she equips on her front leg.[4]\n\nEnding Gear\nSLOT\tGEAR\tNOTES\nHead\tEnchanted Crown of the Sepsis Whore\t\nNeck\tTalisman of the Slate Butterfly\ton collar\nWaist\tEnchanted Fae Scale Quadruped Crupper of the Fleet\t\nLegs\tBracelet of +2 DEX (front leg)\t\nTattoos\tDesperado Pass Tattoo (back)\t\nLevels & Stats\nTIME\tNOTES\tLEVEL\tSTR\tINT\tCON\tDEX\tCHA\n4 d 23h[5]\tStarting Stats (Cat)\t1\t1\t1\t1\t8\t5\n4 d 23h[6]\tAfter Enhanced Pet Biscuit\t1\t11\t11\t2\t8\t25\n4 d 23h[7]\tEnchanted Crown of the Sepsis Whore +5 INTa\t1\t11\t11/16a\t2\t8\t25\n4 d 20h[8]\tLevel Up w/ Enhanced Growth Buff\t2\t12\t12/17a\t2\t8\t27\n4 d 17h[9]\tTalisman of the Slate Butterfly +1 INTb\t2\t12\t12/18ab\t2\t8\t27\n4 d 01h[10]\tLevel 5 w/ Enhanced Growth buff\t5\t15\t15/21ab\t2\t8\t33\n3 d 02h[11]\tLevel 7 w/ Enhanced Growth buff\t7\t17\t17/23ab\t2\t8\t37\n2 d 23h[12]\tLevel 8 (+1STR +1INT +2CHR)\t8\t18\t18/24ab\t2\t8\t39\n2 d 18h[13]\tFae Scale Crupper +2DEXc\t8\t18\t18/24ab\t2\t8/10c\t39\n< 1 d 16h[14]\tLevel 9 (+1STR +1INT +2CHR)\t9\t19\t19/25ab\t2\t8/10c\t41\n< 1 d 16h[15]\tBracelet of +2 DEXd\t9\t19\t19/25ab\t2\t8/12cd\t41\n0 d 05h[16]\tLevel 10 (+1STR +1INT +2CHR)\t10\t20\t20/26ab\t2\t8/12cd\t43\nSee Also: Player Stats\nSkills\nSKILL\tSTARTING LEVEL\tFINAL LEVEL\t\nCollapse\nNOTES\nBack Claw\t4[17]\t\t\nDodge Skill\t\t4[4]\t\nLight on Your Feet Skill\t3[2]\t3 / 7b\tTalisman of the Slate Butterfly +4[2]b\nGood First Impression Skill\t5\t5\tFrom Enchanted Crown of the Sepsis Whore\nSlice Attack\t4[17]\t\t\nSpells\nSPELL\tSTARTING LEVEL\tFINAL LEVEL\t\nCollapse\nNOTES\nMagic Missile\t1\t5[18]\t\nPuddle Jumper Spell\t1[4]\t\tGained after fighting the Juicer[4]\nTorch Spell\t1\tn/a\tGained after fight against Hoarder[19]\nPassive Effects\nAll Attacks Gain:\n+15% chance to inflict Sepsis Debuff (from Crown).\nMemberships\nDesperado Club access (from Desperado Pass Tattoo).\nOther\nWinged Fairies are white-tagged (from Talisman).\nWith her talisman and crupper, she sounds like a bell when she hops or moves.[20]\nReferences\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 7)\n\u2191 \nJump up to:\n2.0 2.1 2.2 Dinniman, Matt. Dungeon Crawler Carl (Chapter 9)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 19)\n\u2191 \nJump up to:\n4.0 4.1 4.2 4.3 Dinniman, Matt. Dungeon Crawler Carl (Chapter 25)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 7) (p. 63). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 7) (pp.61-62). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 7) (p.64). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 8) (p.77). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 9) (p. 84). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 10) (p. 92). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 15) (p. 122). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 18) (p. 138). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 19) (p. 147). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 25) (p. 196). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 25) (p. 197). Dandy House. Kindle Edition.\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 27) (p. 220). Dandy House. Kindle Edition.\n\u2191 \nJump up to:\n17.0 17.1 Dinniman, Matt. Dungeon Crawler Carl (Chapter 10)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 23)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 12)\n\u2191 Dinniman, Matt. Dungeon Crawler Carl (Chapter 30)",
"donut_floor2": [
{
"caption": "",
"rows": [
[
"Carl",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Donut",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Jump To Section",
"Gear \u2022 Levels & Stats \u2022 Skills \u2022 Spells \u2022 Passive Effects \u2022 Ratings"
]
]
},
{
"caption": "",
"rows": [
[
"TIME",
"NOTES",
"LEVEL",
"STR",
"INT",
"CON",
"DEX",
"CHA"
],
[
"6 d 05h[2]",
"Base Stats",
"10",
"20",
"20",
"2",
"8",
"43"
],
[
"6 d 05h",
"w/ Enchanted Crown of the Sepsis Whore +5 INTa",
"10",
"20",
"20/25a",
"2",
"8",
"43"
],
[
"6 d 05h",
"w/ Talisman of the Slate Butterfly +1 INTb",
"10",
"20",
"20/26ab",
"2",
"8",
"43"
],
[
"6 d 05h",
"w/ Fae Scale Crupper of the Fleet +2 DEXc",
"10",
"20",
"20/26ab",
"2",
"8/10c",
"43"
],
[
"6 d 05h",
"w/ Bracelet of +2 DEXd",
"10",
"20",
"20/26ab",
"2",
"8/12cd",
"43"
],
[
"~5 d 02h[3]",
"Level 11 (+1STR +1INT +2CHR)",
"11",
"21",
"21/27ab",
"2",
"8/12cd",
"45"
],
[
"~5 d 00h[4]",
"Enchanted Fur Brush of the Ecclesiastic +2CONe",
"11",
"21",
"21/27ab",
"2/4e",
"8/12cd",
"45"
]
]
},
{
"caption": "",
"rows": [
[
"SKILL",
"STARTING LEVEL",
"FINAL LEVEL",
"NOTES"
],
[
"Back Claw",
"4[5]",
"",
""
],
[
"Dodge Skill",
"4[6]",
"",
""
],
[
"Light on Your Feet Skill",
"3 / 7b",
"",
"Talisman of the Slate Butterfly +4[7]b"
],
[
"Good First Impression Skill",
"5",
"",
"From Enchanted Crown of the Sepsis Whore"
],
[
"Slice Attack",
"4[5]",
"",
""
]
]
},
{
"caption": "",
"rows": [
[
"SLOT",
"GEAR"
],
[
"Head",
"Enchanted Crown of the Sepsis Whorea[8]"
],
[
"Neck",
"Talisman of the Slate Butterflyb (on collar)[7]"
],
[
"Waist",
"Enchanted Fae Scale Quadruped Crupper of the Fleetc[9]"
],
[
"Legs",
"Bracelet of +2 DEXd (front leg)[6]"
],
[
"Tattoos",
"Desperado Pass Tattoo (back)[9]"
]
]
},
{
"caption": "",
"rows": [
[
"SLOT",
"GEAR"
],
[
"Head",
"Enchanted Crown of the Sepsis Whorea[8]"
],
[
"Neck",
"Talisman of the Slate Butterflyb (on collar)[7]"
],
[
"Waist",
"Enchanted Fae Scale Quadruped Crupper of the Fleetc[9]"
],
[
"Legs",
"Bracelet of +2 DEXd (front leg)[6]"
],
[
"Tattoos",
"Desperado Pass Tattoo (back)[9]"
]
]
},
{
"caption": "",
"rows": [
[
"SPELL",
"STARTING LEVEL",
"FINAL LEVEL",
"NOTES"
],
[
"Magic Missile",
"5[11]",
"",
""
],
[
"Puddle Jumper Spell",
"1[6]",
"",
""
],
[
"Second Chance Spell",
"1[12]",
"4[13]",
""
],
[
"Torch Spell",
"n/a",
"",
""
]
]
},
{
"caption": "",
"rows": [
[
"TIME",
"VIEWS",
"FOLLOWERS",
"FAVORITES",
"PATRONS"
],
[
"5 d 10h[13]",
"~ 69 Billion",
"~ 635,000,000",
"~ 298,000,000",
"n/a"
],
[
"~4 d 12h[14]",
"1 trillion",
"",
"",
"n/a"
]
]
}
],
"donut_floor3": [
{
"caption": "",
"rows": [
[
"Carl",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Donut",
"Floor 1 \u2022 2 \u2022 3 \u2022 4 \u2022 5 \u2022 6 \u2022 7 \u2022 8 \u2022 9"
],
[
"Jump To Section",