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
|
<?php
return [
"toh" => [
[
"lines" => [
[
"character" => "EDA",
"line" => "Ahh sure. Spare us."
],
[
"character" => "LILITH",
"line" => "Woe to us whose fates are sealed."
]
],
"attribution" => "The Owl House, S1E11"
],
[
"lines" => [
[
"character" => "EDA",
"line" => "Hey freeloaders! Guess what today is!"
]
],
"attribution" => "The Owl House, S1E12"
],
[
"lines" => [
[
"character" => "EDA",
"line" => "Quitting! It's like trying, but easier!"
]
],
"attribution" => "The Owl House, S1E13"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Can it, Fangs! You don't know diddly-dang about squiddly-squat!"
]
],
"attribution" => "The Owl House, S1E13"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Holy bones, you poofed it! Call the cops, this guy's crazy!"
]
],
"attribution" => "The Owl House, S1E14"
],
[
"lines" => [
[
"character" => "EDA",
"line" => "There is one way, but it's terribly dangerous and partially illegal."
]
],
"attribution" => "The Owl House, S1E15"
],
[
"lines" => [
[
"character" => "GUS CLONE",
"line" => "I'd rather die than expose my secrets!"
],
[
"character" => "GUS",
"line" => "Then die, you shall!"
]
],
"attribution" => "The Owl House, S1E15"
],
[
"lines" => [
[
"character" => "LUZ",
"line" => "Vee, you're giving up too quick!"
],
[
"character" => "VEE",
"line" => "I'm being realistic."
]
],
"attribution" => "The Owl House, S2E10"
],
[
"lines" => [
[
"character" => "LUZ",
"line" => "I have questions about that name..."
],
[
"character" => "LILITH",
"line" => "And I have questions about my life!"
]
],
"attribution" => "The Owl House, S2E12"
],
[
"lines" => [
[
"character" => "EMIRA",
"line" => "We can shout as loud as we want, but money always shouts louder."
]
],
"attribution" => "The Owl House, S2E20"
],
[
"lines" => [
[
"character" => "VEE",
"line" => "Uhh, no, I'm new in town, I just have one of those faces! But, ju-just one, the normal amount of face."
]
],
"attribution" => "The Owl House, S3E01"
],
[
"lines" => [
[
"character" => "RAINE",
"line" => "You Know I Hate These Things. Talking To People. Waving To People. People."
]
],
"attribution" => "The Owl House, S2E11"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Who dares intrude upon I, the King of Demons?!"
]
],
"attribution" => "The Owl House, S1E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Soon, Mr. Ducky, we shall drink the fear of those who mocked us."
]
],
"attribution" => "The Owl House, S1E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Try to catch me when I’m covered in grease! I'm a squirmy little fella."
]
],
"attribution" => "The Owl House, S1E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "My crown! Yes, yes! I can feel my powers returning! You, there. Nightmare critter. I shall call you Francois, and you shall be a minion in my army of darkness. Ha‐ha!"
]
],
"attribution" => "The Owl House, S1E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Weh?"
]
],
"attribution" => "The Owl House, S1E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "That was actually one of her better breakups!"
]
],
"attribution" => "The Owl House, S1E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I AM NOT YOUR CUTIE-PIE!!!"
]
],
"attribution" => "The Owl House, S1E2"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Ha! Good luck. The Boiling Isles is nothing but a cesspool of despair."
]
],
"attribution" => "The Owl House, S1E2"
],
[
"lines" => [
[
"character" => "KING",
"line" => "You should run a small business of more scones into my mouth."
]
],
"attribution" => "The Owl House, S1E2"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Finally, all that mean-spirited laughter made me sleepy."
]
],
"attribution" => "The Owl House, S1E2"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Less talky, more nappy."
]
],
"attribution" => "The Owl House, S1E2"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Can't mistake her smell. Like lemons and young, naïve confidence."
]
],
"attribution" => "The Owl House, S1E2"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I have no son! Eat salt!"
]
],
"attribution" => "The Owl House, S1E3"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Even demons have inner demons."
]
],
"attribution" => "The Owl House, S1E4"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Look, now we're boo-boo buddies!"
]
],
"attribution" => "The Owl House, S1E4"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Bap!"
]
],
"attribution" => "The Owl House, S1E4"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Remember when her head got cut off last week? That woman can survive anything. She's probably just tired from staying up all night chasing shrews and voles."
]
],
"attribution" => "The Owl House, S1E4"
],
[
"lines" => [
[
"character" => "KING",
"line" => "That voice. That horrific voice!!!"
]
],
"attribution" => "The Owl House, S1E4"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Show me the picture! Hah! I can draw better than that. You know, they once called me the King of Artists."
]
],
"attribution" => "The Owl House, S1E5"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Are you bestowing gifts upon me? Yes! I accept your offering! The King of Demons is back!"
]
],
"attribution" => "The Owl House, S1E5"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Cupcakes in my tummy-tum makes the King say yummy-yum!"
]
],
"attribution" => "The Owl House, S1E5"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Mmm? Oh, yeah. No."
]
],
"attribution" => "The Owl House, S1E5"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I'm stealing everything that's not nailed down!"
]
],
"attribution" => "The Owl House, S1E6"
],
[
"lines" => [
[
"character" => "KING",
"line" => "King? Who's King? I go by Little Bone Boy now."
]
],
"attribution" => "The Owl House, S1E6"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Rivals are meant to be annihilated not befriended. Now keep reading. I've been sucked into your awful fandom."
]
],
"attribution" => "The Owl House, S1E7"
],
[
"lines" => [
[
"character" => "KING",
"line" => "What does Luz know about problems anyway? All she has is dumb teen drama! She doesn't understand how hard some of us have it."
]
],
"attribution" => "The Owl House, S1E8"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Well, I don't know if you realized, but I'm not a baby!"
]
],
"attribution" => "The Owl House, S1E8"
],
[
"lines" => [
[
"character" => "KING",
"line" => "My life is a living nightmare!"
]
],
"attribution" => "The Owl House, S1E8"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Fight to the death!"
]
],
"attribution" => "The Owl House, S1E8"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I've got some... very confusing emotions right now."
]
],
"attribution" => "The Owl House, S1E8"
],
[
"lines" => [
[
"character" => "KING",
"line" => "All right, you acne‐encrusted hormone buckets. Let's go let out some teen angst!"
]
],
"attribution" => "The Owl House, S1E8"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Ooh! Fight, fight, fight!"
]
],
"attribution" => "The Owl House, S1E9"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Yes! Yes! This is a throne worthy of a tyrant. Bow to me you snotty underlings. Bow!"
]
],
"attribution" => "The Owl House, S1E10"
],
[
"lines" => [
[
"character" => "KING",
"line" => "(Rage squeals
)"
]
],
"attribution" => "The Owl House, S1E10"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Hey you scum! Which one of you wants to read my literary masterpiece? Anyone brave enough?"
]
],
"attribution" => "The Owl House, S1E11"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I've always wanted a people chair! I'm in! This will be my first step in my reclamation of power!"
]
],
"attribution" => "The Owl House, S1E11"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I'm sorry, my lawyer advised me not to look at unsolicited work."
]
],
"attribution" => "The Owl House, S1E11"
],
[
"lines" => [
[
"character" => "KING",
"line" => "What's a book? Good night!"
]
],
"attribution" => "The Owl House, S1E11"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Hey! Less ready, more scratchy!"
]
],
"attribution" => "The Owl House, S1E12"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Military discipline, cooking! Ha, I truly am a demon for all seasons! Just a dash of Eda's secret sauce and I'm the creator of life!"
]
],
"attribution" => "The Owl House, S1E12"
],
[
"lines" => [
[
"character" => "KING",
"line" => "This day shall live in infamy."
]
],
"attribution" => "The Owl House, S1E12"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Obedience? Well, what is a teacher if not an authority figure? A king of children, if you will. Yes! I am your teacher! You may call me Mr. King!"
]
],
"attribution" => "The Owl House, S1E13"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Assume a coefficient of ten, carry the two, solve for Y, and that is the way to steal a pie from a windowsill! Also you can eat trash."
]
],
"attribution" => "The Owl House, S1E13"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Alright. Read chapters three to five on the right way to scratch yourself in public. Spoiler alert: There's no wrong way! Ah, days like these make being a teacher all worth it."
]
],
"attribution" => "The Owl House, S1E13"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Oh dear, I've gotten a tube stuck on my nose! Will I ever eat again? Looks like I'm toast!"
]
],
"attribution" => "The Owl House, S1E14"
],
[
"lines" => [
[
"character" => "KING",
"line" => "The King of Demons misses nobody! I wouldn't care if she came through this door right now!"
]
],
"attribution" => "The Owl House, S1E14"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Beat up the man and steal his things for me!"
]
],
"attribution" => "The Owl House, S1E14"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I'm gonna bake that kid into a pie!"
]
],
"attribution" => "The Owl House, S1E15"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Senseless violence. Yes, attack! DEATH IS YOUR GOD!"
]
],
"attribution" => "The Owl House, S1E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I FORGE MY OWN PATH!"
]
],
"attribution" => "The Owl House, S1E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Why am I doing this? I don't even wear clothes!"
]
],
"attribution" => "The Owl House, S1E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Ha! What possible regrets could come from the internet? Oh, did you know the earth is actually flat!"
]
],
"attribution" => "The Owl House, S1E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "We're going to turn this blood-bath into a fun-bath!"
]
],
"attribution" => "The Owl House, S1E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Girl, you can pull off anything! Up top! We're style geniuses!"
]
],
"attribution" => "The Owl House, S1E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Now I am king and queen! Best of both things!"
]
],
"attribution" => "The Owl House, S1E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Yes! Now I’ll strike fear into my enemies with this armor of intimidation."
]
],
"attribution" => "The Owl House, S1E17"
],
[
"lines" => [
[
"character" => "KING",
"line" => "You know what, when she first got here, I thought we were gonna eat her. But now I only think of that, like, sometimes."
]
],
"attribution" => "The Owl House, S1E18"
],
[
"lines" => [
[
"character" => "KING",
"line" => "The cake is me!"
]
],
"attribution" => "The Owl House, S1E18"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Me and Eda don't always see eye to eye, but I do consider her family. I want her back as much as you do."
]
],
"attribution" => "The Owl House, S1E19"
],
[
"lines" => [
[
"character" => "KING",
"line" => "We'll have to do something so diabolical, so criminally insane, that they'll have to send us to the Conformatorium."
]
],
"attribution" => "The Owl House, S1E19"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I'm never letting you go! You're never returning to the human realm!"
]
],
"attribution" => "The Owl House, S2E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "King want a cracker!"
]
],
"attribution" => "The Owl House, S2E1"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Weh? Yeah yeah, I'll deal with it. No one ever said power came with responsibility..."
]
],
"attribution" => "The Owl
House, S2E2"
],
[
"lines" => [
[
"character" => "KING",
"line" => "The King of Demons yields to no one!"
]
],
"attribution" => "The Owl House, S2E3"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Ah, the chamber where I would devour the hearts of my foes. The taste was cold and bitter, but I bet yours would be sweet, Luz."
]
],
"attribution" => "The Owl House, S2E3"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Is that a six-footed pig or a floating appendage? Why, no! It's Gus the Illusion Master. Please leave a message."
]
],
"attribution" => "The Owl House, S2E5"
],
[
"lines" => [
[
"character" => "KING",
"line" => "And weh, and weh, and weh, and weh, and weh, and weh, and weh, and weh!"
]
],
"attribution" => "The Owl House, S2E7"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Haha! Saint Epiderm? More like Stank Epiderm!"
]
],
"attribution" => "The Owl House, S2E7"
],
[
"lines" => [
[
"character" => "KING",
"line" => "DID YOU OWL PELLET ME?!"
]
],
"attribution" => "The Owl House, S2E8"
],
[
"lines" => [
[
"character" => "KING",
"line" => "You look like one of my hairballs. Let's just do the trench coat thing!"
]
],
"attribution" => "The Owl House, S2E9"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Guess minecart chases are a lot more dangerous than video games make'em seem."
]
],
"attribution" => "The Owl House, S2E9"
],
[
"lines" => [
[
"character" => "KING",
"line" => "I can't wait to eat HUMAN snacks!"
]
],
"attribution" => "The Owl House, S2E10"
],
[
"lines" => [
[
"character" => "KING",
"line" => "It was the... yeast I could do."
]
],
"attribution" => "The Owl House, S2E11"
],
[
"lines" => [
[
"character" => "KING",
"line" => "With my love of mayhem and Hooty’s desperate need for attention, this’ll be a cake walk!"
]
],
"attribution" => "The Owl House, S2E11"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Hey, Eda, look! \"Dear sister, join the Emperor's Coven and together, we can become gods!\""
]
],
"attribution" => "The Owl House, S2E12"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Ooh! That'll work great when birds try to fly away with me."
]
],
"attribution" => "The Owl House, S2E14"
],
[
"lines" => [
[
"character" => "KING",
"line" => "What you need is a healthy distractions from your problems. Like breakfast!"
]
],
"attribution" => "The Owl House, S2E14"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Is this thing on? Demon King to Luzura, you copy?"
]
],
"attribution" => "The Owl House, S2E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "Uh, oh. Uh... Hable más lento, por favor."
]
],
"attribution" => "The Owl House, S2E16"
],
[
"lines" => [
[
"character" => "KING",
"line" => "The Collector is just a little kid. A scary, powerful one, but… also… sad, and alone. I don’t know, this whole time, I was scared of making him mad, but… I think I can relate to him."
]
],
"attribution" => "The Owl House, S3E1"
]
],
"neversaid" => [
[
"name" => "ASM",
"quote" => "The Director liked all the props we got today."
],
[
"name" => "PM",
"quote" => "Ah ha, a revolve. Terrific."
],
[
"name" => "Chippie",
"quote" => "I don't know, let's look at the ground plan."
],
[
"name" => "Set Designer",
"quote" => "Well, let's just have whatever is cheaper."
],
[
"name" => "Sound",
"quote" => "Better turn that down a bit. We don't want to deafen them."
],
[
"name" => "Director",
"quote" => "Sorry, my mistake."
],
[
"name" => "Electrics",
"quote" => "This equipment is more complicated than we need."
],
[
"name" => "Performer",
"quote" => "I really think my big scene should be cut."
],
[
"name" => "SM",
"quote" => "Can we do that scene change again please?"
],
[
"name" => "LX designer",
"quote" => "Bit more light from those big chaps at the side. Yes that's right, the ones on stalks whatever they are called."
],
[
"name" => "Electrics",
"quote" => "All the equipment works perfectly."
],
[
"name" => "Musicians",
"quote" => "So what if that's the end of a call. Let's just finish this bit off."
],
[
"name" => "Wardrobe",
"quote" => "Now, when exactly is the first dress rehearsal?"
],
[
"name" => "Workshop",
"quote" => "I don't want anyone to know, but if you insist then yes, I admit it, I have just done an all-nighter."
],
[
"name" => "Performer",
"quote" => "This costume is so comfortable."
],
[
"name" => "Admin",
"quote" => "The level of overtime payments here are simply unacceptable. Our backstage staff deserve better."
],
[
"name" => "Box Office",
"quote" => "Comps? No problem."
],
[
"name" => "Set Designer",
"quote" => "You're right, it looks dreadful."
],
[
"name" => "Flyman",
"quote" => "No, my lips are sealed. What I may or may not have seen remains a secret."
],
[
"name" => "Electrics",
"quote" => "That had nothing to do with the computer, it was my fault."
],
[
"name" => "Crew",
"quote" => "No, no, I'm sure that's our job."
],
[
"name" => "SMgt",
"quote" => "Thanks, but I don't drink."
],
[
"name" => "Performer",
"quote" => "Let me stand down here with my back to the audience."
],
[
"name" => "Chippie",
"quote" => "I can't really manage those big fast power tools myself."
],
[
"name" => "Chippie",
"quote" => "I prefer to use these little hand drills."
],
[
"name" => "All",
"quote" => "Let's go and ask the Production Manager. He'll know."
]
]
];
|