-
Notifications
You must be signed in to change notification settings - Fork 0
/
1967242941.html
1069 lines (727 loc) · 82.1 KB
/
1967242941.html
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
<!DOCTYPE html><html><head><meta name="robots" content="noindex" /><title>Tilescape GOTHIC CITY 3D Printable Modular Building System</title> <link rel="stylesheet" href="./sample.css"><style>body{margin: 3cm;}</style></head><body><br><br><h1>Tilescape GOTHIC CITY 3D Printable Modular Building System</h1><br><iframe style="margin-bottom: 1cm;" width="800" height="450" src="https://www.kickstarter.com/projects/rocketpiggames/tilescape-gothic-city-3d-printable-modular-buildin//widget/video.html" frameborder="0" scrolling="no"> </iframe><div data-slug="rocketpiggames/tilescape-gothic-city-3d-printable-modular-buildin" id="react-campaign"><section class="project-content"><div class="row"><nav class="col col-2 important-stick-md hide block-lg pb4 pl0 t20-md"><div><a href="#story" class="type-13 text-left ls0_2px text-decoration-none-important hover-ksr-green-500 block relative text-uppercase pb3 border-bottom dark-grey-500">Story</a></div><div><a href="#risks-and-challenges" class="type-13 text-left ls0_2px text-decoration-none-important hover-ksr-green-500 block relative text-uppercase py3 dark-grey-500">Risks</a></div></nav><div class="col col-12 grid-col-10-lg"><div class="max-w113 m-auto"><div><div><div><div id="story" class="mb3"><h3 class="normal mb3 mb7-sm mobile-hide">Story</h3></div><div class="rte__content"><div><p>Hello new backers! Before you choose your reward level, please watch this informative video and read the updates! Lots of great info about pledging in there!</p><div class="text-center clip mb5"><div class="my-6"><a href="https://youtu.be/KE_g6zCoh08" class="embedly-card" data-card-controls="0" data-card-width="100%"></a></div></div>
<p>Tilescape 2.0 is a modular building system which allows for the ultimate customization of terrain. With our system you will have total control over your structures. There are several unique possibilities for your floors, streets, buildings (inner and outer walls), accessories, and roofs.</p>
<p>~ Intuitive/fast building single piece tile system
<br>~ Modular vertical walls insert-able walls/posts/columns<br>~ Insert-able doors and windows <br>~ Insert-able accessories and decorations (curtains, traps, etc)</p><p>Gothic City is the newest completely customizable terrain project from Rocket Pig Games. We provide you with the .stl files and you bring them to life on your 3D printer. It utilizes our Tilescape 2.0 building system which features totally modular building components from the ground up! </p><p>~ Universal and Versatile Set will work well with many types of gaming!<br> (Call of Cthulhu, Iron Kingdoms/WarmaHordes, Malifaux, DnD, Steampunk, Victorian/Gothic settings, etc)
<br>~ The Biggest Lovecraftian/Gothic horror monster miniatures ever made!
<br>~ The most complex roof system available anywhere!<br>~
Make unique buildings in any shape and size!<br>~
Only modular system that has authentic medieval overhanging building<br> floors.<br>~ The Gothic City Streets Core set also makes an a very good Dungeon tile-set.<br>~ Gothic City supplies everything you need to create a full medieval or<br> Industrial Fantasy city!</p><p>~ Our unique and varied wooden floor planks, whimsical stone alleys, and brick streets can be used in their traditional way or as building interior floors, pathways, or balcony flooring. </p><div class="template asset" contenteditable="false" data-alt-text="Gothic City Buildings & Streets" data-caption="Gothic City Buildings & Streets" data-id="23734826">
<figure>
<img alt="Gothic City Buildings & Streets" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/734/826/594c3692775187ddd8936c327aceb9d4_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546990947&auto=format&frame=1&q=92&s=654352f1dc8c11db4e2058d0029b18df" src="https://ksr-ugc.imgix.net/assets/023/734/826/594c3692775187ddd8936c327aceb9d4_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546990947&frame=1&s=75f31ebd8b102d4d685516608307895f">
<figcaption class="px2">Gothic City Buildings & Streets</figcaption>
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="Limitless options for building shapes, types, and sizes!" data-caption="Limitless options for building shapes, types, and sizes!" data-id="23735120">
<figure>
<img alt="Limitless options for building shapes, types, and sizes!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/120/dc7e61c19bee0fac3feb60b9a50d84f2_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546993536&auto=format&frame=1&q=92&s=23f7366e6232c06bb5feb99a94795a2a" src="https://ksr-ugc.imgix.net/assets/023/735/120/dc7e61c19bee0fac3feb60b9a50d84f2_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546993536&frame=1&s=b4effff0a2b196da607828f634fb333a">
<figcaption class="px2">Limitless options for building shapes, types, and sizes!</figcaption>
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="Make amazing streets and ally-ways with unique tiles!" data-caption="Make amazing streets and ally-ways with unique tiles!" data-id="23735514">
<figure>
<img alt="Make amazing streets and ally-ways with unique tiles!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/514/6e1f64e8c8d15a846708258b898243f7_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546997493&auto=format&frame=1&q=92&s=804b9e4d4b54e45b83e8ba254e1c8488" src="https://ksr-ugc.imgix.net/assets/023/735/514/6e1f64e8c8d15a846708258b898243f7_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546997493&frame=1&s=9bc09d6672df46a9ab5ef88349641c63">
<figcaption class="px2">Make amazing streets and ally-ways with unique tiles!</figcaption>
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="Create villages, cities, or forest cabins with our generous selection of stone and wood walls and roads!" data-caption="Create villages, cities, or forest cabins with our generous selection of stone and wood walls and roads!" data-id="23735525">
<figure>
<img alt="Create villages, cities, or forest cabins with our generous selection of stone and wood walls and roads!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/525/1b26c5f0177e3a86af8620602db0230a_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546997618&auto=format&frame=1&q=92&s=a5476cc2d5a988769e9d8b6a252ded0e" src="https://ksr-ugc.imgix.net/assets/023/735/525/1b26c5f0177e3a86af8620602db0230a_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546997618&frame=1&s=069498594cda24e6254cc598af2874cf">
<figcaption class="px2">Create villages, cities, or forest cabins with our generous selection of stone and wood walls and roads!</figcaption>
</figure>
</div>
<p>~ Our modular interior walls are insertable and can be arranged however you see fit and the exterior walls can soar to great heights or expand in any direction. Add dimension to your landscape by making your buildings as tall or as short as you want! </p><div class="template asset" contenteditable="false" data-alt-text="Gothic City Insert-able walls can be configured any way you want!" data-caption="Gothic City Insert-able walls can be configured any way you want!" data-id="23734861">
<figure>
<img alt="Gothic City Insert-able walls can be configured any way you want!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/734/861/895bca36093a91fcaba8d4b74af8c417_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546991110&auto=format&frame=1&q=92&s=84d139505a2fad6530b06a7f372469ad" src="https://ksr-ugc.imgix.net/assets/023/734/861/895bca36093a91fcaba8d4b74af8c417_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546991110&frame=1&s=f0eeee8fe90cb2d8522f2ec30a43ef11">
<figcaption class="px2">Gothic City Insert-able walls can be configured any way you want!</figcaption>
</figure>
</div>
<p>~ Our legendary roofing system allows you to expand your rooftops to create practically any shape roof you can imagine and comes complete with gables, eaves, and dormers!</p><div class="template asset" contenteditable="false" data-alt-text="Gothic City Roof Systems can be configured in almost any shape and style!" data-caption="Gothic City Roof Systems can be configured in almost any shape and style!" data-id="23734884">
<figure>
<img alt="Gothic City Roof Systems can be configured in almost any shape and style!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/734/884/6ea36604db6d397b4ffcea915a8e89b7_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546991208&auto=format&frame=1&q=92&s=ef8d01e07fd93177aaeb7d1f308bccb7" src="https://ksr-ugc.imgix.net/assets/023/734/884/6ea36604db6d397b4ffcea915a8e89b7_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546991208&frame=1&s=993c9d5f4a1dad4f6c0e8a430e08b6a1">
<figcaption class="px2">Gothic City Roof Systems can be configured in almost any shape and style!</figcaption>
</figure>
</div>
<p>Some examples of areas to create within Gothic City include:</p><p>- The warm and welcoming residential district with timber-framed homes, beautiful brick walkways, meandering alleyways, and quaint street lamps. </p><div class="template asset" contenteditable="false" data-alt-text="Gothic City Residential Neighborhood" data-caption="Gothic City Residential Neighborhood" data-id="23734976">
<figure>
<img alt="Gothic City Residential Neighborhood" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/734/976/4acdd0497bc73ddc41336638bc8af07f_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546991946&auto=format&frame=1&q=92&s=83c4c21a54a222012862628b41583c0e" src="https://ksr-ugc.imgix.net/assets/023/734/976/4acdd0497bc73ddc41336638bc8af07f_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546991946&frame=1&s=9b3c62b2b3ecdd0c990636a9dae27001">
<figcaption class="px2">Gothic City Residential Neighborhood</figcaption>
</figure>
</div>
<p>- Serene network of bridges to weave throughout your city.</p><div class="template asset" contenteditable="false" data-alt-text="Create bridges of any length or shape!" data-caption="Create bridges of any length or shape!" data-id="23734995">
<figure>
<img alt="Create bridges of any length or shape!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/734/995/a374229092774802b0b9f03bb66a23fd_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546992193&auto=format&frame=1&q=92&s=fbbc89f7c78acdedf710e927b55f6874" src="https://ksr-ugc.imgix.net/assets/023/734/995/a374229092774802b0b9f03bb66a23fd_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546992193&frame=1&s=d089b6e92b4c820b194be1c457e56e27">
<figcaption class="px2">Create bridges of any length or shape!</figcaption>
</figure>
</div>
<p>- Use your Gothic Streets and Buildings to surround the Mythical Castle! </p><div class="template asset" contenteditable="false" data-alt-text="Gothic City Castle parts and Gothic City Buildings parts can be combined to create amazing structures!" data-caption="Gothic City Castle parts and Gothic City Buildings parts can be combined to create amazing structures!" data-id="23735033">
<figure>
<img alt="Gothic City Castle parts and Gothic City Buildings parts can be combined to create amazing structures!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/033/5e4ad397c5eb4e96d355179084fa1d40_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546992578&auto=format&frame=1&q=92&s=fe3cf68d829bdb2146ebf0946b92422b" src="https://ksr-ugc.imgix.net/assets/023/735/033/5e4ad397c5eb4e96d355179084fa1d40_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546992578&frame=1&s=6020538b5f343d1b97432003ce9fbb50">
<figcaption class="px2">Gothic City Castle parts and Gothic City Buildings parts can be combined to create amazing structures!</figcaption>
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="Create your inner castle anyway you choose with insert able walls and placeables!" data-caption="Create your inner castle anyway you choose with insert able walls and placeables!" data-id="23735044">
<figure>
<img alt="Create your inner castle anyway you choose with insert able walls and placeables!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/044/8ba1a03cf6bf623910c2a9589c5b786f_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546992668&auto=format&frame=1&q=92&s=e7f23a63fe7c93299bdd85f0c4d55f22" src="https://ksr-ugc.imgix.net/assets/023/735/044/8ba1a03cf6bf623910c2a9589c5b786f_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546992668&frame=1&s=724dd6f1f344bc1e3f90db3844391444">
<figcaption class="px2">Create your inner castle anyway you choose with insert able walls and placeables!</figcaption>
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="Amazing Castle with so many building options!" data-caption="Amazing Castle with so many building options!" data-id="23738677">
<figure>
<img alt="Amazing Castle with so many building options!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/738/677/4fc4fa6579ed834ed08b69cb27769665_original.JPG?ixlib=rb-4.0.2&w=680&fit=max&v=1547033770&auto=format&frame=1&q=92&s=37ea33726890e3582c8e0a2ebd85048b" src="https://ksr-ugc.imgix.net/assets/023/738/677/4fc4fa6579ed834ed08b69cb27769665_original.JPG?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547033770&frame=1&s=c4d69ec241f4196c3b387b32d962f450">
<figcaption class="px2">Amazing Castle with so many building options!</figcaption>
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23738685">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/738/685/d9650dc1938f98079116363a440d617d_original.JPG?ixlib=rb-4.0.2&w=680&fit=max&v=1547033817&auto=format&frame=1&q=92&s=f87c797561cfa62d6e009aa8c270c7dd" src="https://ksr-ugc.imgix.net/assets/023/738/685/d9650dc1938f98079116363a440d617d_original.JPG?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547033817&frame=1&s=9d2fb43b1cb59f10b80619cea19bfd8c">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="Look at this drawbridge!" data-caption="Look at this drawbridge!" data-id="23738686">
<figure>
<img alt="Look at this drawbridge!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/738/686/3ad2be6d71e9c08d95e87236b11c7438_original.JPG?ixlib=rb-4.0.2&w=680&fit=max&v=1547033848&auto=format&frame=1&q=92&s=ace02ada2d0dbb8deb4f57270f49b362" src="https://ksr-ugc.imgix.net/assets/023/738/686/3ad2be6d71e9c08d95e87236b11c7438_original.JPG?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547033848&frame=1&s=836924da7efacc053694ba2bcd8ca254">
<figcaption class="px2">Look at this drawbridge!</figcaption>
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="Enemies still cannot pass!" data-caption="Enemies still cannot pass!" data-id="23738690">
<figure>
<img alt="Enemies still cannot pass!" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/738/690/d929f9fbf78edd354f51e83a71939a68_original.JPG?ixlib=rb-4.0.2&w=680&fit=max&v=1547033879&auto=format&frame=1&q=92&s=bd0115c28dbc735529820ee843dd3b5e" src="https://ksr-ugc.imgix.net/assets/023/738/690/d929f9fbf78edd354f51e83a71939a68_original.JPG?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547033879&frame=1&s=bfd1cd7cda0d2bf194440b10a190ac5e">
<figcaption class="px2">Enemies still cannot pass!</figcaption>
</figure>
</div>
<p>- The charming merchant district with a towering cathedral, stately brick storefronts, display windows, and awnings.</p><p>(See Add-Ons for Images)</p><p>- The buzzing industrial sector with grand factories and smokestacks.</p><p>(See Add-Ons for Images)</p><p>- And so much more!</p><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23723542">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/723/542/e6d7f05abe60703f41610272ca0fb4ab_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546893209&auto=format&frame=1&q=92&s=fe1c603501b928f54f095e3c6e7128ff" src="https://ksr-ugc.imgix.net/assets/023/723/542/e6d7f05abe60703f41610272ca0fb4ab_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546893209&frame=1&s=3332e83c8bf27b7d8dbd07ab2bcc6540">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23735389">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/389/45a27194f708057ea91e51cdb1da181f_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546996409&auto=format&frame=1&q=92&s=ded0bbd4bc1b2f9e753709e3d923f314" src="https://ksr-ugc.imgix.net/assets/023/735/389/45a27194f708057ea91e51cdb1da181f_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546996409&frame=1&s=9a9534ba7ff3b469ef1c39e10ca0f8e6">
</figure>
</div>
<p>Gothic City is comprised of THREE CORE SETS. All three sets will be available to download upon release so you can begin printing right away!</p><ul>
<li>Street Rampways+Sidewalk variant</li>
<li>Street Stairs x4 variants</li>
<li>Brick Walls w/ double+triple wall variants (including windows+doors) 20+ pieces</li>
<li>Street Floors w/ Posts x5 variants</li>
<li>Brick Roads+Sidewalks (including grates+design variants) 10+ pieces</li>
</ul><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23735397">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/397/613cc14fb35f8d9db54ee951ff3d8bf6_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546996483&auto=format&frame=1&q=92&s=f66652652b3b0a26efc7e1e2bbe576f4" src="https://ksr-ugc.imgix.net/assets/023/735/397/613cc14fb35f8d9db54ee951ff3d8bf6_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546996483&frame=1&s=db87dfd80bdedb7df3564b5b66ced107">
</figure>
</div>
<ul>
<li>Wood Plank Floor</li>
<li>Wood Floors w/ Posts x5 variants</li>
<li>Building Columns for Exteriors+Interiors</li>
<li>Building Walls w/ double+triple wall variants (including windows+doors) 20+ pieces</li>
<li>2x3 and 1x3 Wall Extensions (including window variants) 10+ pieces</li>
<li>Building Support Beams</li>
<li>Modular Roof System w/ Endcaps+Window variants 15+ pieces</li>
<li>Overhang Roof Trim 10+ pieces</li>
<li>Insertable Wall+Posts System 10+ pieces</li>
<li>Placeable Stairs</li>
</ul><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23735405">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/405/b79ca06c22014614c67228745ecf1e8a_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546996556&auto=format&frame=1&q=92&s=7d40af89c7de5a6e1012a7cf7c071958" src="https://ksr-ugc.imgix.net/assets/023/735/405/b79ca06c22014614c67228745ecf1e8a_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546996556&frame=1&s=b99a2ec1f9d7083adb503002baac205d">
</figure>
</div>
<ul>
<li>Hoarding Extensions w/ Roofs 10+ pieces</li>
<li>Castle Peak Roofs
Side Trimming 10+ pieces</li>
<li>Castle Crenellations 5+ pieces</li>
<li>Grand Staircase pieces</li>
<li>Insertable Spiral Staircase pieces</li>
<li>Castle Gate w/ Doors+Portcullis</li>
<li>Curved Castle Walls w/ windows+door variants 5+ pieces
</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714129">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/129/ca01f40dcfa2b4605dabf47099758310_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804397&auto=format&frame=1&q=92&s=e52a174236ec05efc82c415909f1184d" src="https://ksr-ugc.imgix.net/assets/023/714/129/ca01f40dcfa2b4605dabf47099758310_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804397&frame=1&s=074c30f2b45b3117c912273d05f270bb">
</figure>
</div>
<p>Gothic City has the most amazing add-ons available to boost the value of your investment. All of our add-on content is completely modular and easily incorporated into any other part of the city. You are not simply buying a "castle" or a "train station", you're getting the pieces you need to create anything you can imagine! </p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714133">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/133/0077bc0b65019bdb9e0cef97a132f3e7_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804408&auto=format&frame=1&q=92&s=0da2cc6deff66acf5e0e91c6cdb3a9e9" src="https://ksr-ugc.imgix.net/assets/023/714/133/0077bc0b65019bdb9e0cef97a132f3e7_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804408&frame=1&s=98b944baef84fe6ba88a83818a2ee56e">
</figure>
</div>
<ul>
<li>2 Modular Zeppelin variants w/ Interior Cabins</li>
<li>Personal Hot Air Balloon
</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714076">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/076/d4a24af269305a8f09e69ad2c4411afe_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804140&auto=format&frame=1&q=92&s=3454bd3f6fae649b0b85605e76e45fe9" src="https://ksr-ugc.imgix.net/assets/023/714/076/d4a24af269305a8f09e69ad2c4411afe_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804140&frame=1&s=47701b826d646ed93cddb5b17a891af7">
</figure>
</div>
<ul>
<li>Horses</li>
<li>Wooden Carriage</li>
<li>Market Carriage</li>
<li>Royal Carriage</li>
<li>House Carriage</li>
<li>Four Horse Carriage</li>
<li>Barrel Cart</li>
<li>Cargo Cart</li>
<li>Market Cart</li>
<li>Hay Cart</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714083">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/083/998a4c8904715348eb134a4fe8feb047_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804166&auto=format&frame=1&q=92&s=b8ad79c7f9e37ee99e18c3ad864e177e" src="https://ksr-ugc.imgix.net/assets/023/714/083/998a4c8904715348eb134a4fe8feb047_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804166&frame=1&s=012037f8ba2b668ba9545d66e8ff8128">
</figure>
</div>
<ul>
<li>Cathedral Floor</li>
<li>Cathedral Floors w/ Posts x10 variants</li>
<li>Standard and Double Height Cathedral Columns</li>
<li>Cathedral Railings 5+ pieces</li>
<li>Cathedral Walls x6 pieces</li>
<li>Cathedral Double Height Walls w/ Exterior Support variants 20+ pieces</li>
<li>Cathedral Roofs w/ Spire Roof Piece</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23715105">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/715/105/57a4e679da410622d4c53f462945ed69_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546813836&auto=format&frame=1&q=92&s=0d6bad1606133cf4ad9bcb812c6fc784" src="https://ksr-ugc.imgix.net/assets/023/715/105/57a4e679da410622d4c53f462945ed69_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546813836&frame=1&s=9374c6acd1fd6a2af334a22789c62a74">
</figure>
</div>
<ul>
<li>Modular ground and cemetery gate/door tiles</li>
<li>Gravestones</li>
<li>Grave markers</li>
<li>Mausoleums</li>
<li>Coffin</li>
<li>Giant Grim Reaper Statue</li>
<li>Dead Tree prop</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714088">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/088/5a97e69b1a924dfb9209738ebd3174b2_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804189&auto=format&frame=1&q=92&s=2c4b7e4af50e2ffa232d6b22796fce6c" src="https://ksr-ugc.imgix.net/assets/023/714/088/5a97e69b1a924dfb9209738ebd3174b2_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804189&frame=1&s=a5def908b13cd2522377f0040e4754f1">
</figure>
</div>
<ul>
<li>Crypt Single Walls x4 variants</li>
<li>Crypt Double Walls x4 variants</li>
<li>Crypt Floors w/ Posts x5 variants</li>
<li>Crypt Column</li>
<li>Bone Piles</li>
<li>Insertable Wall Torches</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23715102">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/715/102/636e782ad57fe8d6523421a78ccda438_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546813823&auto=format&frame=1&q=92&s=da56dbfd207ee569567b5417ca757392" src="https://ksr-ugc.imgix.net/assets/023/715/102/636e782ad57fe8d6523421a78ccda438_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546813823&frame=1&s=93bc5912d1740c58cf625d2930ae10ed">
</figure>
</div>
<ul>
<li>Placeable Stairs</li>
<li>Water Tile</li>
<li>Dock Floors w/ Water 10+ pieces</li>
<li>Dock Stair Tiles x3 variants</li>
<li>Raised Dock Floors x3 variants</li>
<li>Canal Gates x4 variants</li>
<li>Canal Locks (Standard+Double Height)</li>
<li>Canal Walls and Corners (Standard+Double Height)</li>
<li>Water Wheel</li>
<li>Shanty Walls+Corners w/ Window+Door variants 5+ pieces</li>
<li>Shanty Roofs</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714096">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/096/d19d271095d44e7d9c08bf53b85a3c95_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804213&auto=format&frame=1&q=92&s=5033354565cc66555eaa70cddf8b2732" src="https://ksr-ugc.imgix.net/assets/023/714/096/d19d271095d44e7d9c08bf53b85a3c95_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804213&frame=1&s=34b6120bd967515026898f351f86f7f0">
</figure>
</div>
<ul>
<li>Industrial Pipe Tiles 5+ pieces</li>
<li>Industrial Floors</li>
<li>Flattop Roofs w/ Smokestack Tile</li>
<li>Roof Railings</li>
<li>Sheet Metal Roofs x4 variants</li>
<li>Industrial Floors w/ Posts x5 variants</li>
<li>Industrial Double Height Walls+Corners 10+ pieces</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714100">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/100/d3aee229663b1f201d737396d94b5fd2_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804225&auto=format&frame=1&q=92&s=e318b00a08e093a488a1f51194653514" src="https://ksr-ugc.imgix.net/assets/023/714/100/d3aee229663b1f201d737396d94b5fd2_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804225&frame=1&s=5aa7b4a8deb3bed7e763667a9ac61a73">
</figure>
</div>
<ul>
<li>Trimming w/ Hanging Sign Post (including Signs)</li>
<li>Awnings x6 variants</li>
<li>Theater Signs x3 variants</li>
<li>Storefront Window Walls w/ Diagonal+Corner Variants 15+ pieces</li>
<li>Flattop Roofs</li>
<li>Roof Railings</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714104">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/104/068caf281cafe30de85fa9aea48fde0e_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804242&auto=format&frame=1&q=92&s=f4ef1a09261b03429878d4a8a996d08b" src="https://ksr-ugc.imgix.net/assets/023/714/104/068caf281cafe30de85fa9aea48fde0e_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804242&frame=1&s=cc153d34f2b41366817835e0ca61af52">
</figure>
</div>
<ul>
<li>Log Cabin Walls w/ Window+Door variants 5+ pieces</li>
<li>Fencing</li>
<li>Grass Tile</li>
<li>Modular Windmill w/ Vane variants</li>
<li>Placeable Rocks</li>
</ul><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23735686">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/735/686/f64c892711294401f6271389f2a49cf7_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546999062&auto=format&frame=1&q=92&s=0aaf3a198410b20cd8b52367cf4b40e4" src="https://ksr-ugc.imgix.net/assets/023/735/686/f64c892711294401f6271389f2a49cf7_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546999062&frame=1&s=319d0746c0a361c8eeb39194a3744ba3">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714137">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/137/ec08a8aaa056f7918b058ba3dbe38944_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804440&auto=format&frame=1&q=92&s=cc2b2edd44e7f4748b29bf2d38243c71" src="https://ksr-ugc.imgix.net/assets/023/714/137/ec08a8aaa056f7918b058ba3dbe38944_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804440&frame=1&s=0d84e0ed7d6dd1c35227b450cfc327dd">
</figure>
</div>
<ul>
<li>Modular Dieselship</li>
<li>Modular Steamboat</li>
<li>Rowboat
</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714139">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/139/ace519804a39fd0b7c3829dae3fe7bf6_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804457&auto=format&frame=1&q=92&s=dfdd21f6eb0777d46fac8b9b01db6181" src="https://ksr-ugc.imgix.net/assets/023/714/139/ace519804a39fd0b7c3829dae3fe7bf6_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804457&frame=1&s=f83fe5714abba92b517153ec349ef590">
</figure>
</div>
<ul>
<li>Train Engine</li>
<li>Passenger Car</li>
<li>Tanker Car</li>
<li>Flatbed Car</li>
<li>Coal Car</li>
<li>Cargo Car</li>
<li>Prison Car</li>
<li>Dining Car</li>
<li>Caboose</li>
<li>Artillery Car w/ Rotating Cannons</li>
<li>Insertable Wheels</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714140">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/140/f2dc09bd3c10af859076d1dd6dfadc9b_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804468&auto=format&frame=1&q=92&s=767fb79280fd39d27cddfcae90026354" src="https://ksr-ugc.imgix.net/assets/023/714/140/f2dc09bd3c10af859076d1dd6dfadc9b_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804468&frame=1&s=117ca1d73e6d565656514f0a89fc5996">
</figure>
</div>
<ul>
<li>Train Tracks w/ Turn+Switching Track</li>
<li>Train Portal</li>
<li>Clocktower</li>
<li>Station Walls+Columns</li>
<li>Station Elevated Floors</li>
<li>Station Ramp</li>
<li>Station Roofs</li>
<li>Station Office Walls w/ double+triple wall variants (including windows+doors) 10+ pieces</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23721333">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/721/333/a5320df11807a705b8756d13442f9c4a_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546877109&auto=format&frame=1&q=92&s=1dd77a6ca1c8b358f86fe6f1cc119383" src="https://ksr-ugc.imgix.net/assets/023/721/333/a5320df11807a705b8756d13442f9c4a_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546877109&frame=1&s=713eded762a61e03a37c981ec90022c7">
</figure>
</div>
<ul>
<li>Siege Tower</li>
<li>Ballista</li>
<li>Battering Ram</li>
<li>Siege Cannon</li>
<li>Catapult</li>
<li>Cannon</li>
</ul>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="20369060">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/020/369/060/7296dfd8f35c801c2791b0bab94f0bc0_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1519686389&auto=format&frame=1&q=92&s=5145d029667aca9e9d00994d20dc81d7" src="https://ksr-ugc.imgix.net/assets/020/369/060/7296dfd8f35c801c2791b0bab94f0bc0_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1519686389&frame=1&s=951f084807f43b57d6cc4796da33602e">
</figure>
</div>
<p>Rocket Pig Games is well-known for our Epic Creature models. These are EPIC because of their size! Although one of the wonderful things about 3D printing is being able to scale things to the size you need, we have designed these models to be much grander than your typical model. They are created with supports where needed and sliced where appropriate. If you print these .stl files as we have supplied them, most will measure 12" to 20" tall and each component/piece will fit on a 6" bed. Of course, you may resize however you want as long as your printer bed can accommodate them.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714148">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/148/357a00eb219cd734e2549441c1b2a3c9_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804514&auto=format&frame=1&q=92&s=d08daaed16fd06ab05d6d0eb6ea8afa2" src="https://ksr-ugc.imgix.net/assets/023/714/148/357a00eb219cd734e2549441c1b2a3c9_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804514&frame=1&s=632cba5b51988a13c11d014a2277b35a">
</figure>
</div>
<p>Azathoth is the most ancient Outer God from beyond the reaches of space. His inevitable destruction of Gothic City and perhaps even the universe, is simply delayed by inferior beings. Yet until his arrival, mankind has many other horrors to fear.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714149">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/149/e895c8bf7dcf233437e53f0f6b84f94c_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804524&auto=format&frame=1&q=92&s=f5579579bb7058fb7c20fa2efba2de7c" src="https://ksr-ugc.imgix.net/assets/023/714/149/e895c8bf7dcf233437e53f0f6b84f94c_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804524&frame=1&s=708c8ac6257b94cd3bafe2d76029c85f">
</figure>
</div>
<p>Through nightmares and ocean voyages, one may catch a glimpse of the Great Cthulhu and lose theirselves to an unutterable truth. Although he may slumber within the sunken ruins of R'lyeh, he will certainly rise again.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714153">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/153/54614cfc01045027d2a5000d6926ed63_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804543&auto=format&frame=1&q=92&s=4a5942134eb8914481ec29a3a0b29a3a" src="https://ksr-ugc.imgix.net/assets/023/714/153/54614cfc01045027d2a5000d6926ed63_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804543&frame=1&s=d68fbcde6efa89c0b32f7af83b7912ef">
</figure>
</div>
<p>Among the shantytowns atop the docks of Gothic City, hushed gatherers of a mysterious cult worship the fabled Father Dagon, whose terror and wrath remain ever-present in sailors minds.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714154">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/154/8d99edcbac65c3dd02278baeaaf42d27_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804552&auto=format&frame=1&q=92&s=f15d5edb87e087bc4f4ad8ae8d5edb88" src="https://ksr-ugc.imgix.net/assets/023/714/154/8d99edcbac65c3dd02278baeaaf42d27_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804552&frame=1&s=c8fe58c63c15e80f2ac9a4d9e4a1730f">
</figure>
</div>
<p>Heed the rumors of cloaked playwrights traveling city to city, draped in strange symbols and gathering every passerby for their play. For this story's final act, there comes an actor that is more than man and the Eldritch King is more than a mere character.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714155">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/155/b3efcd0e7b80ed7eb2b27efd7b92ca5e_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804560&auto=format&frame=1&q=92&s=9dfc2623e17b6374e8575bf66c11cb5e" src="https://ksr-ugc.imgix.net/assets/023/714/155/b3efcd0e7b80ed7eb2b27efd7b92ca5e_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804560&frame=1&s=542640ba9b4965443207cd195f787e87">
</figure>
</div>
<p>Many are quick to dismiss the rumbling from under their feet, attributing it to the workings of the Industrial Sector. Further investigation may lead to the unsettling discovery of subterranean horrors known as Eldritch Wurms, whose tremors collapse entire cities, devouring any and all!</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714158">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/158/bffd45564ada81963fcd61658623ced1_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804576&auto=format&frame=1&q=92&s=c50c62826304e0c35490571d83bd46d4" src="https://ksr-ugc.imgix.net/assets/023/714/158/bffd45564ada81963fcd61658623ced1_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804576&frame=1&s=89ef7bb1089ab4235dc35bd091d5fe5f">
</figure>
</div>
<p>Walking amongst us is the god of a thousand faces, the cruel deceiver Nyarlathotep, greatest servant to Azathoth. His most feared avatar is one of many twisting limbs and demonic features, appearing far more evil than alien.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714159">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/159/fc83da9a88464a09cff83b361e68c36f_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804585&auto=format&frame=1&q=92&s=cd4844ed40a042cbcc9b8cf07c831693" src="https://ksr-ugc.imgix.net/assets/023/714/159/fc83da9a88464a09cff83b361e68c36f_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804585&frame=1&s=9130db515a73e6ad1539967ce83e48c5">
</figure>
</div>
<p> Seas of dead trees beyond the Outskirts hide the infinite children of Shub-Niggurath, The Black Goat of the Woods. She is a Great Old One with a vast following and shrouded in mystery.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714163">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/163/86e2cfebd9e73ac0a5d69a69907e2834_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804598&auto=format&frame=1&q=92&s=1b2705b3aba944e51febf7e9542f672f" src="https://ksr-ugc.imgix.net/assets/023/714/163/86e2cfebd9e73ac0a5d69a69907e2834_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804598&frame=1&s=900a6d167fa58ecfe5dee403cfd9a477">
</figure>
</div>
<p>Deep within the lost subterranean caverns of N'kai, time has sealed away the amorphous toad-like god known as Tsathoggua. Many expeditions are said to have perished to his horde of formless spawn, guarding against the defilement of their sanctuary by foreign creatures.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714165">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/165/9d473a675de62a5e9e930caa4daf3442_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804607&auto=format&frame=1&q=92&s=2237789335c49c493c4ceef855a690aa" src="https://ksr-ugc.imgix.net/assets/023/714/165/9d473a675de62a5e9e930caa4daf3442_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804607&frame=1&s=977bdf948fe83a8f88f93d6cbeb31058">
</figure>
</div>
<p>Beware the Curse of Yig, Father of Serpents, by avoiding his slithering children. Those deemed worthy of his punishment will find themselves unwillingly devoted and changed, forever enslaved to his word.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23714166">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/714/166/1a8ac26ed97efd2769cace1b4c3c6e22_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546804616&auto=format&frame=1&q=92&s=2b06726de1f70c89cf870774940f0187" src="https://ksr-ugc.imgix.net/assets/023/714/166/1a8ac26ed97efd2769cace1b4c3c6e22_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546804616&frame=1&s=2dfc9bc0c626be3522dc93926994a0c2">
</figure>
</div>
<p>Wise Yog-Sothoth, all-knowing cosmic entity of time and space, the Gate, the Key, and the Guardian all as one. Neither through wrath or horror should mankind fear Yog-Sothoth, but only through truly knowing him shall they be doomed.</p><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23960270">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/960/270/3c0180530551d06c9a49d326eb614c89_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549028905&auto=format&frame=1&q=92&s=603b82fe2e6de6610a184680dd11fd37" src="https://ksr-ugc.imgix.net/assets/023/960/270/3c0180530551d06c9a49d326eb614c89_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549028905&frame=1&s=6bb5dec128d773a22b0021f82383a663">
</figure>
</div>
<p>The following <span class="bold">MONSTER BONUSES</span> are <span class="bold">ONLY</span> for the PLEDGES or ADDON that includes ALL the Epic Monsters for this Kickstarter. </p><ul>
<li>
<span class="bold">MONARCH PLEDGE Level</span>
</li>
<li><span class="bold">AMBASSADOR PLEDGE Level</span></li>
<li><span class="bold">MONSTER HUNTER ADDON Package</span></li>
</ul><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23882073">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/882/073/e3ce8301f34e04860bb19f93835c1e49_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548364861&auto=format&frame=1&q=92&s=46e2f8205605773df4e2942137ffcb0d" src="https://ksr-ugc.imgix.net/assets/023/882/073/e3ce8301f34e04860bb19f93835c1e49_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548364861&frame=1&s=e6eba68fa6cf5e4c25546c6493f5dabb">
</figure>
</div>
<p><span class="bold">Dark Young</span>, the offspring of <span class="bold">Shub-Niggurath</span>, endlessly birthed throughout the wooded outskirts. Their great size and brutish power is unstoppable against most conventional attacks. If they don't crush you under their tree trunk legs, they'll surely grab and impale you with their branch-like tentacles.</p><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23882077">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/882/077/babe7052b5bed12c23b18f4fc378149e_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548364917&auto=format&frame=1&q=92&s=0da04b6ef711a85d8c7a5984373c3ebf" src="https://ksr-ugc.imgix.net/assets/023/882/077/babe7052b5bed12c23b18f4fc378149e_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548364917&frame=1&s=3708728fcc47cb47e9a9e82406f3d65b">
</figure>
</div>
<p>Not even the skies are safe when the <span class="bold">Mi-Go</span> are out, a nefarious race of intelligent fungoid crustaceans. Beware flights covered by the shade of darkness, lest they seize the opportunity to board your <span class="bold">zeppelin</span> and take whatever or whoever they please.</p><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23912252">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/912/252/8ea3002ead49e8441b282d8cd55532c4_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548680081&auto=format&frame=1&q=92&s=ce1b977038fe2e747521c5f68eaea855" src="https://ksr-ugc.imgix.net/assets/023/912/252/8ea3002ead49e8441b282d8cd55532c4_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548680081&frame=1&s=6f5902a20ce1402f2a3c2ccee5422b50">
</figure>
</div>
<p>The <span class="bold">shantytowns</span> built around the <span class="bold">docks</span> are few in visitors, linger around them too long and you'll be brought face to face with the reason why. <span class="bold">Deep Ones</span> stalk the waters, capturing unsuspecting seafarers for sacrifice or transformation, all for the glory of<span class="bold"> Dagon.</span></p><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23928729">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/928/729/354e99839ee118e76f187e20943ffd82_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548791257&auto=format&frame=1&q=92&s=11fd2fafb474fd366a9a0b287f4e258c" src="https://ksr-ugc.imgix.net/assets/023/928/729/354e99839ee118e76f187e20943ffd82_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548791257&frame=1&s=4c5767dded568bc4c1b3c50bcc541bee">
</figure>
</div>
<p>The winged demon servants known as <span class="bold">Nightgaunts </span>are a gangly and faceless terror, plucking their victims from the earth and into the skies, even venturing further into unknown realities. Those who are keen on dabbling within eldritch arts and forbidden knowledge may be visited by these creatures, who will be all to pleased in delivering them to the nightmares beyond time and space.</p><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23960117">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/960/117/329e18bed535b644161a00de7267b380_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549027637&auto=format&frame=1&q=92&s=ed7f957735b28cdd6458628349a75022" src="https://ksr-ugc.imgix.net/assets/023/960/117/329e18bed535b644161a00de7267b380_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549027637&frame=1&s=c48144c7a2299fc61e2a9ca2291a0999">
</figure>
</div>
<p>Deep within the <span class="bold">crypts</span> and under the <span class="bold">cemetery</span>, lurks a force of infestation like none other, for the culprits are the <span class="bold">Rat Things</span>. Curiously large and all too intelligent, these vermin will likely taunt their victims from the shadows and devour their bodies with twisted cruelty. Households unlucky enough to hold <span class="bold">Rat Things</span> face destruction, but peering into the eerily-human features of these fiends can destroy minds as well.</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23715094">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/715/094/18651c5367d01b7d52abc9614607dcd7_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546813736&auto=format&frame=1&q=92&s=14d279485cb673cf8e7ed1ab279fd973" src="https://ksr-ugc.imgix.net/assets/023/715/094/18651c5367d01b7d52abc9614607dcd7_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546813736&frame=1&s=bb9e0b357615edf4f41cc5e78d219552">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23715095">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/715/095/7ccf6203e5635ae5307f607d498f6fd0_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546813751&auto=format&frame=1&q=92&s=19dfc39f70ed68489e70178e3b54b562" src="https://ksr-ugc.imgix.net/assets/023/715/095/7ccf6203e5635ae5307f607d498f6fd0_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546813751&frame=1&s=c98af76ddbcc6bf6598c0fc976ad26a0">
</figure>
</div>
<p>If you're in it for the Epic Creatures then look no further! This special add-on package is for you! Get all 10 amazing Lovecraft creature models!</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23715097">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/715/097/bd7f622ae329b54e9f17cee5ba8c40d6_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546813763&auto=format&frame=1&q=92&s=25d6f0e12882623c11b3334f4e6ee1c7" src="https://ksr-ugc.imgix.net/assets/023/715/097/bd7f622ae329b54e9f17cee5ba8c40d6_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546813763&frame=1&s=11a2e10091faf853bbc4890d286c33fe">
</figure>
</div>
<p>Some of the highlights include:</p><p>- Dungeon Core
- Caverns Core
- Sewers Core
- Domain of the Fire Demon
- Prison of the Iron Sentinel
- Cliff of the Rock Giant
- Caves of the Ice Golem
- Subterranean Lair of the Water Elemental
- Shroom World
- The Mines
- Pipeworks
- .... tons of unlocked stretch goals...hundreds of unique files!</p><p>To view the King of Thieves in our store: https://www.rocketpiggames.com/store#!/King-of-Thieves/p/77009232/category=0 </p><p>To view exactly what's included:</p><p>https://www.kickstarter.com/projects/rocketpiggames/tilescape-dungeons?ref=user_menu</p>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23715099">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/715/099/e2ec8c9f3fc2b6d8caa7755546b07764_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546813787&auto=format&frame=1&q=92&s=edcba0bd068bb40772ad9d5b0a998f76" src="https://ksr-ugc.imgix.net/assets/023/715/099/e2ec8c9f3fc2b6d8caa7755546b07764_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546813787&frame=1&s=8047760678438a25f37ae53d92bb695e">
</figure>
</div>
<p> What's Included?</p><p>This package includes over 160 unique miniatures and monster models!</p><p>- Hero Core Set
- Anti-Hero Core Set
- Castle Guard Core Set
- Villagers Core Set
- Orc Horde
- Mythic Races
- Goblin Mob
- Hobgoblin Gang
- Bugbear Tribe
- Gnolls
- Lizardmen Invaders
- Ratmen Raiders
- Dwarf Warband
- Elf Clan
- Gnome Squad
- Halfling Party
- Royalty Set
- Monsters of the Realm
- The Giant
- The Hydra
- The Dragon
- Treemen
- Ogre
- Troll
- Ethereal Undead
- Kobold
- Trog
- Toadman
- Skeleton
- Dragonman
- Kultist
- Ethereal Terror
- Horse
- Devils & Demons
- and MANY, MANY, MORE.</p><div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="20369061">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/020/369/061/5e7ca7c1644f7ff40b584b88ab109d7b_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1519686411&auto=format&frame=1&q=92&s=7bb8bc9073aef1c53f8eb3718424d7c2" src="https://ksr-ugc.imgix.net/assets/020/369/061/5e7ca7c1644f7ff40b584b88ab109d7b_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1519686411&frame=1&s=e86499d22713faffdd8fe7a68baf7288">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23723485">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/723/485/0a114fa403f151ffc2e15ac524d5300b_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1546892631&auto=format&frame=1&q=92&s=bbbc8408ef6515402df44ca1a1dfcb94" src="https://ksr-ugc.imgix.net/assets/023/723/485/0a114fa403f151ffc2e15ac524d5300b_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1546892631&frame=1&s=1ea7904970f78841246f089c659cc7a1">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23739303">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/739/303/e4e5d0941bb5e23af226a85a8b8ab217_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547040344&auto=format&frame=1&q=92&s=50cc8d7a276e78bb8f7a755b53c6b3dd" src="https://ksr-ugc.imgix.net/assets/023/739/303/e4e5d0941bb5e23af226a85a8b8ab217_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547040344&frame=1&s=2db8554fef5bb469e47b900c8009b212">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23739580">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/739/580/83e48d7b9221a9a39fa84be3c91e447a_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547042875&auto=format&frame=1&q=92&s=22a9264163e7a1d1fbec5a8efb385fdb" src="https://ksr-ugc.imgix.net/assets/023/739/580/83e48d7b9221a9a39fa84be3c91e447a_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547042875&frame=1&s=429f61359c68b279b9d4373c4e0ba538">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23740709">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/740/709/e6f9c0156ec1491bcf0731e13e03d346_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547051729&auto=format&frame=1&q=92&s=058c95e5a1ba118742591bea6874e559" src="https://ksr-ugc.imgix.net/assets/023/740/709/e6f9c0156ec1491bcf0731e13e03d346_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547051729&frame=1&s=06870d1dcbd6234f6f2daf9b9ef9565f">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23740879">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/740/879/79438d5e9cb80ca4abf849055858510f_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547053139&auto=format&frame=1&q=92&s=16fdc08e06d71ed848e54b8b55c5336d" src="https://ksr-ugc.imgix.net/assets/023/740/879/79438d5e9cb80ca4abf849055858510f_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547053139&frame=1&s=765099c20b77acaf67b39c105ea3c629">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23742275">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/742/275/b7d10994636b558c5253cb0cd27c2b6c_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547062137&auto=format&frame=1&q=92&s=7dcabb470a2e4746f5a67461fe81c24c" src="https://ksr-ugc.imgix.net/assets/023/742/275/b7d10994636b558c5253cb0cd27c2b6c_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547062137&frame=1&s=cfad5516ab95c50eab1c868d32406313">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23743326">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/743/326/398b394a3f667e8bb8e2b07931724f0b_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547069577&auto=format&frame=1&q=92&s=c4b2dcf6762ade4b61a2fd74ee6dc3f1" src="https://ksr-ugc.imgix.net/assets/023/743/326/398b394a3f667e8bb8e2b07931724f0b_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547069577&frame=1&s=f9cd0fd6d95a82da4e9ba386e01c9d8d">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23745178">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/745/178/8990609e1dc1d9bb057706f3121a0d5d_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547083219&auto=format&frame=1&q=92&s=15aba92cb2e94952257fa90d2b446909" src="https://ksr-ugc.imgix.net/assets/023/745/178/8990609e1dc1d9bb057706f3121a0d5d_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547083219&frame=1&s=88bc520b4f0d2dcc34ec30f6c8f87ac8">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23750251">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/750/251/d2aa126d9770293b9415e6d372d775c8_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547135664&auto=format&frame=1&q=92&s=837c62eb5f0d52ab6168204029bade7d" src="https://ksr-ugc.imgix.net/assets/023/750/251/d2aa126d9770293b9415e6d372d775c8_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547135664&frame=1&s=25047a05af66acd80d7a602caa858e51">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23754323">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/754/323/36a576b7e4f7f365c66aaf4b3de95acf_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547167839&auto=format&frame=1&q=92&s=39501777e3aed4a12cfb3b293dcfc5f2" src="https://ksr-ugc.imgix.net/assets/023/754/323/36a576b7e4f7f365c66aaf4b3de95acf_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547167839&frame=1&s=07ae8b7e22a86b5b9be710fb1bf09272">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23767535">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/767/535/e72a712bf4abe798b94589a37bcc022c_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547320449&auto=format&frame=1&q=92&s=fac28eab83ce6b99f3bb0aa532f5a6f9" src="https://ksr-ugc.imgix.net/assets/023/767/535/e72a712bf4abe798b94589a37bcc022c_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547320449&frame=1&s=18593940f2dc849024c756361d4196cf">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23791690">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/791/690/3419acda4348bb6600d02c55addfcacf_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547560518&auto=format&frame=1&q=92&s=758cac4385214280d30652e64ea42945" src="https://ksr-ugc.imgix.net/assets/023/791/690/3419acda4348bb6600d02c55addfcacf_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547560518&frame=1&s=916373cbf6b2896483ebf80aa4f70763">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23802561">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/802/561/88f700d7a125f4201ed6f9bdc6834418_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547646345&auto=format&frame=1&q=92&s=9413548ca27b3c54759b2aa0823c4325" src="https://ksr-ugc.imgix.net/assets/023/802/561/88f700d7a125f4201ed6f9bdc6834418_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547646345&frame=1&s=93f494a2ad92acf70e3baebafd14e8a5">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23819729">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/819/729/ce986e817bf38edae0b757d9ea34da00_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1547779239&auto=format&frame=1&q=92&s=c54437a6562f4bd9289be66d82a1e099" src="https://ksr-ugc.imgix.net/assets/023/819/729/ce986e817bf38edae0b757d9ea34da00_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1547779239&frame=1&s=281fddad20f8ee1e47c8fd10b4329f2e">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23846386">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/846/386/bd7f6c83f569b3e458bf17c94002d56a_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548079766&auto=format&frame=1&q=92&s=95caab3da0757ab8167a26a1ba56c53e" src="https://ksr-ugc.imgix.net/assets/023/846/386/bd7f6c83f569b3e458bf17c94002d56a_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548079766&frame=1&s=3046c71041f4a53e6394d7cc8ed28499">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23862701">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/862/701/f3272c6a85b01cfc225e9a52fe1aab8f_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548204178&auto=format&frame=1&q=92&s=8a134938bd53201c99c33114f6d6a2ae" src="https://ksr-ugc.imgix.net/assets/023/862/701/f3272c6a85b01cfc225e9a52fe1aab8f_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548204178&frame=1&s=b72dbcfd507f45197f8cae8ae813681e">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23882098">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/882/098/9d98db3dc30aadcee2913467d9a979f3_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548365027&auto=format&frame=1&q=92&s=3cdd22af3cd34be191f91647e90b3a52" src="https://ksr-ugc.imgix.net/assets/023/882/098/9d98db3dc30aadcee2913467d9a979f3_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548365027&frame=1&s=e05c0838316ba94a99241a0f95fad758">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23912245">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/912/245/09d56c7cd8bda61318874f67f9c2fe54_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548680039&auto=format&frame=1&q=92&s=47cfd9a898c356322093f779ba8122dc" src="https://ksr-ugc.imgix.net/assets/023/912/245/09d56c7cd8bda61318874f67f9c2fe54_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548680039&frame=1&s=f8e787a888fe2c9b4a3589e110edc024">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23928746">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/928/746/10e3903595a9a2c94ecf8b5317392d52_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1548791273&auto=format&frame=1&q=92&s=8fc4d1d42038d6a3d4d2af39a4956ffc" src="https://ksr-ugc.imgix.net/assets/023/928/746/10e3903595a9a2c94ecf8b5317392d52_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1548791273&frame=1&s=70f12ceaa88df71be8574d61ee69cb67">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23960103">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/960/103/f7acfddd653b312b785d332d330d6876_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549027562&auto=format&frame=1&q=92&s=888d620200a80c071e5943016a042b07" src="https://ksr-ugc.imgix.net/assets/023/960/103/f7acfddd653b312b785d332d330d6876_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549027562&frame=1&s=9ae2cc990fb085ca245e39aa0f31b1bc">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23976685">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/976/685/3881d3b50fc8b0282fcfe6679421b7b3_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549198243&auto=format&frame=1&q=92&s=0d02c49b9a806d9961b16e09314921c8" src="https://ksr-ugc.imgix.net/assets/023/976/685/3881d3b50fc8b0282fcfe6679421b7b3_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549198243&frame=1&s=d914f77c4893ffd18ed661215d816acc">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="23982467">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/023/982/467/e3a26f1a20de8c6ac0ab5c082772e824_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549253490&auto=format&frame=1&q=92&s=1684e3c21939f9e66a1cbe1d4f60beef" src="https://ksr-ugc.imgix.net/assets/023/982/467/e3a26f1a20de8c6ac0ab5c082772e824_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549253490&frame=1&s=d4233c8a702332db7c0b25537ee23ff5">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24001681">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/001/681/7a015ffa1694c9e9d7b9e2ed5f29e79a_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549400352&auto=format&frame=1&q=92&s=4ebd3066c1754280067260e574063e59" src="https://ksr-ugc.imgix.net/assets/024/001/681/7a015ffa1694c9e9d7b9e2ed5f29e79a_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549400352&frame=1&s=77828f89997d10304b986db30d4e81e8">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24009698">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/009/698/52ad9399f166f4f2bed00e7d2c51218f_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549470503&auto=format&frame=1&q=92&s=d58dcf25716c736918b5fd48172c5684" src="https://ksr-ugc.imgix.net/assets/024/009/698/52ad9399f166f4f2bed00e7d2c51218f_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549470503&frame=1&s=bb39010fcc2834573dd936b4a8b66543">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24020912">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/020/912/5a95b41b4ac60259fe2e601e4882f992_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549563287&auto=format&frame=1&q=92&s=e45947a1719c5bddf4a2f40c4711a2d8" src="https://ksr-ugc.imgix.net/assets/024/020/912/5a95b41b4ac60259fe2e601e4882f992_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549563287&frame=1&s=0b47757455c2500123b89658bdbfae6c">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24032085">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/032/085/ec52e01d74e246274a853ff4198ae97a_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549653873&auto=format&frame=1&q=92&s=4b85b051668964ebaafac3395c21a1de" src="https://ksr-ugc.imgix.net/assets/024/032/085/ec52e01d74e246274a853ff4198ae97a_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549653873&frame=1&s=698dc87089b8025d71ee23b8e6355e3c">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24039554">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/039/554/8ff9b39e5d3ac6ca5faa2953eb726b08_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549729707&auto=format&frame=1&q=92&s=51f6968590384eb935f7e2776dc3e637" src="https://ksr-ugc.imgix.net/assets/024/039/554/8ff9b39e5d3ac6ca5faa2953eb726b08_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549729707&frame=1&s=16399c916b055eab2b8880325a2b25a3">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24046402">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/046/402/9e2eba7ef76c65326d8edd18a430aeaa_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549809379&auto=format&frame=1&q=92&s=7c9280f3a7f41249afe61ed7ac7131b3" src="https://ksr-ugc.imgix.net/assets/024/046/402/9e2eba7ef76c65326d8edd18a430aeaa_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549809379&frame=1&s=bcc49e8852ed39cee54b0ede28586265">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24055858">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/055/858/5d353a2350f53f87151505b1c36eb306_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549899271&auto=format&frame=1&q=92&s=d7a7f432987f1d43afbb7966811c75c4" src="https://ksr-ugc.imgix.net/assets/024/055/858/5d353a2350f53f87151505b1c36eb306_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549899271&frame=1&s=b87da534d30a54e9a9cae6d2a18576bd">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24061980">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/061/980/42d85858139f4cffee66704dae79814c_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549932469&auto=format&frame=1&q=92&s=85b1df881132f7fcc98edd3599c76e3c" src="https://ksr-ugc.imgix.net/assets/024/061/980/42d85858139f4cffee66704dae79814c_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549932469&frame=1&s=934bdabd9118d5e3a2a44df026fed0ba">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24067238">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/067/238/4d754ed29a3c7dd4ca263fc8951bec56_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549977474&auto=format&frame=1&q=92&s=79341fc7afff6810e7246c00c8de1d8d" src="https://ksr-ugc.imgix.net/assets/024/067/238/4d754ed29a3c7dd4ca263fc8951bec56_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549977474&frame=1&s=e768e4f5874779dbff806cb8deee1246">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24067934">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/067/934/73c2a9c8ed8f40425935dbfa1d3ca360_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549982308&auto=format&frame=1&q=92&s=10730c24b1b5029467ffa79c551122d2" src="https://ksr-ugc.imgix.net/assets/024/067/934/73c2a9c8ed8f40425935dbfa1d3ca360_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549982308&frame=1&s=4dcc758057755e2822b710fdd6c92ead">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24071113">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/071/113/0d54d2ae3ccfef08c80dc9ef9aea02c3_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1549997305&auto=format&frame=1&q=92&s=1b1047f7690b36fbbd5d65adf6ed111d" src="https://ksr-ugc.imgix.net/assets/024/071/113/0d54d2ae3ccfef08c80dc9ef9aea02c3_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1549997305&frame=1&s=75031891da82882a86e482354f296118">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24080521">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/080/521/f94b9d0e7ef34e928c3354ab1687dfca_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1550066462&auto=format&frame=1&q=92&s=f044ac1320c63555505287bb7120ce25" src="https://ksr-ugc.imgix.net/assets/024/080/521/f94b9d0e7ef34e928c3354ab1687dfca_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1550066462&frame=1&s=0252890afb8a8b05646dee0a96734aeb">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24080510">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/080/510/c6114cf83dcd922c94d37dfbebc62288_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1550066417&auto=format&frame=1&q=92&s=c71a8ce24c812ef9037c0288414b3918" src="https://ksr-ugc.imgix.net/assets/024/080/510/c6114cf83dcd922c94d37dfbebc62288_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1550066417&frame=1&s=f4cc8e92d570b50ab3814bf629fe07d1">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24083860">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/083/860/b448d90cc2206cb23623b7c0d35cb760_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1550086072&auto=format&frame=1&q=92&s=659edbf5cefbb46cf89d7499ceef1d95" src="https://ksr-ugc.imgix.net/assets/024/083/860/b448d90cc2206cb23623b7c0d35cb760_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1550086072&frame=1&s=cc0231b48e45e6aa5e6b35c996a7e418">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24087347">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/087/347/eb91429864406255a969114531765ed7_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1550107031&auto=format&frame=1&q=92&s=87a9757492dfa68ca21b44ba5be69509" src="https://ksr-ugc.imgix.net/assets/024/087/347/eb91429864406255a969114531765ed7_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1550107031&frame=1&s=9d2ca9a209b94a1789b7618a73756e38">
</figure>
</div>
<div class="template asset" contenteditable="false" data-alt-text="" data-caption="" data-id="24088392">
<figure>
<img alt="" class="fit lazyload" data-src="https://ksr-ugc.imgix.net/assets/024/088/392/27e9c95888fa0daeda2c356bc86a1ae4_original.jpg?ixlib=rb-4.0.2&w=680&fit=max&v=1550114890&auto=format&frame=1&q=92&s=6de22e82a1bf716395c62eb06ea5fe71" src="https://ksr-ugc.imgix.net/assets/024/088/392/27e9c95888fa0daeda2c356bc86a1ae4_original.jpg?ixlib=rb-4.0.2&auto=compress%2Cformat&q=1&w=680&fit=max&v=1550114890&frame=1&s=a8dc677832ae621a01755a43b4394624">
</figure>