Spaces:
Runtime error
Runtime error
complete set of files
Browse filesThis view is limited to 50 files because it contains too many changes. Β
See raw diff
- app.py +50 -0
- data/1henryiv.1.1.html +189 -0
- data/1henryiv.1.2.html +500 -0
- data/1henryiv.1.3.html +576 -0
- data/1henryiv.2.1.html +267 -0
- data/1henryiv.2.2.html +336 -0
- data/1henryiv.2.3.html +256 -0
- data/1henryiv.2.4.html +1389 -0
- data/1henryiv.3.1.html +617 -0
- data/1henryiv.3.2.html +761 -0
- data/1henryiv.4.1.html +320 -0
- data/1henryiv.4.2.html +210 -0
- data/1henryiv.4.3.html +278 -0
- data/1henryiv.4.4.html +120 -0
- data/1henryiv.5.1.html +262 -0
- data/1henryiv.5.2.html +234 -0
- data/1henryiv.5.3.html +203 -0
- data/1henryiv.5.4.html +379 -0
- data/1henryiv.5.5.html +106 -0
- data/1henryvi.1.1.html +352 -0
- data/1henryvi.1.2.html +357 -0
- data/1henryvi.1.3.html +271 -0
- data/1henryvi.1.4.html +224 -0
- data/1henryvi.1.5.html +109 -0
- data/1henryvi.1.6.html +93 -0
- data/1henryvi.2.1.html +262 -0
- data/1henryvi.2.2.html +155 -0
- data/1henryvi.2.3.html +251 -0
- data/1henryvi.2.4.html +388 -0
- data/1henryvi.2.5.html +253 -0
- data/1henryvi.3.1.html +479 -0
- data/1henryvi.3.2.html +379 -0
- data/1henryvi.3.3.html +234 -0
- data/1henryvi.3.4.html +134 -0
- data/1henryvi.4.1.html +420 -0
- data/1henryvi.4.2.html +114 -0
- data/1henryvi.4.3.html +138 -0
- data/1henryvi.4.4.html +138 -0
- data/1henryvi.4.5.html +174 -0
- data/1henryvi.4.6.html +120 -0
- data/1henryvi.4.7.html +222 -0
- data/1henryvi.5.1.html +164 -0
- data/1henryvi.5.2.html +105 -0
- data/1henryvi.5.3.html +534 -0
- data/1henryvi.5.4.html +389 -0
- data/1henryvi.5.5.html +190 -0
- data/1kinghenryiv.html +48 -0
- data/1kinghenryvi.html +57 -0
- data/2henryiv.0.0.html +88 -0
- data/2henryiv.1.1.html +414 -0
app.py
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import shutil
|
3 |
+
from glob import glob
|
4 |
+
from transformers import AutoTokenizer
|
5 |
+
from langchain import HuggingFacePipeline
|
6 |
+
from langchain.chains import RetrievalQA
|
7 |
+
from langchain.embeddings import HuggingFaceEmbeddings
|
8 |
+
from langchain.text_splitter import CharacterTextSplitter
|
9 |
+
from langchain.vectorstores import Chroma
|
10 |
+
from langchain.document_loaders import BSHTMLLoader, DirectoryLoader
|
11 |
+
|
12 |
+
bshtml_dir_loader = DirectoryLoader('./data/', loader_cls=BSHTMLLoader)
|
13 |
+
data = bshtml_dir_loader.load()
|
14 |
+
|
15 |
+
bloomz_tokenizer = AutoTokenizer.from_pretrained('bigscience/bloomz-1b7')
|
16 |
+
text_splitter = CharacterTextSplitter.from_huggingface_tokenizer(bloomz_tokenizer, chunk_size=100, chunk_overlap=0, separator="\n")
|
17 |
+
documents = text_splitter.split_documents(data)
|
18 |
+
|
19 |
+
embeddings = HuggingFaceEmbeddings()
|
20 |
+
|
21 |
+
persist_directory = "vector_db"
|
22 |
+
vectordb = Chroma.from_documents(documents=documents, embedding=embeddings, persist_directory=persist_directory)
|
23 |
+
vectordb = Chroma(persist_directory=persist_directory, embedding_function=embeddings)
|
24 |
+
|
25 |
+
llm = HuggingFacePipeline.from_model_id(
|
26 |
+
model_id="bigscience/bloomz-1b7",
|
27 |
+
task="text-generation",
|
28 |
+
model_kwargs={"temperature" : 0, "max_length" : 500})
|
29 |
+
|
30 |
+
doc_retriever = vectordb.as_retriever()
|
31 |
+
shakespeare_qa = RetrievalQA.from_chain_type(llm=llm, chain_type="stuff", retriever=doc_retriever)
|
32 |
+
|
33 |
+
def make_inference(query):
|
34 |
+
# docs = docsearch.get_relevant_documents(query)
|
35 |
+
# return(chain.run(input_documents=docs, question=query))
|
36 |
+
return(shakespeare_qa.run(query))
|
37 |
+
|
38 |
+
if __name__ == "__main__":
|
39 |
+
# make a gradio interface
|
40 |
+
import gradio as gr
|
41 |
+
|
42 |
+
gr.Interface(
|
43 |
+
make_inference,
|
44 |
+
[
|
45 |
+
gr.inputs.Textbox(lines=2, label="Query"),
|
46 |
+
],
|
47 |
+
gr.outputs.Textbox(label="Response"),
|
48 |
+
title="π£οΈTalkToMyShakespeareπ",
|
49 |
+
description="π£οΈTalkToMyShakespeareπ is a tool that allows you to ask questions about Shakespeare literature work.",
|
50 |
+
).launch()
|
data/1henryiv.1.1.html
ADDED
@@ -0,0 +1,189 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. London. The palace.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 1, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.1.2.html">Next scene</A>
|
21 |
+
</table>
|
22 |
+
|
23 |
+
<h3>SCENE I. London. The palace.</H3>
|
24 |
+
|
25 |
+
<p><blockquote>
|
26 |
+
<i>Enter KING HENRY, LORD JOHN OF LANCASTER, the EARL of WESTMORELAND, SIR WALTER BLUNT, and others</i>
|
27 |
+
</blockquote>
|
28 |
+
|
29 |
+
<A NAME=speech1><b>KING HENRY IV</b></a>
|
30 |
+
<blockquote>
|
31 |
+
<A NAME=1>So shaken as we are, so wan with care,</A><br>
|
32 |
+
<A NAME=2>Find we a time for frighted peace to pant,</A><br>
|
33 |
+
<A NAME=3>And breathe short-winded accents of new broils</A><br>
|
34 |
+
<A NAME=4>To be commenced in strands afar remote.</A><br>
|
35 |
+
<A NAME=5>No more the thirsty entrance of this soil</A><br>
|
36 |
+
<A NAME=6>Shall daub her lips with her own children's blood;</A><br>
|
37 |
+
<A NAME=7>Nor more shall trenching war channel her fields,</A><br>
|
38 |
+
<A NAME=8>Nor bruise her flowerets with the armed hoofs</A><br>
|
39 |
+
<A NAME=9>Of hostile paces: those opposed eyes,</A><br>
|
40 |
+
<A NAME=10>Which, like the meteors of a troubled heaven,</A><br>
|
41 |
+
<A NAME=11>All of one nature, of one substance bred,</A><br>
|
42 |
+
<A NAME=12>Did lately meet in the intestine shock</A><br>
|
43 |
+
<A NAME=13>And furious close of civil butchery</A><br>
|
44 |
+
<A NAME=14>Shall now, in mutual well-beseeming ranks,</A><br>
|
45 |
+
<A NAME=15>March all one way and be no more opposed</A><br>
|
46 |
+
<A NAME=16>Against acquaintance, kindred and allies:</A><br>
|
47 |
+
<A NAME=17>The edge of war, like an ill-sheathed knife,</A><br>
|
48 |
+
<A NAME=18>No more shall cut his master. Therefore, friends,</A><br>
|
49 |
+
<A NAME=19>As far as to the sepulchre of Christ,</A><br>
|
50 |
+
<A NAME=20>Whose soldier now, under whose blessed cross</A><br>
|
51 |
+
<A NAME=21>We are impressed and engaged to fight,</A><br>
|
52 |
+
<A NAME=22>Forthwith a power of English shall we levy;</A><br>
|
53 |
+
<A NAME=23>Whose arms were moulded in their mothers' womb</A><br>
|
54 |
+
<A NAME=24>To chase these pagans in those holy fields</A><br>
|
55 |
+
<A NAME=25>Over whose acres walk'd those blessed feet</A><br>
|
56 |
+
<A NAME=26>Which fourteen hundred years ago were nail'd</A><br>
|
57 |
+
<A NAME=27>For our advantage on the bitter cross.</A><br>
|
58 |
+
<A NAME=28>But this our purpose now is twelve month old,</A><br>
|
59 |
+
<A NAME=29>And bootless 'tis to tell you we will go:</A><br>
|
60 |
+
<A NAME=30>Therefore we meet not now. Then let me hear</A><br>
|
61 |
+
<A NAME=31>Of you, my gentle cousin Westmoreland,</A><br>
|
62 |
+
<A NAME=32>What yesternight our council did decree</A><br>
|
63 |
+
<A NAME=33>In forwarding this dear expedience.</A><br>
|
64 |
+
</blockquote>
|
65 |
+
|
66 |
+
<A NAME=speech2><b>WESTMORELAND</b></a>
|
67 |
+
<blockquote>
|
68 |
+
<A NAME=34>My liege, this haste was hot in question,</A><br>
|
69 |
+
<A NAME=35>And many limits of the charge set down</A><br>
|
70 |
+
<A NAME=36>But yesternight: when all athwart there came</A><br>
|
71 |
+
<A NAME=37>A post from Wales loaden with heavy news;</A><br>
|
72 |
+
<A NAME=38>Whose worst was, that the noble Mortimer,</A><br>
|
73 |
+
<A NAME=39>Leading the men of Herefordshire to fight</A><br>
|
74 |
+
<A NAME=40>Against the irregular and wild Glendower,</A><br>
|
75 |
+
<A NAME=41>Was by the rude hands of that Welshman taken,</A><br>
|
76 |
+
<A NAME=42>A thousand of his people butchered;</A><br>
|
77 |
+
<A NAME=43>Upon whose dead corpse there was such misuse,</A><br>
|
78 |
+
<A NAME=44>Such beastly shameless transformation,</A><br>
|
79 |
+
<A NAME=45>By those Welshwomen done as may not be</A><br>
|
80 |
+
<A NAME=46>Without much shame retold or spoken of.</A><br>
|
81 |
+
</blockquote>
|
82 |
+
|
83 |
+
<A NAME=speech3><b>KING HENRY IV</b></a>
|
84 |
+
<blockquote>
|
85 |
+
<A NAME=47>It seems then that the tidings of this broil</A><br>
|
86 |
+
<A NAME=48>Brake off our business for the Holy Land.</A><br>
|
87 |
+
</blockquote>
|
88 |
+
|
89 |
+
<A NAME=speech4><b>WESTMORELAND</b></a>
|
90 |
+
<blockquote>
|
91 |
+
<A NAME=49>This match'd with other did, my gracious lord;</A><br>
|
92 |
+
<A NAME=50>For more uneven and unwelcome news</A><br>
|
93 |
+
<A NAME=51>Came from the north and thus it did import:</A><br>
|
94 |
+
<A NAME=52>On Holy-rood day, the gallant Hotspur there,</A><br>
|
95 |
+
<A NAME=53>Young Harry Percy and brave Archibald,</A><br>
|
96 |
+
<A NAME=54>That ever-valiant and approved Scot,</A><br>
|
97 |
+
<A NAME=55>At Holmedon met,</A><br>
|
98 |
+
<A NAME=56>Where they did spend a sad and bloody hour,</A><br>
|
99 |
+
<A NAME=57>As by discharge of their artillery,</A><br>
|
100 |
+
<A NAME=58>And shape of likelihood, the news was told;</A><br>
|
101 |
+
<A NAME=59>For he that brought them, in the very heat</A><br>
|
102 |
+
<A NAME=60>And pride of their contention did take horse,</A><br>
|
103 |
+
<A NAME=61>Uncertain of the issue any way.</A><br>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech5><b>KING HENRY IV</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=62>Here is a dear, a true industrious friend,</A><br>
|
109 |
+
<A NAME=63>Sir Walter Blunt, new lighted from his horse.</A><br>
|
110 |
+
<A NAME=64>Stain'd with the variation of each soil</A><br>
|
111 |
+
<A NAME=65>Betwixt that Holmedon and this seat of ours;</A><br>
|
112 |
+
<A NAME=66>And he hath brought us smooth and welcome news.</A><br>
|
113 |
+
<A NAME=67>The Earl of Douglas is discomfited:</A><br>
|
114 |
+
<A NAME=68>Ten thousand bold Scots, two and twenty knights,</A><br>
|
115 |
+
<A NAME=69>Balk'd in their own blood did Sir Walter see</A><br>
|
116 |
+
<A NAME=70>On Holmedon's plains. Of prisoners, Hotspur took</A><br>
|
117 |
+
<A NAME=71>Mordake the Earl of Fife, and eldest son</A><br>
|
118 |
+
<A NAME=72>To beaten Douglas; and the Earl of Athol,</A><br>
|
119 |
+
<A NAME=73>Of Murray, Angus, and Menteith:</A><br>
|
120 |
+
<A NAME=74>And is not this an honourable spoil?</A><br>
|
121 |
+
<A NAME=75>A gallant prize? ha, cousin, is it not?</A><br>
|
122 |
+
</blockquote>
|
123 |
+
|
124 |
+
<A NAME=speech6><b>WESTMORELAND</b></a>
|
125 |
+
<blockquote>
|
126 |
+
<A NAME=76>In faith,</A><br>
|
127 |
+
<A NAME=77>It is a conquest for a prince to boast of.</A><br>
|
128 |
+
</blockquote>
|
129 |
+
|
130 |
+
<A NAME=speech7><b>KING HENRY IV</b></a>
|
131 |
+
<blockquote>
|
132 |
+
<A NAME=78>Yea, there thou makest me sad and makest me sin</A><br>
|
133 |
+
<A NAME=79>In envy that my Lord Northumberland</A><br>
|
134 |
+
<A NAME=80>Should be the father to so blest a son,</A><br>
|
135 |
+
<A NAME=81>A son who is the theme of honour's tongue;</A><br>
|
136 |
+
<A NAME=82>Amongst a grove, the very straightest plant;</A><br>
|
137 |
+
<A NAME=83>Who is sweet Fortune's minion and her pride:</A><br>
|
138 |
+
<A NAME=84>Whilst I, by looking on the praise of him,</A><br>
|
139 |
+
<A NAME=85>See riot and dishonour stain the brow</A><br>
|
140 |
+
<A NAME=86>Of my young Harry. O that it could be proved</A><br>
|
141 |
+
<A NAME=87>That some night-tripping fairy had exchanged</A><br>
|
142 |
+
<A NAME=88>In cradle-clothes our children where they lay,</A><br>
|
143 |
+
<A NAME=89>And call'd mine Percy, his Plantagenet!</A><br>
|
144 |
+
<A NAME=90>Then would I have his Harry, and he mine.</A><br>
|
145 |
+
<A NAME=91>But let him from my thoughts. What think you, coz,</A><br>
|
146 |
+
<A NAME=92>Of this young Percy's pride? the prisoners,</A><br>
|
147 |
+
<A NAME=93>Which he in this adventure hath surprised,</A><br>
|
148 |
+
<A NAME=94>To his own use he keeps; and sends me word,</A><br>
|
149 |
+
<A NAME=95>I shall have none but Mordake Earl of Fife.</A><br>
|
150 |
+
</blockquote>
|
151 |
+
|
152 |
+
<A NAME=speech8><b>WESTMORELAND</b></a>
|
153 |
+
<blockquote>
|
154 |
+
<A NAME=96>This is his uncle's teaching; this is Worcester,</A><br>
|
155 |
+
<A NAME=97>Malevolent to you in all aspects;</A><br>
|
156 |
+
<A NAME=98>Which makes him prune himself, and bristle up</A><br>
|
157 |
+
<A NAME=99>The crest of youth against your dignity.</A><br>
|
158 |
+
</blockquote>
|
159 |
+
|
160 |
+
<A NAME=speech9><b>KING HENRY IV</b></a>
|
161 |
+
<blockquote>
|
162 |
+
<A NAME=100>But I have sent for him to answer this;</A><br>
|
163 |
+
<A NAME=101>And for this cause awhile we must neglect</A><br>
|
164 |
+
<A NAME=102>Our holy purpose to Jerusalem.</A><br>
|
165 |
+
<A NAME=103>Cousin, on Wednesday next our council we</A><br>
|
166 |
+
<A NAME=104>Will hold at Windsor; so inform the lords:</A><br>
|
167 |
+
<A NAME=105>But come yourself with speed to us again;</A><br>
|
168 |
+
<A NAME=106>For more is to be said and to be done</A><br>
|
169 |
+
<A NAME=107>Than out of anger can be uttered.</A><br>
|
170 |
+
</blockquote>
|
171 |
+
|
172 |
+
<A NAME=speech10><b>WESTMORELAND</b></a>
|
173 |
+
<blockquote>
|
174 |
+
<A NAME=108>I will, my liege.</A><br>
|
175 |
+
<p><i>Exeunt</i></p>
|
176 |
+
</blockquote>
|
177 |
+
<table width="100%" bgcolor="#CCF6F6">
|
178 |
+
<tr><td class="nav" align="center">
|
179 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
180 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
181 |
+
| Act 1, Scene 1
|
182 |
+
<br>
|
183 |
+
<a href="1henryiv.1.2.html">Next scene</A>
|
184 |
+
</table>
|
185 |
+
|
186 |
+
</body>
|
187 |
+
</html>
|
188 |
+
|
189 |
+
|
data/1henryiv.1.2.html
ADDED
@@ -0,0 +1,500 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. London. An apartment of the Prince's.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 1, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.1.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.1.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. London. An apartment of the Prince's.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter the PRINCE OF WALES and FALSTAFF</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>FALSTAFF</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Now, Hal, what time of day is it, lad?</A><br>
|
33 |
+
</blockquote>
|
34 |
+
|
35 |
+
<A NAME=speech2><b>PRINCE HENRY</b></a>
|
36 |
+
<blockquote>
|
37 |
+
<A NAME=2>Thou art so fat-witted, with drinking of old sack</A><br>
|
38 |
+
<A NAME=3>and unbuttoning thee after supper and sleeping upon</A><br>
|
39 |
+
<A NAME=4>benches after noon, that thou hast forgotten to</A><br>
|
40 |
+
<A NAME=5>demand that truly which thou wouldst truly know.</A><br>
|
41 |
+
<A NAME=6>What a devil hast thou to do with the time of the</A><br>
|
42 |
+
<A NAME=7>day? Unless hours were cups of sack and minutes</A><br>
|
43 |
+
<A NAME=8>capons and clocks the tongues of bawds and dials the</A><br>
|
44 |
+
<A NAME=9>signs of leaping-houses and the blessed sun himself</A><br>
|
45 |
+
<A NAME=10>a fair hot wench in flame-coloured taffeta, I see no</A><br>
|
46 |
+
<A NAME=11>reason why thou shouldst be so superfluous to demand</A><br>
|
47 |
+
<A NAME=12>the time of the day.</A><br>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech3><b>FALSTAFF</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=13>Indeed, you come near me now, Hal; for we that take</A><br>
|
53 |
+
<A NAME=14>purses go by the moon and the seven stars, and not</A><br>
|
54 |
+
<A NAME=15>by Phoebus, he,'that wandering knight so fair.' And,</A><br>
|
55 |
+
<A NAME=16>I prithee, sweet wag, when thou art king, as, God</A><br>
|
56 |
+
<A NAME=17>save thy grace,--majesty I should say, for grace</A><br>
|
57 |
+
<A NAME=18>thou wilt have none,--</A><br>
|
58 |
+
</blockquote>
|
59 |
+
|
60 |
+
<A NAME=speech4><b>PRINCE HENRY</b></a>
|
61 |
+
<blockquote>
|
62 |
+
<A NAME=19>What, none?</A><br>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech5><b>FALSTAFF</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=20>No, by my troth, not so much as will serve to</A><br>
|
68 |
+
<A NAME=21>prologue to an egg and butter.</A><br>
|
69 |
+
</blockquote>
|
70 |
+
|
71 |
+
<A NAME=speech6><b>PRINCE HENRY</b></a>
|
72 |
+
<blockquote>
|
73 |
+
<A NAME=22>Well, how then? come, roundly, roundly.</A><br>
|
74 |
+
</blockquote>
|
75 |
+
|
76 |
+
<A NAME=speech7><b>FALSTAFF</b></a>
|
77 |
+
<blockquote>
|
78 |
+
<A NAME=23>Marry, then, sweet wag, when thou art king, let not</A><br>
|
79 |
+
<A NAME=24>us that are squires of the night's body be called</A><br>
|
80 |
+
<A NAME=25>thieves of the day's beauty: let us be Diana's</A><br>
|
81 |
+
<A NAME=26>foresters, gentlemen of the shade, minions of the</A><br>
|
82 |
+
<A NAME=27>moon; and let men say we be men of good government,</A><br>
|
83 |
+
<A NAME=28>being governed, as the sea is, by our noble and</A><br>
|
84 |
+
<A NAME=29>chaste mistress the moon, under whose countenance we steal.</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech8><b>PRINCE HENRY</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=30>Thou sayest well, and it holds well too; for the</A><br>
|
90 |
+
<A NAME=31>fortune of us that are the moon's men doth ebb and</A><br>
|
91 |
+
<A NAME=32>flow like the sea, being governed, as the sea is,</A><br>
|
92 |
+
<A NAME=33>by the moon. As, for proof, now: a purse of gold</A><br>
|
93 |
+
<A NAME=34>most resolutely snatched on Monday night and most</A><br>
|
94 |
+
<A NAME=35>dissolutely spent on Tuesday morning; got with</A><br>
|
95 |
+
<A NAME=36>swearing 'Lay by' and spent with crying 'Bring in;'</A><br>
|
96 |
+
<A NAME=37>now in as low an ebb as the foot of the ladder</A><br>
|
97 |
+
<A NAME=38>and by and by in as high a flow as the ridge of the gallows.</A><br>
|
98 |
+
</blockquote>
|
99 |
+
|
100 |
+
<A NAME=speech9><b>FALSTAFF</b></a>
|
101 |
+
<blockquote>
|
102 |
+
<A NAME=39>By the Lord, thou sayest true, lad. And is not my</A><br>
|
103 |
+
<A NAME=40>hostess of the tavern a most sweet wench?</A><br>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech10><b>PRINCE HENRY</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=41>As the honey of Hybla, my old lad of the castle. And</A><br>
|
109 |
+
<A NAME=42>is not a buff jerkin a most sweet robe of durance?</A><br>
|
110 |
+
</blockquote>
|
111 |
+
|
112 |
+
<A NAME=speech11><b>FALSTAFF</b></a>
|
113 |
+
<blockquote>
|
114 |
+
<A NAME=43>How now, how now, mad wag! what, in thy quips and</A><br>
|
115 |
+
<A NAME=44>thy quiddities? what a plague have I to do with a</A><br>
|
116 |
+
<A NAME=45>buff jerkin?</A><br>
|
117 |
+
</blockquote>
|
118 |
+
|
119 |
+
<A NAME=speech12><b>PRINCE HENRY</b></a>
|
120 |
+
<blockquote>
|
121 |
+
<A NAME=46>Why, what a pox have I to do with my hostess of the tavern?</A><br>
|
122 |
+
</blockquote>
|
123 |
+
|
124 |
+
<A NAME=speech13><b>FALSTAFF</b></a>
|
125 |
+
<blockquote>
|
126 |
+
<A NAME=47>Well, thou hast called her to a reckoning many a</A><br>
|
127 |
+
<A NAME=48>time and oft.</A><br>
|
128 |
+
</blockquote>
|
129 |
+
|
130 |
+
<A NAME=speech14><b>PRINCE HENRY</b></a>
|
131 |
+
<blockquote>
|
132 |
+
<A NAME=49>Did I ever call for thee to pay thy part?</A><br>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech15><b>FALSTAFF</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=50>No; I'll give thee thy due, thou hast paid all there.</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech16><b>PRINCE HENRY</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=51>Yea, and elsewhere, so far as my coin would stretch;</A><br>
|
143 |
+
<A NAME=52>and where it would not, I have used my credit.</A><br>
|
144 |
+
</blockquote>
|
145 |
+
|
146 |
+
<A NAME=speech17><b>FALSTAFF</b></a>
|
147 |
+
<blockquote>
|
148 |
+
<A NAME=53>Yea, and so used it that were it not here apparent</A><br>
|
149 |
+
<A NAME=54>that thou art heir apparent--But, I prithee, sweet</A><br>
|
150 |
+
<A NAME=55>wag, shall there be gallows standing in England when</A><br>
|
151 |
+
<A NAME=56>thou art king? and resolution thus fobbed as it is</A><br>
|
152 |
+
<A NAME=57>with the rusty curb of old father antic the law? Do</A><br>
|
153 |
+
<A NAME=58>not thou, when thou art king, hang a thief.</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech18><b>PRINCE HENRY</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=59>No; thou shalt.</A><br>
|
159 |
+
</blockquote>
|
160 |
+
|
161 |
+
<A NAME=speech19><b>FALSTAFF</b></a>
|
162 |
+
<blockquote>
|
163 |
+
<A NAME=60>Shall I? O rare! By the Lord, I'll be a brave judge.</A><br>
|
164 |
+
</blockquote>
|
165 |
+
|
166 |
+
<A NAME=speech20><b>PRINCE HENRY</b></a>
|
167 |
+
<blockquote>
|
168 |
+
<A NAME=61>Thou judgest false already: I mean, thou shalt have</A><br>
|
169 |
+
<A NAME=62>the hanging of the thieves and so become a rare hangman.</A><br>
|
170 |
+
</blockquote>
|
171 |
+
|
172 |
+
<A NAME=speech21><b>FALSTAFF</b></a>
|
173 |
+
<blockquote>
|
174 |
+
<A NAME=63>Well, Hal, well; and in some sort it jumps with my</A><br>
|
175 |
+
<A NAME=64>humour as well as waiting in the court, I can tell</A><br>
|
176 |
+
<A NAME=65>you.</A><br>
|
177 |
+
</blockquote>
|
178 |
+
|
179 |
+
<A NAME=speech22><b>PRINCE HENRY</b></a>
|
180 |
+
<blockquote>
|
181 |
+
<A NAME=66>For obtaining of suits?</A><br>
|
182 |
+
</blockquote>
|
183 |
+
|
184 |
+
<A NAME=speech23><b>FALSTAFF</b></a>
|
185 |
+
<blockquote>
|
186 |
+
<A NAME=67>Yea, for obtaining of suits, whereof the hangman</A><br>
|
187 |
+
<A NAME=68>hath no lean wardrobe. 'Sblood, I am as melancholy</A><br>
|
188 |
+
<A NAME=69>as a gib cat or a lugged bear.</A><br>
|
189 |
+
</blockquote>
|
190 |
+
|
191 |
+
<A NAME=speech24><b>PRINCE HENRY</b></a>
|
192 |
+
<blockquote>
|
193 |
+
<A NAME=70>Or an old lion, or a lover's lute.</A><br>
|
194 |
+
</blockquote>
|
195 |
+
|
196 |
+
<A NAME=speech25><b>FALSTAFF</b></a>
|
197 |
+
<blockquote>
|
198 |
+
<A NAME=71>Yea, or the drone of a Lincolnshire bagpipe.</A><br>
|
199 |
+
</blockquote>
|
200 |
+
|
201 |
+
<A NAME=speech26><b>PRINCE HENRY</b></a>
|
202 |
+
<blockquote>
|
203 |
+
<A NAME=72>What sayest thou to a hare, or the melancholy of</A><br>
|
204 |
+
<A NAME=73>Moor-ditch?</A><br>
|
205 |
+
</blockquote>
|
206 |
+
|
207 |
+
<A NAME=speech27><b>FALSTAFF</b></a>
|
208 |
+
<blockquote>
|
209 |
+
<A NAME=74>Thou hast the most unsavoury similes and art indeed</A><br>
|
210 |
+
<A NAME=75>the most comparative, rascalliest, sweet young</A><br>
|
211 |
+
<A NAME=76>prince. But, Hal, I prithee, trouble me no more</A><br>
|
212 |
+
<A NAME=77>with vanity. I would to God thou and I knew where a</A><br>
|
213 |
+
<A NAME=78>commodity of good names were to be bought. An old</A><br>
|
214 |
+
<A NAME=79>lord of the council rated me the other day in the</A><br>
|
215 |
+
<A NAME=80>street about you, sir, but I marked him not; and yet</A><br>
|
216 |
+
<A NAME=81>he talked very wisely, but I regarded him not; and</A><br>
|
217 |
+
<A NAME=82>yet he talked wisely, and in the street too.</A><br>
|
218 |
+
</blockquote>
|
219 |
+
|
220 |
+
<A NAME=speech28><b>PRINCE HENRY</b></a>
|
221 |
+
<blockquote>
|
222 |
+
<A NAME=83>Thou didst well; for wisdom cries out in the</A><br>
|
223 |
+
<A NAME=84>streets, and no man regards it.</A><br>
|
224 |
+
</blockquote>
|
225 |
+
|
226 |
+
<A NAME=speech29><b>FALSTAFF</b></a>
|
227 |
+
<blockquote>
|
228 |
+
<A NAME=85>O, thou hast damnable iteration and art indeed able</A><br>
|
229 |
+
<A NAME=86>to corrupt a saint. Thou hast done much harm upon</A><br>
|
230 |
+
<A NAME=87>me, Hal; God forgive thee for it! Before I knew</A><br>
|
231 |
+
<A NAME=88>thee, Hal, I knew nothing; and now am I, if a man</A><br>
|
232 |
+
<A NAME=89>should speak truly, little better than one of the</A><br>
|
233 |
+
<A NAME=90>wicked. I must give over this life, and I will give</A><br>
|
234 |
+
<A NAME=91>it over: by the Lord, and I do not, I am a villain:</A><br>
|
235 |
+
<A NAME=92>I'll be damned for never a king's son in</A><br>
|
236 |
+
<A NAME=93>Christendom.</A><br>
|
237 |
+
</blockquote>
|
238 |
+
|
239 |
+
<A NAME=speech30><b>PRINCE HENRY</b></a>
|
240 |
+
<blockquote>
|
241 |
+
<A NAME=94>Where shall we take a purse tomorrow, Jack?</A><br>
|
242 |
+
</blockquote>
|
243 |
+
|
244 |
+
<A NAME=speech31><b>FALSTAFF</b></a>
|
245 |
+
<blockquote>
|
246 |
+
<A NAME=95>'Zounds, where thou wilt, lad; I'll make one; an I</A><br>
|
247 |
+
<A NAME=96>do not, call me villain and baffle me.</A><br>
|
248 |
+
</blockquote>
|
249 |
+
|
250 |
+
<A NAME=speech32><b>PRINCE HENRY</b></a>
|
251 |
+
<blockquote>
|
252 |
+
<A NAME=97>I see a good amendment of life in thee; from praying</A><br>
|
253 |
+
<A NAME=98>to purse-taking.</A><br>
|
254 |
+
</blockquote>
|
255 |
+
|
256 |
+
<A NAME=speech33><b>FALSTAFF</b></a>
|
257 |
+
<blockquote>
|
258 |
+
<A NAME=99>Why, Hal, 'tis my vocation, Hal; 'tis no sin for a</A><br>
|
259 |
+
<A NAME=100>man to labour in his vocation.</A><br>
|
260 |
+
<p><i>Enter POINS</i></p>
|
261 |
+
<A NAME=101>Poins! Now shall we know if Gadshill have set a</A><br>
|
262 |
+
<A NAME=102>match. O, if men were to be saved by merit, what</A><br>
|
263 |
+
<A NAME=103>hole in hell were hot enough for him? This is the</A><br>
|
264 |
+
<A NAME=104>most omnipotent villain that ever cried 'Stand' to</A><br>
|
265 |
+
<A NAME=105>a true man.</A><br>
|
266 |
+
</blockquote>
|
267 |
+
|
268 |
+
<A NAME=speech34><b>PRINCE HENRY</b></a>
|
269 |
+
<blockquote>
|
270 |
+
<A NAME=106>Good morrow, Ned.</A><br>
|
271 |
+
</blockquote>
|
272 |
+
|
273 |
+
<A NAME=speech35><b>POINS</b></a>
|
274 |
+
<blockquote>
|
275 |
+
<A NAME=107>Good morrow, sweet Hal. What says Monsieur Remorse?</A><br>
|
276 |
+
<A NAME=108>what says Sir John Sack and Sugar? Jack! how</A><br>
|
277 |
+
<A NAME=109>agrees the devil and thee about thy soul, that thou</A><br>
|
278 |
+
<A NAME=110>soldest him on Good-Friday last for a cup of Madeira</A><br>
|
279 |
+
<A NAME=111>and a cold capon's leg?</A><br>
|
280 |
+
</blockquote>
|
281 |
+
|
282 |
+
<A NAME=speech36><b>PRINCE HENRY</b></a>
|
283 |
+
<blockquote>
|
284 |
+
<A NAME=112>Sir John stands to his word, the devil shall have</A><br>
|
285 |
+
<A NAME=113>his bargain; for he was never yet a breaker of</A><br>
|
286 |
+
<A NAME=114>proverbs: he will give the devil his due.</A><br>
|
287 |
+
</blockquote>
|
288 |
+
|
289 |
+
<A NAME=speech37><b>POINS</b></a>
|
290 |
+
<blockquote>
|
291 |
+
<A NAME=115>Then art thou damned for keeping thy word with the devil.</A><br>
|
292 |
+
</blockquote>
|
293 |
+
|
294 |
+
<A NAME=speech38><b>PRINCE HENRY</b></a>
|
295 |
+
<blockquote>
|
296 |
+
<A NAME=116>Else he had been damned for cozening the devil.</A><br>
|
297 |
+
</blockquote>
|
298 |
+
|
299 |
+
<A NAME=speech39><b>POINS</b></a>
|
300 |
+
<blockquote>
|
301 |
+
<A NAME=117>But, my lads, my lads, to-morrow morning, by four</A><br>
|
302 |
+
<A NAME=118>o'clock, early at Gadshill! there are pilgrims going</A><br>
|
303 |
+
<A NAME=119>to Canterbury with rich offerings, and traders</A><br>
|
304 |
+
<A NAME=120>riding to London with fat purses: I have vizards</A><br>
|
305 |
+
<A NAME=121>for you all; you have horses for yourselves:</A><br>
|
306 |
+
<A NAME=122>Gadshill lies to-night in Rochester: I have bespoke</A><br>
|
307 |
+
<A NAME=123>supper to-morrow night in Eastcheap: we may do it</A><br>
|
308 |
+
<A NAME=124>as secure as sleep. If you will go, I will stuff</A><br>
|
309 |
+
<A NAME=125>your purses full of crowns; if you will not, tarry</A><br>
|
310 |
+
<A NAME=126>at home and be hanged.</A><br>
|
311 |
+
</blockquote>
|
312 |
+
|
313 |
+
<A NAME=speech40><b>FALSTAFF</b></a>
|
314 |
+
<blockquote>
|
315 |
+
<A NAME=127>Hear ye, Yedward; if I tarry at home and go not,</A><br>
|
316 |
+
<A NAME=128>I'll hang you for going.</A><br>
|
317 |
+
</blockquote>
|
318 |
+
|
319 |
+
<A NAME=speech41><b>POINS</b></a>
|
320 |
+
<blockquote>
|
321 |
+
<A NAME=129>You will, chops?</A><br>
|
322 |
+
</blockquote>
|
323 |
+
|
324 |
+
<A NAME=speech42><b>FALSTAFF</b></a>
|
325 |
+
<blockquote>
|
326 |
+
<A NAME=130>Hal, wilt thou make one?</A><br>
|
327 |
+
</blockquote>
|
328 |
+
|
329 |
+
<A NAME=speech43><b>PRINCE HENRY</b></a>
|
330 |
+
<blockquote>
|
331 |
+
<A NAME=131>Who, I rob? I a thief? not I, by my faith.</A><br>
|
332 |
+
</blockquote>
|
333 |
+
|
334 |
+
<A NAME=speech44><b>FALSTAFF</b></a>
|
335 |
+
<blockquote>
|
336 |
+
<A NAME=132>There's neither honesty, manhood, nor good</A><br>
|
337 |
+
<A NAME=133>fellowship in thee, nor thou camest not of the blood</A><br>
|
338 |
+
<A NAME=134>royal, if thou darest not stand for ten shillings.</A><br>
|
339 |
+
</blockquote>
|
340 |
+
|
341 |
+
<A NAME=speech45><b>PRINCE HENRY</b></a>
|
342 |
+
<blockquote>
|
343 |
+
<A NAME=135>Well then, once in my days I'll be a madcap.</A><br>
|
344 |
+
</blockquote>
|
345 |
+
|
346 |
+
<A NAME=speech46><b>FALSTAFF</b></a>
|
347 |
+
<blockquote>
|
348 |
+
<A NAME=136>Why, that's well said.</A><br>
|
349 |
+
</blockquote>
|
350 |
+
|
351 |
+
<A NAME=speech47><b>PRINCE HENRY</b></a>
|
352 |
+
<blockquote>
|
353 |
+
<A NAME=137>Well, come what will, I'll tarry at home.</A><br>
|
354 |
+
</blockquote>
|
355 |
+
|
356 |
+
<A NAME=speech48><b>FALSTAFF</b></a>
|
357 |
+
<blockquote>
|
358 |
+
<A NAME=138>By the Lord, I'll be a traitor then, when thou art king.</A><br>
|
359 |
+
</blockquote>
|
360 |
+
|
361 |
+
<A NAME=speech49><b>PRINCE HENRY</b></a>
|
362 |
+
<blockquote>
|
363 |
+
<A NAME=139>I care not.</A><br>
|
364 |
+
</blockquote>
|
365 |
+
|
366 |
+
<A NAME=speech50><b>POINS</b></a>
|
367 |
+
<blockquote>
|
368 |
+
<A NAME=140>Sir John, I prithee, leave the prince and me alone:</A><br>
|
369 |
+
<A NAME=141>I will lay him down such reasons for this adventure</A><br>
|
370 |
+
<A NAME=142>that he shall go.</A><br>
|
371 |
+
</blockquote>
|
372 |
+
|
373 |
+
<A NAME=speech51><b>FALSTAFF</b></a>
|
374 |
+
<blockquote>
|
375 |
+
<A NAME=143>Well, God give thee the spirit of persuasion and him</A><br>
|
376 |
+
<A NAME=144>the ears of profiting, that what thou speakest may</A><br>
|
377 |
+
<A NAME=145>move and what he hears may be believed, that the</A><br>
|
378 |
+
<A NAME=146>true prince may, for recreation sake, prove a false</A><br>
|
379 |
+
<A NAME=147>thief; for the poor abuses of the time want</A><br>
|
380 |
+
<A NAME=148>countenance. Farewell: you shall find me in Eastcheap.</A><br>
|
381 |
+
</blockquote>
|
382 |
+
|
383 |
+
<A NAME=speech52><b>PRINCE HENRY</b></a>
|
384 |
+
<blockquote>
|
385 |
+
<A NAME=149>Farewell, thou latter spring! farewell, All-hallown summer!</A><br>
|
386 |
+
<p><i>Exit Falstaff</i></p>
|
387 |
+
</blockquote>
|
388 |
+
|
389 |
+
<A NAME=speech53><b>POINS</b></a>
|
390 |
+
<blockquote>
|
391 |
+
<A NAME=150>Now, my good sweet honey lord, ride with us</A><br>
|
392 |
+
<A NAME=151>to-morrow: I have a jest to execute that I cannot</A><br>
|
393 |
+
<A NAME=152>manage alone. Falstaff, Bardolph, Peto and Gadshill</A><br>
|
394 |
+
<A NAME=153>shall rob those men that we have already waylaid:</A><br>
|
395 |
+
<A NAME=154>yourself and I will not be there; and when they</A><br>
|
396 |
+
<A NAME=155>have the booty, if you and I do not rob them, cut</A><br>
|
397 |
+
<A NAME=156>this head off from my shoulders.</A><br>
|
398 |
+
</blockquote>
|
399 |
+
|
400 |
+
<A NAME=speech54><b>PRINCE HENRY</b></a>
|
401 |
+
<blockquote>
|
402 |
+
<A NAME=157>How shall we part with them in setting forth?</A><br>
|
403 |
+
</blockquote>
|
404 |
+
|
405 |
+
<A NAME=speech55><b>POINS</b></a>
|
406 |
+
<blockquote>
|
407 |
+
<A NAME=158>Why, we will set forth before or after them, and</A><br>
|
408 |
+
<A NAME=159>appoint them a place of meeting, wherein it is at</A><br>
|
409 |
+
<A NAME=160>our pleasure to fail, and then will they adventure</A><br>
|
410 |
+
<A NAME=161>upon the exploit themselves; which they shall have</A><br>
|
411 |
+
<A NAME=162>no sooner achieved, but we'll set upon them.</A><br>
|
412 |
+
</blockquote>
|
413 |
+
|
414 |
+
<A NAME=speech56><b>PRINCE HENRY</b></a>
|
415 |
+
<blockquote>
|
416 |
+
<A NAME=163>Yea, but 'tis like that they will know us by our</A><br>
|
417 |
+
<A NAME=164>horses, by our habits and by every other</A><br>
|
418 |
+
<A NAME=165>appointment, to be ourselves.</A><br>
|
419 |
+
</blockquote>
|
420 |
+
|
421 |
+
<A NAME=speech57><b>POINS</b></a>
|
422 |
+
<blockquote>
|
423 |
+
<A NAME=166>Tut! our horses they shall not see: I'll tie them</A><br>
|
424 |
+
<A NAME=167>in the wood; our vizards we will change after we</A><br>
|
425 |
+
<A NAME=168>leave them: and, sirrah, I have cases of buckram</A><br>
|
426 |
+
<A NAME=169>for the nonce, to immask our noted outward garments.</A><br>
|
427 |
+
</blockquote>
|
428 |
+
|
429 |
+
<A NAME=speech58><b>PRINCE HENRY</b></a>
|
430 |
+
<blockquote>
|
431 |
+
<A NAME=170>Yea, but I doubt they will be too hard for us.</A><br>
|
432 |
+
</blockquote>
|
433 |
+
|
434 |
+
<A NAME=speech59><b>POINS</b></a>
|
435 |
+
<blockquote>
|
436 |
+
<A NAME=171>Well, for two of them, I know them to be as</A><br>
|
437 |
+
<A NAME=172>true-bred cowards as ever turned back; and for the</A><br>
|
438 |
+
<A NAME=173>third, if he fight longer than he sees reason, I'll</A><br>
|
439 |
+
<A NAME=174>forswear arms. The virtue of this jest will be, the</A><br>
|
440 |
+
<A NAME=175>incomprehensible lies that this same fat rogue will</A><br>
|
441 |
+
<A NAME=176>tell us when we meet at supper: how thirty, at</A><br>
|
442 |
+
<A NAME=177>least, he fought with; what wards, what blows, what</A><br>
|
443 |
+
<A NAME=178>extremities he endured; and in the reproof of this</A><br>
|
444 |
+
<A NAME=179>lies the jest.</A><br>
|
445 |
+
</blockquote>
|
446 |
+
|
447 |
+
<A NAME=speech60><b>PRINCE HENRY</b></a>
|
448 |
+
<blockquote>
|
449 |
+
<A NAME=180>Well, I'll go with thee: provide us all things</A><br>
|
450 |
+
<A NAME=181>necessary and meet me to-morrow night in Eastcheap;</A><br>
|
451 |
+
<A NAME=182>there I'll sup. Farewell.</A><br>
|
452 |
+
</blockquote>
|
453 |
+
|
454 |
+
<A NAME=speech61><b>POINS</b></a>
|
455 |
+
<blockquote>
|
456 |
+
<A NAME=183>Farewell, my lord.</A><br>
|
457 |
+
<p><i>Exit Poins</i></p>
|
458 |
+
</blockquote>
|
459 |
+
|
460 |
+
<A NAME=speech62><b>PRINCE HENRY</b></a>
|
461 |
+
<blockquote>
|
462 |
+
<A NAME=184>I know you all, and will awhile uphold</A><br>
|
463 |
+
<A NAME=185>The unyoked humour of your idleness:</A><br>
|
464 |
+
<A NAME=186>Yet herein will I imitate the sun,</A><br>
|
465 |
+
<A NAME=187>Who doth permit the base contagious clouds</A><br>
|
466 |
+
<A NAME=188>To smother up his beauty from the world,</A><br>
|
467 |
+
<A NAME=189>That, when he please again to be himself,</A><br>
|
468 |
+
<A NAME=190>Being wanted, he may be more wonder'd at,</A><br>
|
469 |
+
<A NAME=191>By breaking through the foul and ugly mists</A><br>
|
470 |
+
<A NAME=192>Of vapours that did seem to strangle him.</A><br>
|
471 |
+
<A NAME=193>If all the year were playing holidays,</A><br>
|
472 |
+
<A NAME=194>To sport would be as tedious as to work;</A><br>
|
473 |
+
<A NAME=195>But when they seldom come, they wish'd for come,</A><br>
|
474 |
+
<A NAME=196>And nothing pleaseth but rare accidents.</A><br>
|
475 |
+
<A NAME=197>So, when this loose behavior I throw off</A><br>
|
476 |
+
<A NAME=198>And pay the debt I never promised,</A><br>
|
477 |
+
<A NAME=199>By how much better than my word I am,</A><br>
|
478 |
+
<A NAME=200>By so much shall I falsify men's hopes;</A><br>
|
479 |
+
<A NAME=201>And like bright metal on a sullen ground,</A><br>
|
480 |
+
<A NAME=202>My reformation, glittering o'er my fault,</A><br>
|
481 |
+
<A NAME=203>Shall show more goodly and attract more eyes</A><br>
|
482 |
+
<A NAME=204>Than that which hath no foil to set it off.</A><br>
|
483 |
+
<A NAME=205>I'll so offend, to make offence a skill;</A><br>
|
484 |
+
<A NAME=206>Redeeming time when men think least I will.</A><br>
|
485 |
+
<p><i>Exit</i></p>
|
486 |
+
</blockquote>
|
487 |
+
<table width="100%" bgcolor="#CCF6F6">
|
488 |
+
<tr><td class="nav" align="center">
|
489 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
490 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
491 |
+
| Act 1, Scene 2
|
492 |
+
<br>
|
493 |
+
<a href="1henryiv.1.1.html">Previous scene</A>
|
494 |
+
| <a href="1henryiv.1.3.html">Next scene</A>
|
495 |
+
</table>
|
496 |
+
|
497 |
+
</body>
|
498 |
+
</html>
|
499 |
+
|
500 |
+
|
data/1henryiv.1.3.html
ADDED
@@ -0,0 +1,576 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. London. The palace.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 1, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.1.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.2.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. London. The palace.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter the KING, NORTHUMBERLAND, WORCESTER, HOTSPUR, SIR WALTER BLUNT, with others</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>KING HENRY IV</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>My blood hath been too cold and temperate,</A><br>
|
33 |
+
<A NAME=2>Unapt to stir at these indignities,</A><br>
|
34 |
+
<A NAME=3>And you have found me; for accordingly</A><br>
|
35 |
+
<A NAME=4>You tread upon my patience: but be sure</A><br>
|
36 |
+
<A NAME=5>I will from henceforth rather be myself,</A><br>
|
37 |
+
<A NAME=6>Mighty and to be fear'd, than my condition;</A><br>
|
38 |
+
<A NAME=7>Which hath been smooth as oil, soft as young down,</A><br>
|
39 |
+
<A NAME=8>And therefore lost that title of respect</A><br>
|
40 |
+
<A NAME=9>Which the proud soul ne'er pays but to the proud.</A><br>
|
41 |
+
</blockquote>
|
42 |
+
|
43 |
+
<A NAME=speech2><b>EARL OF WORCESTER</b></a>
|
44 |
+
<blockquote>
|
45 |
+
<A NAME=10>Our house, my sovereign liege, little deserves</A><br>
|
46 |
+
<A NAME=11>The scourge of greatness to be used on it;</A><br>
|
47 |
+
<A NAME=12>And that same greatness too which our own hands</A><br>
|
48 |
+
<A NAME=13>Have holp to make so portly.</A><br>
|
49 |
+
</blockquote>
|
50 |
+
|
51 |
+
<A NAME=speech3><b>NORTHUMBERLAND</b></a>
|
52 |
+
<blockquote>
|
53 |
+
<A NAME=14>My lord.--</A><br>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech4><b>KING HENRY IV</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=15>Worcester, get thee gone; for I do see</A><br>
|
59 |
+
<A NAME=16>Danger and disobedience in thine eye:</A><br>
|
60 |
+
<A NAME=17>O, sir, your presence is too bold and peremptory,</A><br>
|
61 |
+
<A NAME=18>And majesty might never yet endure</A><br>
|
62 |
+
<A NAME=19>The moody frontier of a servant brow.</A><br>
|
63 |
+
<A NAME=20>You have good leave to leave us: when we need</A><br>
|
64 |
+
<A NAME=21>Your use and counsel, we shall send for you.</A><br>
|
65 |
+
<p><i>Exit Worcester</i></p>
|
66 |
+
<A NAME=22>You were about to speak.</A><br>
|
67 |
+
<p><i>To North</i></p>
|
68 |
+
</blockquote>
|
69 |
+
|
70 |
+
<A NAME=speech5><b>NORTHUMBERLAND</b></a>
|
71 |
+
<blockquote>
|
72 |
+
<A NAME=23>Yea, my good lord.</A><br>
|
73 |
+
<A NAME=24>Those prisoners in your highness' name demanded,</A><br>
|
74 |
+
<A NAME=25>Which Harry Percy here at Holmedon took,</A><br>
|
75 |
+
<A NAME=26>Were, as he says, not with such strength denied</A><br>
|
76 |
+
<A NAME=27>As is deliver'd to your majesty:</A><br>
|
77 |
+
<A NAME=28>Either envy, therefore, or misprison</A><br>
|
78 |
+
<A NAME=29>Is guilty of this fault and not my son.</A><br>
|
79 |
+
</blockquote>
|
80 |
+
|
81 |
+
<A NAME=speech6><b>HOTSPUR</b></a>
|
82 |
+
<blockquote>
|
83 |
+
<A NAME=30>My liege, I did deny no prisoners.</A><br>
|
84 |
+
<A NAME=31>But I remember, when the fight was done,</A><br>
|
85 |
+
<A NAME=32>When I was dry with rage and extreme toil,</A><br>
|
86 |
+
<A NAME=33>Breathless and faint, leaning upon my sword,</A><br>
|
87 |
+
<A NAME=34>Came there a certain lord, neat, and trimly dress'd,</A><br>
|
88 |
+
<A NAME=35>Fresh as a bridegroom; and his chin new reap'd</A><br>
|
89 |
+
<A NAME=36>Show'd like a stubble-land at harvest-home;</A><br>
|
90 |
+
<A NAME=37>He was perfumed like a milliner;</A><br>
|
91 |
+
<A NAME=38>And 'twixt his finger and his thumb he held</A><br>
|
92 |
+
<A NAME=39>A pouncet-box, which ever and anon</A><br>
|
93 |
+
<A NAME=40>He gave his nose and took't away again;</A><br>
|
94 |
+
<A NAME=41>Who therewith angry, when it next came there,</A><br>
|
95 |
+
<A NAME=42>Took it in snuff; and still he smiled and talk'd,</A><br>
|
96 |
+
<A NAME=43>And as the soldiers bore dead bodies by,</A><br>
|
97 |
+
<A NAME=44>He call'd them untaught knaves, unmannerly,</A><br>
|
98 |
+
<A NAME=45>To bring a slovenly unhandsome corse</A><br>
|
99 |
+
<A NAME=46>Betwixt the wind and his nobility.</A><br>
|
100 |
+
<A NAME=47>With many holiday and lady terms</A><br>
|
101 |
+
<A NAME=48>He question'd me; amongst the rest, demanded</A><br>
|
102 |
+
<A NAME=49>My prisoners in your majesty's behalf.</A><br>
|
103 |
+
<A NAME=50>I then, all smarting with my wounds being cold,</A><br>
|
104 |
+
<A NAME=51>To be so pester'd with a popinjay,</A><br>
|
105 |
+
<A NAME=52>Out of my grief and my impatience,</A><br>
|
106 |
+
<A NAME=53>Answer'd neglectingly I know not what,</A><br>
|
107 |
+
<A NAME=54>He should or he should not; for he made me mad</A><br>
|
108 |
+
<A NAME=55>To see him shine so brisk and smell so sweet</A><br>
|
109 |
+
<A NAME=56>And talk so like a waiting-gentlewoman</A><br>
|
110 |
+
<A NAME=57>Of guns and drums and wounds,--God save the mark!--</A><br>
|
111 |
+
<A NAME=58>And telling me the sovereign'st thing on earth</A><br>
|
112 |
+
<A NAME=59>Was parmaceti for an inward bruise;</A><br>
|
113 |
+
<A NAME=60>And that it was great pity, so it was,</A><br>
|
114 |
+
<A NAME=61>This villanous salt-petre should be digg'd</A><br>
|
115 |
+
<A NAME=62>Out of the bowels of the harmless earth,</A><br>
|
116 |
+
<A NAME=63>Which many a good tall fellow had destroy'd</A><br>
|
117 |
+
<A NAME=64>So cowardly; and but for these vile guns,</A><br>
|
118 |
+
<A NAME=65>He would himself have been a soldier.</A><br>
|
119 |
+
<A NAME=66>This bald unjointed chat of his, my lord,</A><br>
|
120 |
+
<A NAME=67>I answer'd indirectly, as I said;</A><br>
|
121 |
+
<A NAME=68>And I beseech you, let not his report</A><br>
|
122 |
+
<A NAME=69>Come current for an accusation</A><br>
|
123 |
+
<A NAME=70>Betwixt my love and your high majesty.</A><br>
|
124 |
+
</blockquote>
|
125 |
+
|
126 |
+
<A NAME=speech7><b>SIR WALTER BLUNT</b></a>
|
127 |
+
<blockquote>
|
128 |
+
<A NAME=71>The circumstance consider'd, good my lord,</A><br>
|
129 |
+
<A NAME=72>Whate'er Lord Harry Percy then had said</A><br>
|
130 |
+
<A NAME=73>To such a person and in such a place,</A><br>
|
131 |
+
<A NAME=74>At such a time, with all the rest retold,</A><br>
|
132 |
+
<A NAME=75>May reasonably die and never rise</A><br>
|
133 |
+
<A NAME=76>To do him wrong or any way impeach</A><br>
|
134 |
+
<A NAME=77>What then he said, so he unsay it now.</A><br>
|
135 |
+
</blockquote>
|
136 |
+
|
137 |
+
<A NAME=speech8><b>KING HENRY IV</b></a>
|
138 |
+
<blockquote>
|
139 |
+
<A NAME=78>Why, yet he doth deny his prisoners,</A><br>
|
140 |
+
<A NAME=79>But with proviso and exception,</A><br>
|
141 |
+
<A NAME=80>That we at our own charge shall ransom straight</A><br>
|
142 |
+
<A NAME=81>His brother-in-law, the foolish Mortimer;</A><br>
|
143 |
+
<A NAME=82>Who, on my soul, hath wilfully betray'd</A><br>
|
144 |
+
<A NAME=83>The lives of those that he did lead to fight</A><br>
|
145 |
+
<A NAME=84>Against that great magician, damn'd Glendower,</A><br>
|
146 |
+
<A NAME=85>Whose daughter, as we hear, the Earl of March</A><br>
|
147 |
+
<A NAME=86>Hath lately married. Shall our coffers, then,</A><br>
|
148 |
+
<A NAME=87>Be emptied to redeem a traitor home?</A><br>
|
149 |
+
<A NAME=88>Shall we but treason? and indent with fears,</A><br>
|
150 |
+
<A NAME=89>When they have lost and forfeited themselves?</A><br>
|
151 |
+
<A NAME=90>No, on the barren mountains let him starve;</A><br>
|
152 |
+
<A NAME=91>For I shall never hold that man my friend</A><br>
|
153 |
+
<A NAME=92>Whose tongue shall ask me for one penny cost</A><br>
|
154 |
+
<A NAME=93>To ransom home revolted Mortimer.</A><br>
|
155 |
+
</blockquote>
|
156 |
+
|
157 |
+
<A NAME=speech9><b>HOTSPUR</b></a>
|
158 |
+
<blockquote>
|
159 |
+
<A NAME=94>Revolted Mortimer!</A><br>
|
160 |
+
<A NAME=95>He never did fall off, my sovereign liege,</A><br>
|
161 |
+
<A NAME=96>But by the chance of war; to prove that true</A><br>
|
162 |
+
<A NAME=97>Needs no more but one tongue for all those wounds,</A><br>
|
163 |
+
<A NAME=98>Those mouthed wounds, which valiantly he took</A><br>
|
164 |
+
<A NAME=99>When on the gentle Severn's sedgy bank,</A><br>
|
165 |
+
<A NAME=100>In single opposition, hand to hand,</A><br>
|
166 |
+
<A NAME=101>He did confound the best part of an hour</A><br>
|
167 |
+
<A NAME=102>In changing hardiment with great Glendower:</A><br>
|
168 |
+
<A NAME=103>Three times they breathed and three times did</A><br>
|
169 |
+
<A NAME=104>they drink,</A><br>
|
170 |
+
<A NAME=105>Upon agreement, of swift Severn's flood;</A><br>
|
171 |
+
<A NAME=106>Who then, affrighted with their bloody looks,</A><br>
|
172 |
+
<A NAME=107>Ran fearfully among the trembling reeds,</A><br>
|
173 |
+
<A NAME=108>And hid his crisp head in the hollow bank,</A><br>
|
174 |
+
<A NAME=109>Bloodstained with these valiant combatants.</A><br>
|
175 |
+
<A NAME=110>Never did base and rotten policy</A><br>
|
176 |
+
<A NAME=111>Colour her working with such deadly wounds;</A><br>
|
177 |
+
<A NAME=112>Nor could the noble Mortimer</A><br>
|
178 |
+
<A NAME=113>Receive so many, and all willingly:</A><br>
|
179 |
+
<A NAME=114>Then let not him be slander'd with revolt.</A><br>
|
180 |
+
</blockquote>
|
181 |
+
|
182 |
+
<A NAME=speech10><b>KING HENRY IV</b></a>
|
183 |
+
<blockquote>
|
184 |
+
<A NAME=115>Thou dost belie him, Percy, thou dost belie him;</A><br>
|
185 |
+
<A NAME=116>He never did encounter with Glendower:</A><br>
|
186 |
+
<A NAME=117>I tell thee,</A><br>
|
187 |
+
<A NAME=118>He durst as well have met the devil alone</A><br>
|
188 |
+
<A NAME=119>As Owen Glendower for an enemy.</A><br>
|
189 |
+
<A NAME=120>Art thou not ashamed? But, sirrah, henceforth</A><br>
|
190 |
+
<A NAME=121>Let me not hear you speak of Mortimer:</A><br>
|
191 |
+
<A NAME=122>Send me your prisoners with the speediest means,</A><br>
|
192 |
+
<A NAME=123>Or you shall hear in such a kind from me</A><br>
|
193 |
+
<A NAME=124>As will displease you. My Lord Northumberland,</A><br>
|
194 |
+
<A NAME=125>We licence your departure with your son.</A><br>
|
195 |
+
<A NAME=126>Send us your prisoners, or you will hear of it.</A><br>
|
196 |
+
<p><i>Exeunt King Henry, Blunt, and train</i></p>
|
197 |
+
</blockquote>
|
198 |
+
|
199 |
+
<A NAME=speech11><b>HOTSPUR</b></a>
|
200 |
+
<blockquote>
|
201 |
+
<A NAME=127>An if the devil come and roar for them,</A><br>
|
202 |
+
<A NAME=128>I will not send them: I will after straight</A><br>
|
203 |
+
<A NAME=129>And tell him so; for I will ease my heart,</A><br>
|
204 |
+
<A NAME=130>Albeit I make a hazard of my head.</A><br>
|
205 |
+
</blockquote>
|
206 |
+
|
207 |
+
<A NAME=speech12><b>NORTHUMBERLAND</b></a>
|
208 |
+
<blockquote>
|
209 |
+
<A NAME=131>What, drunk with choler? stay and pause awhile:</A><br>
|
210 |
+
<A NAME=132>Here comes your uncle.</A><br>
|
211 |
+
<p><i>Re-enter WORCESTER</i></p>
|
212 |
+
</blockquote>
|
213 |
+
|
214 |
+
<A NAME=speech13><b>HOTSPUR</b></a>
|
215 |
+
<blockquote>
|
216 |
+
<A NAME=133>Speak of Mortimer!</A><br>
|
217 |
+
<A NAME=134>'Zounds, I will speak of him; and let my soul</A><br>
|
218 |
+
<A NAME=135>Want mercy, if I do not join with him:</A><br>
|
219 |
+
<A NAME=136>Yea, on his part I'll empty all these veins,</A><br>
|
220 |
+
<A NAME=137>And shed my dear blood drop by drop in the dust,</A><br>
|
221 |
+
<A NAME=138>But I will lift the down-trod Mortimer</A><br>
|
222 |
+
<A NAME=139>As high in the air as this unthankful king,</A><br>
|
223 |
+
<A NAME=140>As this ingrate and canker'd Bolingbroke.</A><br>
|
224 |
+
</blockquote>
|
225 |
+
|
226 |
+
<A NAME=speech14><b>NORTHUMBERLAND</b></a>
|
227 |
+
<blockquote>
|
228 |
+
<A NAME=141>Brother, the king hath made your nephew mad.</A><br>
|
229 |
+
</blockquote>
|
230 |
+
|
231 |
+
<A NAME=speech15><b>EARL OF WORCESTER</b></a>
|
232 |
+
<blockquote>
|
233 |
+
<A NAME=142>Who struck this heat up after I was gone?</A><br>
|
234 |
+
</blockquote>
|
235 |
+
|
236 |
+
<A NAME=speech16><b>HOTSPUR</b></a>
|
237 |
+
<blockquote>
|
238 |
+
<A NAME=143>He will, forsooth, have all my prisoners;</A><br>
|
239 |
+
<A NAME=144>And when I urged the ransom once again</A><br>
|
240 |
+
<A NAME=145>Of my wife's brother, then his cheek look'd pale,</A><br>
|
241 |
+
<A NAME=146>And on my face he turn'd an eye of death,</A><br>
|
242 |
+
<A NAME=147>Trembling even at the name of Mortimer.</A><br>
|
243 |
+
</blockquote>
|
244 |
+
|
245 |
+
<A NAME=speech17><b>EARL OF WORCESTER</b></a>
|
246 |
+
<blockquote>
|
247 |
+
<A NAME=148>I cannot blame him: was not he proclaim'd</A><br>
|
248 |
+
<A NAME=149>By Richard that dead is the next of blood?</A><br>
|
249 |
+
</blockquote>
|
250 |
+
|
251 |
+
<A NAME=speech18><b>NORTHUMBERLAND</b></a>
|
252 |
+
<blockquote>
|
253 |
+
<A NAME=150>He was; I heard the proclamation:</A><br>
|
254 |
+
<A NAME=151>And then it was when the unhappy king,</A><br>
|
255 |
+
<A NAME=152>--Whose wrongs in us God pardon!--did set forth</A><br>
|
256 |
+
<A NAME=153>Upon his Irish expedition;</A><br>
|
257 |
+
<A NAME=154>From whence he intercepted did return</A><br>
|
258 |
+
<A NAME=155>To be deposed and shortly murdered.</A><br>
|
259 |
+
</blockquote>
|
260 |
+
|
261 |
+
<A NAME=speech19><b>EARL OF WORCESTER</b></a>
|
262 |
+
<blockquote>
|
263 |
+
<A NAME=156>And for whose death we in the world's wide mouth</A><br>
|
264 |
+
<A NAME=157>Live scandalized and foully spoken of.</A><br>
|
265 |
+
</blockquote>
|
266 |
+
|
267 |
+
<A NAME=speech20><b>HOTSPUR</b></a>
|
268 |
+
<blockquote>
|
269 |
+
<A NAME=158>But soft, I pray you; did King Richard then</A><br>
|
270 |
+
<A NAME=159>Proclaim my brother Edmund Mortimer</A><br>
|
271 |
+
<A NAME=160>Heir to the crown?</A><br>
|
272 |
+
</blockquote>
|
273 |
+
|
274 |
+
<A NAME=speech21><b>NORTHUMBERLAND</b></a>
|
275 |
+
<blockquote>
|
276 |
+
<A NAME=161>He did; myself did hear it.</A><br>
|
277 |
+
</blockquote>
|
278 |
+
|
279 |
+
<A NAME=speech22><b>HOTSPUR</b></a>
|
280 |
+
<blockquote>
|
281 |
+
<A NAME=162>Nay, then I cannot blame his cousin king,</A><br>
|
282 |
+
<A NAME=163>That wished him on the barren mountains starve.</A><br>
|
283 |
+
<A NAME=164>But shall it be that you, that set the crown</A><br>
|
284 |
+
<A NAME=165>Upon the head of this forgetful man</A><br>
|
285 |
+
<A NAME=166>And for his sake wear the detested blot</A><br>
|
286 |
+
<A NAME=167>Of murderous subornation, shall it be,</A><br>
|
287 |
+
<A NAME=168>That you a world of curses undergo,</A><br>
|
288 |
+
<A NAME=169>Being the agents, or base second means,</A><br>
|
289 |
+
<A NAME=170>The cords, the ladder, or the hangman rather?</A><br>
|
290 |
+
<A NAME=171>O, pardon me that I descend so low,</A><br>
|
291 |
+
<A NAME=172>To show the line and the predicament</A><br>
|
292 |
+
<A NAME=173>Wherein you range under this subtle king;</A><br>
|
293 |
+
<A NAME=174>Shall it for shame be spoken in these days,</A><br>
|
294 |
+
<A NAME=175>Or fill up chronicles in time to come,</A><br>
|
295 |
+
<A NAME=176>That men of your nobility and power</A><br>
|
296 |
+
<A NAME=177>Did gage them both in an unjust behalf,</A><br>
|
297 |
+
<A NAME=178>As both of you--God pardon it!--have done,</A><br>
|
298 |
+
<A NAME=179>To put down Richard, that sweet lovely rose,</A><br>
|
299 |
+
<A NAME=180>An plant this thorn, this canker, Bolingbroke?</A><br>
|
300 |
+
<A NAME=181>And shall it in more shame be further spoken,</A><br>
|
301 |
+
<A NAME=182>That you are fool'd, discarded and shook off</A><br>
|
302 |
+
<A NAME=183>By him for whom these shames ye underwent?</A><br>
|
303 |
+
<A NAME=184>No; yet time serves wherein you may redeem</A><br>
|
304 |
+
<A NAME=185>Your banish'd honours and restore yourselves</A><br>
|
305 |
+
<A NAME=186>Into the good thoughts of the world again,</A><br>
|
306 |
+
<A NAME=187>Revenge the jeering and disdain'd contempt</A><br>
|
307 |
+
<A NAME=188>Of this proud king, who studies day and night</A><br>
|
308 |
+
<A NAME=189>To answer all the debt he owes to you</A><br>
|
309 |
+
<A NAME=190>Even with the bloody payment of your deaths:</A><br>
|
310 |
+
<A NAME=191>Therefore, I say--</A><br>
|
311 |
+
</blockquote>
|
312 |
+
|
313 |
+
<A NAME=speech23><b>EARL OF WORCESTER</b></a>
|
314 |
+
<blockquote>
|
315 |
+
<A NAME=192> Peace, cousin, say no more:</A><br>
|
316 |
+
<A NAME=193>And now I will unclasp a secret book,</A><br>
|
317 |
+
<A NAME=194>And to your quick-conceiving discontents</A><br>
|
318 |
+
<A NAME=195>I'll read you matter deep and dangerous,</A><br>
|
319 |
+
<A NAME=196>As full of peril and adventurous spirit</A><br>
|
320 |
+
<A NAME=197>As to o'er-walk a current roaring loud</A><br>
|
321 |
+
<A NAME=198>On the unsteadfast footing of a spear.</A><br>
|
322 |
+
</blockquote>
|
323 |
+
|
324 |
+
<A NAME=speech24><b>HOTSPUR</b></a>
|
325 |
+
<blockquote>
|
326 |
+
<A NAME=199>If he fall in, good night! or sink or swim:</A><br>
|
327 |
+
<A NAME=200>Send danger from the east unto the west,</A><br>
|
328 |
+
<A NAME=201>So honour cross it from the north to south,</A><br>
|
329 |
+
<A NAME=202>And let them grapple: O, the blood more stirs</A><br>
|
330 |
+
<A NAME=203>To rouse a lion than to start a hare!</A><br>
|
331 |
+
</blockquote>
|
332 |
+
|
333 |
+
<A NAME=speech25><b>NORTHUMBERLAND</b></a>
|
334 |
+
<blockquote>
|
335 |
+
<A NAME=204>Imagination of some great exploit</A><br>
|
336 |
+
<A NAME=205>Drives him beyond the bounds of patience.</A><br>
|
337 |
+
</blockquote>
|
338 |
+
|
339 |
+
<A NAME=speech26><b>HOTSPUR</b></a>
|
340 |
+
<blockquote>
|
341 |
+
<A NAME=206>By heaven, methinks it were an easy leap,</A><br>
|
342 |
+
<A NAME=207>To pluck bright honour from the pale-faced moon,</A><br>
|
343 |
+
<A NAME=208>Or dive into the bottom of the deep,</A><br>
|
344 |
+
<A NAME=209>Where fathom-line could never touch the ground,</A><br>
|
345 |
+
<A NAME=210>And pluck up drowned honour by the locks;</A><br>
|
346 |
+
<A NAME=211>So he that doth redeem her thence might wear</A><br>
|
347 |
+
<A NAME=212>Without corrival, all her dignities:</A><br>
|
348 |
+
<A NAME=213>But out upon this half-faced fellowship!</A><br>
|
349 |
+
</blockquote>
|
350 |
+
|
351 |
+
<A NAME=speech27><b>EARL OF WORCESTER</b></a>
|
352 |
+
<blockquote>
|
353 |
+
<A NAME=214>He apprehends a world of figures here,</A><br>
|
354 |
+
<A NAME=215>But not the form of what he should attend.</A><br>
|
355 |
+
<A NAME=216>Good cousin, give me audience for a while.</A><br>
|
356 |
+
</blockquote>
|
357 |
+
|
358 |
+
<A NAME=speech28><b>HOTSPUR</b></a>
|
359 |
+
<blockquote>
|
360 |
+
<A NAME=217>I cry you mercy.</A><br>
|
361 |
+
</blockquote>
|
362 |
+
|
363 |
+
<A NAME=speech29><b>EARL OF WORCESTER</b></a>
|
364 |
+
<blockquote>
|
365 |
+
<A NAME=218> Those same noble Scots</A><br>
|
366 |
+
<A NAME=219>That are your prisoners,--</A><br>
|
367 |
+
</blockquote>
|
368 |
+
|
369 |
+
<A NAME=speech30><b>HOTSPUR</b></a>
|
370 |
+
<blockquote>
|
371 |
+
<A NAME=220>I'll keep them all;</A><br>
|
372 |
+
<A NAME=221>By God, he shall not have a Scot of them;</A><br>
|
373 |
+
<A NAME=222>No, if a Scot would save his soul, he shall not:</A><br>
|
374 |
+
<A NAME=223>I'll keep them, by this hand.</A><br>
|
375 |
+
</blockquote>
|
376 |
+
|
377 |
+
<A NAME=speech31><b>EARL OF WORCESTER</b></a>
|
378 |
+
<blockquote>
|
379 |
+
<A NAME=224>You start away</A><br>
|
380 |
+
<A NAME=225>And lend no ear unto my purposes.</A><br>
|
381 |
+
<A NAME=226>Those prisoners you shall keep.</A><br>
|
382 |
+
</blockquote>
|
383 |
+
|
384 |
+
<A NAME=speech32><b>HOTSPUR</b></a>
|
385 |
+
<blockquote>
|
386 |
+
<A NAME=227>Nay, I will; that's flat:</A><br>
|
387 |
+
<A NAME=228>He said he would not ransom Mortimer;</A><br>
|
388 |
+
<A NAME=229>Forbad my tongue to speak of Mortimer;</A><br>
|
389 |
+
<A NAME=230>But I will find him when he lies asleep,</A><br>
|
390 |
+
<A NAME=231>And in his ear I'll holla 'Mortimer!'</A><br>
|
391 |
+
<A NAME=232>Nay,</A><br>
|
392 |
+
<A NAME=233>I'll have a starling shall be taught to speak</A><br>
|
393 |
+
<A NAME=234>Nothing but 'Mortimer,' and give it him</A><br>
|
394 |
+
<A NAME=235>To keep his anger still in motion.</A><br>
|
395 |
+
</blockquote>
|
396 |
+
|
397 |
+
<A NAME=speech33><b>EARL OF WORCESTER</b></a>
|
398 |
+
<blockquote>
|
399 |
+
<A NAME=236>Hear you, cousin; a word.</A><br>
|
400 |
+
</blockquote>
|
401 |
+
|
402 |
+
<A NAME=speech34><b>HOTSPUR</b></a>
|
403 |
+
<blockquote>
|
404 |
+
<A NAME=237>All studies here I solemnly defy,</A><br>
|
405 |
+
<A NAME=238>Save how to gall and pinch this Bolingbroke:</A><br>
|
406 |
+
<A NAME=239>And that same sword-and-buckler Prince of Wales,</A><br>
|
407 |
+
<A NAME=240>But that I think his father loves him not</A><br>
|
408 |
+
<A NAME=241>And would be glad he met with some mischance,</A><br>
|
409 |
+
<A NAME=242>I would have him poison'd with a pot of ale.</A><br>
|
410 |
+
</blockquote>
|
411 |
+
|
412 |
+
<A NAME=speech35><b>EARL OF WORCESTER</b></a>
|
413 |
+
<blockquote>
|
414 |
+
<A NAME=243>Farewell, kinsman: I'll talk to you</A><br>
|
415 |
+
<A NAME=244>When you are better temper'd to attend.</A><br>
|
416 |
+
</blockquote>
|
417 |
+
|
418 |
+
<A NAME=speech36><b>NORTHUMBERLAND</b></a>
|
419 |
+
<blockquote>
|
420 |
+
<A NAME=245>Why, what a wasp-stung and impatient fool</A><br>
|
421 |
+
<A NAME=246>Art thou to break into this woman's mood,</A><br>
|
422 |
+
<A NAME=247>Tying thine ear to no tongue but thine own!</A><br>
|
423 |
+
</blockquote>
|
424 |
+
|
425 |
+
<A NAME=speech37><b>HOTSPUR</b></a>
|
426 |
+
<blockquote>
|
427 |
+
<A NAME=248>Why, look you, I am whipp'd and scourged with rods,</A><br>
|
428 |
+
<A NAME=249>Nettled and stung with pismires, when I hear</A><br>
|
429 |
+
<A NAME=250>Of this vile politician, Bolingbroke.</A><br>
|
430 |
+
<A NAME=251>In Richard's time,--what do you call the place?--</A><br>
|
431 |
+
<A NAME=252>A plague upon it, it is in Gloucestershire;</A><br>
|
432 |
+
<A NAME=253>'Twas where the madcap duke his uncle kept,</A><br>
|
433 |
+
<A NAME=254>His uncle York; where I first bow'd my knee</A><br>
|
434 |
+
<A NAME=255>Unto this king of smiles, this Bolingbroke,--</A><br>
|
435 |
+
<A NAME=256>'Sblood!--</A><br>
|
436 |
+
<A NAME=257>When you and he came back from Ravenspurgh.</A><br>
|
437 |
+
</blockquote>
|
438 |
+
|
439 |
+
<A NAME=speech38><b>NORTHUMBERLAND</b></a>
|
440 |
+
<blockquote>
|
441 |
+
<A NAME=258>At Berkley castle.</A><br>
|
442 |
+
</blockquote>
|
443 |
+
|
444 |
+
<A NAME=speech39><b>HOTSPUR</b></a>
|
445 |
+
<blockquote>
|
446 |
+
<A NAME=259>You say true:</A><br>
|
447 |
+
<A NAME=260>Why, what a candy deal of courtesy</A><br>
|
448 |
+
<A NAME=261>This fawning greyhound then did proffer me!</A><br>
|
449 |
+
<A NAME=262>Look,'when his infant fortune came to age,'</A><br>
|
450 |
+
<A NAME=263>And 'gentle Harry Percy,' and 'kind cousin;'</A><br>
|
451 |
+
<A NAME=264>O, the devil take such cozeners! God forgive me!</A><br>
|
452 |
+
<A NAME=265>Good uncle, tell your tale; I have done.</A><br>
|
453 |
+
</blockquote>
|
454 |
+
|
455 |
+
<A NAME=speech40><b>EARL OF WORCESTER</b></a>
|
456 |
+
<blockquote>
|
457 |
+
<A NAME=266>Nay, if you have not, to it again;</A><br>
|
458 |
+
<A NAME=267>We will stay your leisure.</A><br>
|
459 |
+
</blockquote>
|
460 |
+
|
461 |
+
<A NAME=speech41><b>HOTSPUR</b></a>
|
462 |
+
<blockquote>
|
463 |
+
<A NAME=268>I have done, i' faith.</A><br>
|
464 |
+
</blockquote>
|
465 |
+
|
466 |
+
<A NAME=speech42><b>EARL OF WORCESTER</b></a>
|
467 |
+
<blockquote>
|
468 |
+
<A NAME=269>Then once more to your Scottish prisoners.</A><br>
|
469 |
+
<A NAME=270>Deliver them up without their ransom straight,</A><br>
|
470 |
+
<A NAME=271>And make the Douglas' son your only mean</A><br>
|
471 |
+
<A NAME=272>For powers in Scotland; which, for divers reasons</A><br>
|
472 |
+
<A NAME=273>Which I shall send you written, be assured,</A><br>
|
473 |
+
<A NAME=274>Will easily be granted. You, my lord,</A><br>
|
474 |
+
<p><i>To Northumberland</i></p>
|
475 |
+
<A NAME=275>Your son in Scotland being thus employ'd,</A><br>
|
476 |
+
<A NAME=276>Shall secretly into the bosom creep</A><br>
|
477 |
+
<A NAME=277>Of that same noble prelate, well beloved,</A><br>
|
478 |
+
<A NAME=278>The archbishop.</A><br>
|
479 |
+
</blockquote>
|
480 |
+
|
481 |
+
<A NAME=speech43><b>HOTSPUR</b></a>
|
482 |
+
<blockquote>
|
483 |
+
<A NAME=279>Of York, is it not?</A><br>
|
484 |
+
</blockquote>
|
485 |
+
|
486 |
+
<A NAME=speech44><b>EARL OF WORCESTER</b></a>
|
487 |
+
<blockquote>
|
488 |
+
<A NAME=280>True; who bears hard</A><br>
|
489 |
+
<A NAME=281>His brother's death at Bristol, the Lord Scroop.</A><br>
|
490 |
+
<A NAME=282>I speak not this in estimation,</A><br>
|
491 |
+
<A NAME=283>As what I think might be, but what I know</A><br>
|
492 |
+
<A NAME=284>Is ruminated, plotted and set down,</A><br>
|
493 |
+
<A NAME=285>And only stays but to behold the face</A><br>
|
494 |
+
<A NAME=286>Of that occasion that shall bring it on.</A><br>
|
495 |
+
</blockquote>
|
496 |
+
|
497 |
+
<A NAME=speech45><b>HOTSPUR</b></a>
|
498 |
+
<blockquote>
|
499 |
+
<A NAME=287>I smell it: upon my life, it will do well.</A><br>
|
500 |
+
</blockquote>
|
501 |
+
|
502 |
+
<A NAME=speech46><b>NORTHUMBERLAND</b></a>
|
503 |
+
<blockquote>
|
504 |
+
<A NAME=288>Before the game is afoot, thou still let'st slip.</A><br>
|
505 |
+
</blockquote>
|
506 |
+
|
507 |
+
<A NAME=speech47><b>HOTSPUR</b></a>
|
508 |
+
<blockquote>
|
509 |
+
<A NAME=289>Why, it cannot choose but be a noble plot;</A><br>
|
510 |
+
<A NAME=290>And then the power of Scotland and of York,</A><br>
|
511 |
+
<A NAME=291>To join with Mortimer, ha?</A><br>
|
512 |
+
</blockquote>
|
513 |
+
|
514 |
+
<A NAME=speech48><b>EARL OF WORCESTER</b></a>
|
515 |
+
<blockquote>
|
516 |
+
<A NAME=292>And so they shall.</A><br>
|
517 |
+
</blockquote>
|
518 |
+
|
519 |
+
<A NAME=speech49><b>HOTSPUR</b></a>
|
520 |
+
<blockquote>
|
521 |
+
<A NAME=293>In faith, it is exceedingly well aim'd.</A><br>
|
522 |
+
</blockquote>
|
523 |
+
|
524 |
+
<A NAME=speech50><b>EARL OF WORCESTER</b></a>
|
525 |
+
<blockquote>
|
526 |
+
<A NAME=294>And 'tis no little reason bids us speed,</A><br>
|
527 |
+
<A NAME=295>To save our heads by raising of a head;</A><br>
|
528 |
+
<A NAME=296>For, bear ourselves as even as we can,</A><br>
|
529 |
+
<A NAME=297>The king will always think him in our debt,</A><br>
|
530 |
+
<A NAME=298>And think we think ourselves unsatisfied,</A><br>
|
531 |
+
<A NAME=299>Till he hath found a time to pay us home:</A><br>
|
532 |
+
<A NAME=300>And see already how he doth begin</A><br>
|
533 |
+
<A NAME=301>To make us strangers to his looks of love.</A><br>
|
534 |
+
</blockquote>
|
535 |
+
|
536 |
+
<A NAME=speech51><b>HOTSPUR</b></a>
|
537 |
+
<blockquote>
|
538 |
+
<A NAME=302>He does, he does: we'll be revenged on him.</A><br>
|
539 |
+
</blockquote>
|
540 |
+
|
541 |
+
<A NAME=speech52><b>EARL OF WORCESTER</b></a>
|
542 |
+
<blockquote>
|
543 |
+
<A NAME=303>Cousin, farewell: no further go in this</A><br>
|
544 |
+
<A NAME=304>Than I by letters shall direct your course.</A><br>
|
545 |
+
<A NAME=305>When time is ripe, which will be suddenly,</A><br>
|
546 |
+
<A NAME=306>I'll steal to Glendower and Lord Mortimer;</A><br>
|
547 |
+
<A NAME=307>Where you and Douglas and our powers at once,</A><br>
|
548 |
+
<A NAME=308>As I will fashion it, shall happily meet,</A><br>
|
549 |
+
<A NAME=309>To bear our fortunes in our own strong arms,</A><br>
|
550 |
+
<A NAME=310>Which now we hold at much uncertainty.</A><br>
|
551 |
+
</blockquote>
|
552 |
+
|
553 |
+
<A NAME=speech53><b>NORTHUMBERLAND</b></a>
|
554 |
+
<blockquote>
|
555 |
+
<A NAME=311>Farewell, good brother: we shall thrive, I trust.</A><br>
|
556 |
+
</blockquote>
|
557 |
+
|
558 |
+
<A NAME=speech54><b>HOTSPUR</b></a>
|
559 |
+
<blockquote>
|
560 |
+
<A NAME=312>Uncle, Adieu: O, let the hours be short</A><br>
|
561 |
+
<A NAME=313>Till fields and blows and groans applaud our sport!</A><br>
|
562 |
+
<p><i>Exeunt</i></p>
|
563 |
+
<table width="100%" bgcolor="#CCF6F6">
|
564 |
+
<tr><td class="nav" align="center">
|
565 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
566 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
567 |
+
| Act 1, Scene 3
|
568 |
+
<br>
|
569 |
+
<a href="1henryiv.1.2.html">Previous scene</A>
|
570 |
+
| <a href="1henryiv.2.1.html">Next scene</A>
|
571 |
+
</table>
|
572 |
+
|
573 |
+
</body>
|
574 |
+
</html>
|
575 |
+
|
576 |
+
|
data/1henryiv.2.1.html
ADDED
@@ -0,0 +1,267 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. Rochester. An inn yard.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 2, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.1.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.2.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. Rochester. An inn yard.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter a Carrier with a lantern in his hand</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>First Carrier</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Heigh-ho! an it be not four by the day, I'll be</A><br>
|
33 |
+
<A NAME=2>hanged: Charles' wain is over the new chimney, and</A><br>
|
34 |
+
<A NAME=3>yet our horse not packed. What, ostler!</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>Ostler</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=4>[Within] Anon, anon.</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech3><b>First Carrier</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=5>I prithee, Tom, beat Cut's saddle, put a few flocks</A><br>
|
45 |
+
<A NAME=6>in the point; poor jade, is wrung in the withers out</A><br>
|
46 |
+
<A NAME=7>of all cess.</A><br>
|
47 |
+
<p><i>Enter another Carrier</i></p>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech4><b>Second Carrier</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=8>Peas and beans are as dank here as a dog, and that</A><br>
|
53 |
+
<A NAME=9>is the next way to give poor jades the bots: this</A><br>
|
54 |
+
<A NAME=10>house is turned upside down since Robin Ostler died.</A><br>
|
55 |
+
</blockquote>
|
56 |
+
|
57 |
+
<A NAME=speech5><b>First Carrier</b></a>
|
58 |
+
<blockquote>
|
59 |
+
<A NAME=11>Poor fellow, never joyed since the price of oats</A><br>
|
60 |
+
<A NAME=12>rose; it was the death of him.</A><br>
|
61 |
+
</blockquote>
|
62 |
+
|
63 |
+
<A NAME=speech6><b>Second Carrier</b></a>
|
64 |
+
<blockquote>
|
65 |
+
<A NAME=13>I think this be the most villanous house in all</A><br>
|
66 |
+
<A NAME=14>London road for fleas: I am stung like a tench.</A><br>
|
67 |
+
</blockquote>
|
68 |
+
|
69 |
+
<A NAME=speech7><b>First Carrier</b></a>
|
70 |
+
<blockquote>
|
71 |
+
<A NAME=15>Like a tench! by the mass, there is ne'er a king</A><br>
|
72 |
+
<A NAME=16>christen could be better bit than I have been since</A><br>
|
73 |
+
<A NAME=17>the first cock.</A><br>
|
74 |
+
</blockquote>
|
75 |
+
|
76 |
+
<A NAME=speech8><b>Second Carrier</b></a>
|
77 |
+
<blockquote>
|
78 |
+
<A NAME=18>Why, they will allow us ne'er a jordan, and then we</A><br>
|
79 |
+
<A NAME=19>leak in your chimney; and your chamber-lie breeds</A><br>
|
80 |
+
<A NAME=20>fleas like a loach.</A><br>
|
81 |
+
</blockquote>
|
82 |
+
|
83 |
+
<A NAME=speech9><b>First Carrier</b></a>
|
84 |
+
<blockquote>
|
85 |
+
<A NAME=21>What, ostler! come away and be hanged!</A><br>
|
86 |
+
</blockquote>
|
87 |
+
|
88 |
+
<A NAME=speech10><b>Second Carrier</b></a>
|
89 |
+
<blockquote>
|
90 |
+
<A NAME=22>I have a gammon of bacon and two razors of ginger,</A><br>
|
91 |
+
<A NAME=23>to be delivered as far as Charing-cross.</A><br>
|
92 |
+
</blockquote>
|
93 |
+
|
94 |
+
<A NAME=speech11><b>First Carrier</b></a>
|
95 |
+
<blockquote>
|
96 |
+
<A NAME=24>God's body! the turkeys in my pannier are quite</A><br>
|
97 |
+
<A NAME=25>starved. What, ostler! A plague on thee! hast thou</A><br>
|
98 |
+
<A NAME=26>never an eye in thy head? canst not hear? An</A><br>
|
99 |
+
<A NAME=27>'twere not as good deed as drink, to break the pate</A><br>
|
100 |
+
<A NAME=28>on thee, I am a very villain. Come, and be hanged!</A><br>
|
101 |
+
<A NAME=29>hast thou no faith in thee?</A><br>
|
102 |
+
<p><i>Enter GADSHILL</i></p>
|
103 |
+
</blockquote>
|
104 |
+
|
105 |
+
<A NAME=speech12><b>GADSHILL</b></a>
|
106 |
+
<blockquote>
|
107 |
+
<A NAME=30>Good morrow, carriers. What's o'clock?</A><br>
|
108 |
+
</blockquote>
|
109 |
+
|
110 |
+
<A NAME=speech13><b>First Carrier</b></a>
|
111 |
+
<blockquote>
|
112 |
+
<A NAME=31>I think it be two o'clock.</A><br>
|
113 |
+
</blockquote>
|
114 |
+
|
115 |
+
<A NAME=speech14><b>GADSHILL</b></a>
|
116 |
+
<blockquote>
|
117 |
+
<A NAME=32>I pray thee lend me thy lantern, to see my gelding</A><br>
|
118 |
+
<A NAME=33>in the stable.</A><br>
|
119 |
+
</blockquote>
|
120 |
+
|
121 |
+
<A NAME=speech15><b>First Carrier</b></a>
|
122 |
+
<blockquote>
|
123 |
+
<A NAME=34>Nay, by God, soft; I know a trick worth two of that, i' faith.</A><br>
|
124 |
+
</blockquote>
|
125 |
+
|
126 |
+
<A NAME=speech16><b>GADSHILL</b></a>
|
127 |
+
<blockquote>
|
128 |
+
<A NAME=35>I pray thee, lend me thine.</A><br>
|
129 |
+
</blockquote>
|
130 |
+
|
131 |
+
<A NAME=speech17><b>Second Carrier</b></a>
|
132 |
+
<blockquote>
|
133 |
+
<A NAME=36>Ay, when? can'st tell? Lend me thy lantern, quoth</A><br>
|
134 |
+
<A NAME=37>he? marry, I'll see thee hanged first.</A><br>
|
135 |
+
</blockquote>
|
136 |
+
|
137 |
+
<A NAME=speech18><b>GADSHILL</b></a>
|
138 |
+
<blockquote>
|
139 |
+
<A NAME=38>Sirrah carrier, what time do you mean to come to London?</A><br>
|
140 |
+
</blockquote>
|
141 |
+
|
142 |
+
<A NAME=speech19><b>Second Carrier</b></a>
|
143 |
+
<blockquote>
|
144 |
+
<A NAME=39>Time enough to go to bed with a candle, I warrant</A><br>
|
145 |
+
<A NAME=40>thee. Come, neighbour Mugs, we'll call up the</A><br>
|
146 |
+
<A NAME=41>gentleman: they will along with company, for they</A><br>
|
147 |
+
<A NAME=42>have great charge.</A><br>
|
148 |
+
<p><i>Exeunt carriers</i></p>
|
149 |
+
</blockquote>
|
150 |
+
|
151 |
+
<A NAME=speech20><b>GADSHILL</b></a>
|
152 |
+
<blockquote>
|
153 |
+
<A NAME=43>What, ho! chamberlain!</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech21><b>Chamberlain</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=44>[Within] At hand, quoth pick-purse.</A><br>
|
159 |
+
</blockquote>
|
160 |
+
|
161 |
+
<A NAME=speech22><b>GADSHILL</b></a>
|
162 |
+
<blockquote>
|
163 |
+
<A NAME=45>That's even as fair as--at hand, quoth the</A><br>
|
164 |
+
<A NAME=46>chamberlain; for thou variest no more from picking</A><br>
|
165 |
+
<A NAME=47>of purses than giving direction doth from labouring;</A><br>
|
166 |
+
<A NAME=48>thou layest the plot how.</A><br>
|
167 |
+
<p><i>Enter Chamberlain</i></p>
|
168 |
+
</blockquote>
|
169 |
+
|
170 |
+
<A NAME=speech23><b>Chamberlain</b></a>
|
171 |
+
<blockquote>
|
172 |
+
<A NAME=49>Good morrow, Master Gadshill. It holds current that</A><br>
|
173 |
+
<A NAME=50>I told you yesternight: there's a franklin in the</A><br>
|
174 |
+
<A NAME=51>wild of Kent hath brought three hundred marks with</A><br>
|
175 |
+
<A NAME=52>him in gold: I heard him tell it to one of his</A><br>
|
176 |
+
<A NAME=53>company last night at supper; a kind of auditor; one</A><br>
|
177 |
+
<A NAME=54>that hath abundance of charge too, God knows what.</A><br>
|
178 |
+
<A NAME=55>They are up already, and call for eggs and butter;</A><br>
|
179 |
+
<A NAME=56>they will away presently.</A><br>
|
180 |
+
</blockquote>
|
181 |
+
|
182 |
+
<A NAME=speech24><b>GADSHILL</b></a>
|
183 |
+
<blockquote>
|
184 |
+
<A NAME=57>Sirrah, if they meet not with Saint Nicholas'</A><br>
|
185 |
+
<A NAME=58>clerks, I'll give thee this neck.</A><br>
|
186 |
+
</blockquote>
|
187 |
+
|
188 |
+
<A NAME=speech25><b>Chamberlain</b></a>
|
189 |
+
<blockquote>
|
190 |
+
<A NAME=59>No, I'll none of it: I pray thee keep that for the</A><br>
|
191 |
+
<A NAME=60>hangman; for I know thou worshippest St. Nicholas</A><br>
|
192 |
+
<A NAME=61>as truly as a man of falsehood may.</A><br>
|
193 |
+
</blockquote>
|
194 |
+
|
195 |
+
<A NAME=speech26><b>GADSHILL</b></a>
|
196 |
+
<blockquote>
|
197 |
+
<A NAME=62>What talkest thou to me of the hangman? if I hang,</A><br>
|
198 |
+
<A NAME=63>I'll make a fat pair of gallows; for if I hang, old</A><br>
|
199 |
+
<A NAME=64>Sir John hangs with me, and thou knowest he is no</A><br>
|
200 |
+
<A NAME=65>starveling. Tut! there are other Trojans that thou</A><br>
|
201 |
+
<A NAME=66>dreamest not of, the which for sport sake are</A><br>
|
202 |
+
<A NAME=67>content to do the profession some grace; that would,</A><br>
|
203 |
+
<A NAME=68>if matters should be looked into, for their own</A><br>
|
204 |
+
<A NAME=69>credit sake, make all whole. I am joined with no</A><br>
|
205 |
+
<A NAME=70>foot-land rakers, no long-staff sixpenny strikers,</A><br>
|
206 |
+
<A NAME=71>none of these mad mustachio purple-hued malt-worms;</A><br>
|
207 |
+
<A NAME=72>but with nobility and tranquillity, burgomasters and</A><br>
|
208 |
+
<A NAME=73>great oneyers, such as can hold in, such as will</A><br>
|
209 |
+
<A NAME=74>strike sooner than speak, and speak sooner than</A><br>
|
210 |
+
<A NAME=75>drink, and drink sooner than pray: and yet, zounds,</A><br>
|
211 |
+
<A NAME=76>I lie; for they pray continually to their saint, the</A><br>
|
212 |
+
<A NAME=77>commonwealth; or rather, not pray to her, but prey</A><br>
|
213 |
+
<A NAME=78>on her, for they ride up and down on her and make</A><br>
|
214 |
+
<A NAME=79>her their boots.</A><br>
|
215 |
+
</blockquote>
|
216 |
+
|
217 |
+
<A NAME=speech27><b>Chamberlain</b></a>
|
218 |
+
<blockquote>
|
219 |
+
<A NAME=80>What, the commonwealth their boots? will she hold</A><br>
|
220 |
+
<A NAME=81>out water in foul way?</A><br>
|
221 |
+
</blockquote>
|
222 |
+
|
223 |
+
<A NAME=speech28><b>GADSHILL</b></a>
|
224 |
+
<blockquote>
|
225 |
+
<A NAME=82>She will, she will; justice hath liquored her. We</A><br>
|
226 |
+
<A NAME=83>steal as in a castle, cocksure; we have the receipt</A><br>
|
227 |
+
<A NAME=84>of fern-seed, we walk invisible.</A><br>
|
228 |
+
</blockquote>
|
229 |
+
|
230 |
+
<A NAME=speech29><b>Chamberlain</b></a>
|
231 |
+
<blockquote>
|
232 |
+
<A NAME=85>Nay, by my faith, I think you are more beholding to</A><br>
|
233 |
+
<A NAME=86>the night than to fern-seed for your walking invisible.</A><br>
|
234 |
+
</blockquote>
|
235 |
+
|
236 |
+
<A NAME=speech30><b>GADSHILL</b></a>
|
237 |
+
<blockquote>
|
238 |
+
<A NAME=87>Give me thy hand: thou shalt have a share in our</A><br>
|
239 |
+
<A NAME=88>purchase, as I am a true man.</A><br>
|
240 |
+
</blockquote>
|
241 |
+
|
242 |
+
<A NAME=speech31><b>Chamberlain</b></a>
|
243 |
+
<blockquote>
|
244 |
+
<A NAME=89>Nay, rather let me have it, as you are a false thief.</A><br>
|
245 |
+
</blockquote>
|
246 |
+
|
247 |
+
<A NAME=speech32><b>GADSHILL</b></a>
|
248 |
+
<blockquote>
|
249 |
+
<A NAME=90>Go to; 'homo' is a common name to all men. Bid the</A><br>
|
250 |
+
<A NAME=91>ostler bring my gelding out of the stable. Farewell,</A><br>
|
251 |
+
<A NAME=92>you muddy knave.</A><br>
|
252 |
+
<p><i>Exeunt</i></p>
|
253 |
+
</blockquote>
|
254 |
+
<table width="100%" bgcolor="#CCF6F6">
|
255 |
+
<tr><td class="nav" align="center">
|
256 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
257 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
258 |
+
| Act 2, Scene 1
|
259 |
+
<br>
|
260 |
+
<a href="1henryiv.1.3.html">Previous scene</A>
|
261 |
+
| <a href="1henryiv.2.2.html">Next scene</A>
|
262 |
+
</table>
|
263 |
+
|
264 |
+
</body>
|
265 |
+
</html>
|
266 |
+
|
267 |
+
|
data/1henryiv.2.2.html
ADDED
@@ -0,0 +1,336 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. The highway, near Gadshill.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 2, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.2.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.2.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. The highway, near Gadshill.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter PRINCE HENRY and POINS</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>POINS</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Come, shelter, shelter: I have removed Falstaff's</A><br>
|
33 |
+
<A NAME=2>horse, and he frets like a gummed velvet.</A><br>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>PRINCE HENRY</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=3>Stand close.</A><br>
|
39 |
+
<p><i>Enter FALSTAFF</i></p>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech3><b>FALSTAFF</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=4>Poins! Poins, and be hanged! Poins!</A><br>
|
45 |
+
</blockquote>
|
46 |
+
|
47 |
+
<A NAME=speech4><b>PRINCE HENRY</b></a>
|
48 |
+
<blockquote>
|
49 |
+
<A NAME=5>Peace, ye fat-kidneyed rascal! what a brawling dost</A><br>
|
50 |
+
<A NAME=6>thou keep!</A><br>
|
51 |
+
</blockquote>
|
52 |
+
|
53 |
+
<A NAME=speech5><b>FALSTAFF</b></a>
|
54 |
+
<blockquote>
|
55 |
+
<A NAME=7>Where's Poins, Hal?</A><br>
|
56 |
+
</blockquote>
|
57 |
+
|
58 |
+
<A NAME=speech6><b>PRINCE HENRY</b></a>
|
59 |
+
<blockquote>
|
60 |
+
<A NAME=8>He is walked up to the top of the hill: I'll go seek him.</A><br>
|
61 |
+
</blockquote>
|
62 |
+
|
63 |
+
<A NAME=speech7><b>FALSTAFF</b></a>
|
64 |
+
<blockquote>
|
65 |
+
<A NAME=9>I am accursed to rob in that thief's company: the</A><br>
|
66 |
+
<A NAME=10>rascal hath removed my horse, and tied him I know</A><br>
|
67 |
+
<A NAME=11>not where. If I travel but four foot by the squier</A><br>
|
68 |
+
<A NAME=12>further afoot, I shall break my wind. Well, I doubt</A><br>
|
69 |
+
<A NAME=13>not but to die a fair death for all this, if I</A><br>
|
70 |
+
<A NAME=14>'scape hanging for killing that rogue. I have</A><br>
|
71 |
+
<A NAME=15>forsworn his company hourly any time this two and</A><br>
|
72 |
+
<A NAME=16>twenty years, and yet I am bewitched with the</A><br>
|
73 |
+
<A NAME=17>rogue's company. If the rascal hath not given me</A><br>
|
74 |
+
<A NAME=18>medicines to make me love him, I'll be hanged; it</A><br>
|
75 |
+
<A NAME=19>could not be else: I have drunk medicines. Poins!</A><br>
|
76 |
+
<A NAME=20>Hal! a plague upon you both! Bardolph! Peto!</A><br>
|
77 |
+
<A NAME=21>I'll starve ere I'll rob a foot further. An 'twere</A><br>
|
78 |
+
<A NAME=22>not as good a deed as drink, to turn true man and to</A><br>
|
79 |
+
<A NAME=23>leave these rogues, I am the veriest varlet that</A><br>
|
80 |
+
<A NAME=24>ever chewed with a tooth. Eight yards of uneven</A><br>
|
81 |
+
<A NAME=25>ground is threescore and ten miles afoot with me;</A><br>
|
82 |
+
<A NAME=26>and the stony-hearted villains know it well enough:</A><br>
|
83 |
+
<A NAME=27>a plague upon it when thieves cannot be true one to another!</A><br>
|
84 |
+
<p><i>They whistle</i></p>
|
85 |
+
<A NAME=28>Whew! A plague upon you all! Give me my horse, you</A><br>
|
86 |
+
<A NAME=29>rogues; give me my horse, and be hanged!</A><br>
|
87 |
+
</blockquote>
|
88 |
+
|
89 |
+
<A NAME=speech8><b>PRINCE HENRY</b></a>
|
90 |
+
<blockquote>
|
91 |
+
<A NAME=30>Peace, ye fat-guts! lie down; lay thine ear close</A><br>
|
92 |
+
<A NAME=31>to the ground and list if thou canst hear the tread</A><br>
|
93 |
+
<A NAME=32>of travellers.</A><br>
|
94 |
+
</blockquote>
|
95 |
+
|
96 |
+
<A NAME=speech9><b>FALSTAFF</b></a>
|
97 |
+
<blockquote>
|
98 |
+
<A NAME=33>Have you any levers to lift me up again, being down?</A><br>
|
99 |
+
<A NAME=34>'Sblood, I'll not bear mine own flesh so far afoot</A><br>
|
100 |
+
<A NAME=35>again for all the coin in thy father's exchequer.</A><br>
|
101 |
+
<A NAME=36>What a plague mean ye to colt me thus?</A><br>
|
102 |
+
</blockquote>
|
103 |
+
|
104 |
+
<A NAME=speech10><b>PRINCE HENRY</b></a>
|
105 |
+
<blockquote>
|
106 |
+
<A NAME=37>Thou liest; thou art not colted, thou art uncolted.</A><br>
|
107 |
+
</blockquote>
|
108 |
+
|
109 |
+
<A NAME=speech11><b>FALSTAFF</b></a>
|
110 |
+
<blockquote>
|
111 |
+
<A NAME=38>I prithee, good Prince Hal, help me to my horse,</A><br>
|
112 |
+
<A NAME=39>good king's son.</A><br>
|
113 |
+
</blockquote>
|
114 |
+
|
115 |
+
<A NAME=speech12><b>PRINCE HENRY</b></a>
|
116 |
+
<blockquote>
|
117 |
+
<A NAME=40>Out, ye rogue! shall I be your ostler?</A><br>
|
118 |
+
</blockquote>
|
119 |
+
|
120 |
+
<A NAME=speech13><b>FALSTAFF</b></a>
|
121 |
+
<blockquote>
|
122 |
+
<A NAME=41>Go, hang thyself in thine own heir-apparent</A><br>
|
123 |
+
<A NAME=42>garters! If I be ta'en, I'll peach for this. An I</A><br>
|
124 |
+
<A NAME=43>have not ballads made on you all and sung to filthy</A><br>
|
125 |
+
<A NAME=44>tunes, let a cup of sack be my poison: when a jest</A><br>
|
126 |
+
<A NAME=45>is so forward, and afoot too! I hate it.</A><br>
|
127 |
+
<p><i>Enter GADSHILL, BARDOLPH and PETO</i></p>
|
128 |
+
</blockquote>
|
129 |
+
|
130 |
+
<A NAME=speech14><b>GADSHILL</b></a>
|
131 |
+
<blockquote>
|
132 |
+
<A NAME=46>Stand.</A><br>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech15><b>FALSTAFF</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=47>So I do, against my will.</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech16><b>POINS</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=48>O, 'tis our setter: I know his voice. Bardolph,</A><br>
|
143 |
+
<A NAME=49>what news?</A><br>
|
144 |
+
</blockquote>
|
145 |
+
|
146 |
+
<A NAME=speech17><b>BARDOLPH</b></a>
|
147 |
+
<blockquote>
|
148 |
+
<A NAME=50>Case ye, case ye; on with your vizards: there 's</A><br>
|
149 |
+
<A NAME=51>money of the king's coming down the hill; 'tis going</A><br>
|
150 |
+
<A NAME=52>to the king's exchequer.</A><br>
|
151 |
+
</blockquote>
|
152 |
+
|
153 |
+
<A NAME=speech18><b>FALSTAFF</b></a>
|
154 |
+
<blockquote>
|
155 |
+
<A NAME=53>You lie, ye rogue; 'tis going to the king's tavern.</A><br>
|
156 |
+
</blockquote>
|
157 |
+
|
158 |
+
<A NAME=speech19><b>GADSHILL</b></a>
|
159 |
+
<blockquote>
|
160 |
+
<A NAME=54>There's enough to make us all.</A><br>
|
161 |
+
</blockquote>
|
162 |
+
|
163 |
+
<A NAME=speech20><b>FALSTAFF</b></a>
|
164 |
+
<blockquote>
|
165 |
+
<A NAME=55>To be hanged.</A><br>
|
166 |
+
</blockquote>
|
167 |
+
|
168 |
+
<A NAME=speech21><b>PRINCE HENRY</b></a>
|
169 |
+
<blockquote>
|
170 |
+
<A NAME=56>Sirs, you four shall front them in the narrow lane;</A><br>
|
171 |
+
<A NAME=57>Ned Poins and I will walk lower: if they 'scape</A><br>
|
172 |
+
<A NAME=58>from your encounter, then they light on us.</A><br>
|
173 |
+
</blockquote>
|
174 |
+
|
175 |
+
<A NAME=speech22><b>PETO</b></a>
|
176 |
+
<blockquote>
|
177 |
+
<A NAME=59>How many be there of them?</A><br>
|
178 |
+
</blockquote>
|
179 |
+
|
180 |
+
<A NAME=speech23><b>GADSHILL</b></a>
|
181 |
+
<blockquote>
|
182 |
+
<A NAME=60>Some eight or ten.</A><br>
|
183 |
+
</blockquote>
|
184 |
+
|
185 |
+
<A NAME=speech24><b>FALSTAFF</b></a>
|
186 |
+
<blockquote>
|
187 |
+
<A NAME=61>'Zounds, will they not rob us?</A><br>
|
188 |
+
</blockquote>
|
189 |
+
|
190 |
+
<A NAME=speech25><b>PRINCE HENRY</b></a>
|
191 |
+
<blockquote>
|
192 |
+
<A NAME=62>What, a coward, Sir John Paunch?</A><br>
|
193 |
+
</blockquote>
|
194 |
+
|
195 |
+
<A NAME=speech26><b>FALSTAFF</b></a>
|
196 |
+
<blockquote>
|
197 |
+
<A NAME=63>Indeed, I am not John of Gaunt, your grandfather;</A><br>
|
198 |
+
<A NAME=64>but yet no coward, Hal.</A><br>
|
199 |
+
</blockquote>
|
200 |
+
|
201 |
+
<A NAME=speech27><b>PRINCE HENRY</b></a>
|
202 |
+
<blockquote>
|
203 |
+
<A NAME=65>Well, we leave that to the proof.</A><br>
|
204 |
+
</blockquote>
|
205 |
+
|
206 |
+
<A NAME=speech28><b>POINS</b></a>
|
207 |
+
<blockquote>
|
208 |
+
<A NAME=66>Sirrah Jack, thy horse stands behind the hedge:</A><br>
|
209 |
+
<A NAME=67>when thou needest him, there thou shalt find him.</A><br>
|
210 |
+
<A NAME=68>Farewell, and stand fast.</A><br>
|
211 |
+
</blockquote>
|
212 |
+
|
213 |
+
<A NAME=speech29><b>FALSTAFF</b></a>
|
214 |
+
<blockquote>
|
215 |
+
<A NAME=69>Now cannot I strike him, if I should be hanged.</A><br>
|
216 |
+
</blockquote>
|
217 |
+
|
218 |
+
<A NAME=speech30><b>PRINCE HENRY</b></a>
|
219 |
+
<blockquote>
|
220 |
+
<A NAME=70>Ned, where are our disguises?</A><br>
|
221 |
+
</blockquote>
|
222 |
+
|
223 |
+
<A NAME=speech31><b>POINS</b></a>
|
224 |
+
<blockquote>
|
225 |
+
<A NAME=71>Here, hard by: stand close.</A><br>
|
226 |
+
<p><i>Exeunt PRINCE HENRY and POINS</i></p>
|
227 |
+
</blockquote>
|
228 |
+
|
229 |
+
<A NAME=speech32><b>FALSTAFF</b></a>
|
230 |
+
<blockquote>
|
231 |
+
<A NAME=72>Now, my masters, happy man be his dole, say I:</A><br>
|
232 |
+
<A NAME=73>every man to his business.</A><br>
|
233 |
+
<p><i>Enter the Travellers</i></p>
|
234 |
+
</blockquote>
|
235 |
+
|
236 |
+
<A NAME=speech33><b>First Traveller</b></a>
|
237 |
+
<blockquote>
|
238 |
+
<A NAME=74>Come, neighbour: the boy shall lead our horses down</A><br>
|
239 |
+
<A NAME=75>the hill; we'll walk afoot awhile, and ease our legs.</A><br>
|
240 |
+
</blockquote>
|
241 |
+
|
242 |
+
<A NAME=speech34><b>Thieves</b></a>
|
243 |
+
<blockquote>
|
244 |
+
<A NAME=76>Stand!</A><br>
|
245 |
+
</blockquote>
|
246 |
+
|
247 |
+
<A NAME=speech35><b>Travellers</b></a>
|
248 |
+
<blockquote>
|
249 |
+
<A NAME=77>Jesus bless us!</A><br>
|
250 |
+
</blockquote>
|
251 |
+
|
252 |
+
<A NAME=speech36><b>FALSTAFF</b></a>
|
253 |
+
<blockquote>
|
254 |
+
<A NAME=78>Strike; down with them; cut the villains' throats:</A><br>
|
255 |
+
<A NAME=79>ah! whoreson caterpillars! bacon-fed knaves! they</A><br>
|
256 |
+
<A NAME=80>hate us youth: down with them: fleece them.</A><br>
|
257 |
+
</blockquote>
|
258 |
+
|
259 |
+
<A NAME=speech37><b>Travellers</b></a>
|
260 |
+
<blockquote>
|
261 |
+
<A NAME=81>O, we are undone, both we and ours for ever!</A><br>
|
262 |
+
</blockquote>
|
263 |
+
|
264 |
+
<A NAME=speech38><b>FALSTAFF</b></a>
|
265 |
+
<blockquote>
|
266 |
+
<A NAME=82>Hang ye, gorbellied knaves, are ye undone? No, ye</A><br>
|
267 |
+
<A NAME=83>fat chuffs: I would your store were here! On,</A><br>
|
268 |
+
<A NAME=84>bacons, on! What, ye knaves! young men must live.</A><br>
|
269 |
+
<A NAME=85>You are Grand-jurors, are ye? we'll jure ye, 'faith.</A><br>
|
270 |
+
<p><i>Here they rob them and bind them. Exeunt</i></p>
|
271 |
+
<p><i>Re-enter PRINCE HENRY and POINS</i></p>
|
272 |
+
</blockquote>
|
273 |
+
|
274 |
+
<A NAME=speech39><b>PRINCE HENRY</b></a>
|
275 |
+
<blockquote>
|
276 |
+
<A NAME=86>The thieves have bound the true men. Now could thou</A><br>
|
277 |
+
<A NAME=87>and I rob the thieves and go merrily to London, it</A><br>
|
278 |
+
<A NAME=88>would be argument for a week, laughter for a month</A><br>
|
279 |
+
<A NAME=89>and a good jest for ever.</A><br>
|
280 |
+
</blockquote>
|
281 |
+
|
282 |
+
<A NAME=speech40><b>POINS</b></a>
|
283 |
+
<blockquote>
|
284 |
+
<A NAME=90>Stand close; I hear them coming.</A><br>
|
285 |
+
<p><i>Enter the Thieves again</i></p>
|
286 |
+
</blockquote>
|
287 |
+
|
288 |
+
<A NAME=speech41><b>FALSTAFF</b></a>
|
289 |
+
<blockquote>
|
290 |
+
<A NAME=91>Come, my masters, let us share, and then to horse</A><br>
|
291 |
+
<A NAME=92>before day. An the Prince and Poins be not two</A><br>
|
292 |
+
<A NAME=93>arrant cowards, there's no equity stirring: there's</A><br>
|
293 |
+
<A NAME=94>no more valour in that Poins than in a wild-duck.</A><br>
|
294 |
+
</blockquote>
|
295 |
+
|
296 |
+
<A NAME=speech42><b>PRINCE HENRY</b></a>
|
297 |
+
<blockquote>
|
298 |
+
<A NAME=95>Your money!</A><br>
|
299 |
+
</blockquote>
|
300 |
+
|
301 |
+
<A NAME=speech43><b>POINS</b></a>
|
302 |
+
<blockquote>
|
303 |
+
<A NAME=96>Villains!</A><br>
|
304 |
+
<p><i>As they are sharing, the Prince and Poins set upon them; they all run away; and Falstaff, after a blow or two, runs away too, leaving the booty behind them</i></p>
|
305 |
+
</blockquote>
|
306 |
+
|
307 |
+
<A NAME=speech44><b>PRINCE HENRY</b></a>
|
308 |
+
<blockquote>
|
309 |
+
<A NAME=97>Got with much ease. Now merrily to horse:</A><br>
|
310 |
+
<A NAME=98>The thieves are all scatter'd and possess'd with fear</A><br>
|
311 |
+
<A NAME=99>So strongly that they dare not meet each other;</A><br>
|
312 |
+
<A NAME=100>Each takes his fellow for an officer.</A><br>
|
313 |
+
<A NAME=101>Away, good Ned. Falstaff sweats to death,</A><br>
|
314 |
+
<A NAME=102>And lards the lean earth as he walks along:</A><br>
|
315 |
+
<A NAME=103>Were 't not for laughing, I should pity him.</A><br>
|
316 |
+
</blockquote>
|
317 |
+
|
318 |
+
<A NAME=speech45><b>POINS</b></a>
|
319 |
+
<blockquote>
|
320 |
+
<A NAME=104>How the rogue roar'd!</A><br>
|
321 |
+
<p><i>Exeunt</i></p>
|
322 |
+
</blockquote>
|
323 |
+
<table width="100%" bgcolor="#CCF6F6">
|
324 |
+
<tr><td class="nav" align="center">
|
325 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
326 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
327 |
+
| Act 2, Scene 2
|
328 |
+
<br>
|
329 |
+
<a href="1henryiv.2.1.html">Previous scene</A>
|
330 |
+
| <a href="1henryiv.2.3.html">Next scene</A>
|
331 |
+
</table>
|
332 |
+
|
333 |
+
</body>
|
334 |
+
</html>
|
335 |
+
|
336 |
+
|
data/1henryiv.2.3.html
ADDED
@@ -0,0 +1,256 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. Warkworth castle
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 2, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.2.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.2.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. Warkworth castle</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter HOTSPUR, solus, reading a letter</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>HOTSPUR</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>'But for mine own part, my lord, I could be well</A><br>
|
33 |
+
<A NAME=2>contented to be there, in respect of the love I bear</A><br>
|
34 |
+
<A NAME=3>your house.' He could be contented: why is he not,</A><br>
|
35 |
+
<A NAME=4>then? In respect of the love he bears our house:</A><br>
|
36 |
+
<A NAME=5>he shows in this, he loves his own barn better than</A><br>
|
37 |
+
<A NAME=6>he loves our house. Let me see some more. 'The</A><br>
|
38 |
+
<A NAME=7>purpose you undertake is dangerous;'--why, that's</A><br>
|
39 |
+
<A NAME=8>certain: 'tis dangerous to take a cold, to sleep, to</A><br>
|
40 |
+
<A NAME=9>drink; but I tell you, my lord fool, out of this</A><br>
|
41 |
+
<A NAME=10>nettle, danger, we pluck this flower, safety. 'The</A><br>
|
42 |
+
<A NAME=11>purpose you undertake is dangerous; the friends you</A><br>
|
43 |
+
<A NAME=12>have named uncertain; the time itself unsorted; and</A><br>
|
44 |
+
<A NAME=13>your whole plot too light for the counterpoise of so</A><br>
|
45 |
+
<A NAME=14>great an opposition.' Say you so, say you so? I say</A><br>
|
46 |
+
<A NAME=15>unto you again, you are a shallow cowardly hind, and</A><br>
|
47 |
+
<A NAME=16>you lie. What a lack-brain is this! By the Lord,</A><br>
|
48 |
+
<A NAME=17>our plot is a good plot as ever was laid; our</A><br>
|
49 |
+
<A NAME=18>friends true and constant: a good plot, good</A><br>
|
50 |
+
<A NAME=19>friends, and full of expectation; an excellent plot,</A><br>
|
51 |
+
<A NAME=20>very good friends. What a frosty-spirited rogue is</A><br>
|
52 |
+
<A NAME=21>this! Why, my lord of York commends the plot and the</A><br>
|
53 |
+
<A NAME=22>general course of action. 'Zounds, an I were now by</A><br>
|
54 |
+
<A NAME=23>this rascal, I could brain him with his lady's fan.</A><br>
|
55 |
+
<A NAME=24>Is there not my father, my uncle and myself? lord</A><br>
|
56 |
+
<A NAME=25>Edmund Mortimer, My lord of York and Owen Glendower?</A><br>
|
57 |
+
<A NAME=26>is there not besides the Douglas? have I not all</A><br>
|
58 |
+
<A NAME=27>their letters to meet me in arms by the ninth of the</A><br>
|
59 |
+
<A NAME=28>next month? and are they not some of them set</A><br>
|
60 |
+
<A NAME=29>forward already? What a pagan rascal is this! an</A><br>
|
61 |
+
<A NAME=30>infidel! Ha! you shall see now in very sincerity</A><br>
|
62 |
+
<A NAME=31>of fear and cold heart, will he to the king and lay</A><br>
|
63 |
+
<A NAME=32>open all our proceedings. O, I could divide myself</A><br>
|
64 |
+
<A NAME=33>and go to buffets, for moving such a dish of</A><br>
|
65 |
+
<A NAME=34>skim milk with so honourable an action! Hang him!</A><br>
|
66 |
+
<A NAME=35>let him tell the king: we are prepared. I will set</A><br>
|
67 |
+
<A NAME=36>forward to-night.</A><br>
|
68 |
+
<p><i>Enter LADY PERCY</i></p>
|
69 |
+
<A NAME=37>How now, Kate! I must leave you within these two hours.</A><br>
|
70 |
+
</blockquote>
|
71 |
+
|
72 |
+
<A NAME=speech2><b>LADY PERCY</b></a>
|
73 |
+
<blockquote>
|
74 |
+
<A NAME=38>O, my good lord, why are you thus alone?</A><br>
|
75 |
+
<A NAME=39>For what offence have I this fortnight been</A><br>
|
76 |
+
<A NAME=40>A banish'd woman from my Harry's bed?</A><br>
|
77 |
+
<A NAME=41>Tell me, sweet lord, what is't that takes from thee</A><br>
|
78 |
+
<A NAME=42>Thy stomach, pleasure and thy golden sleep?</A><br>
|
79 |
+
<A NAME=43>Why dost thou bend thine eyes upon the earth,</A><br>
|
80 |
+
<A NAME=44>And start so often when thou sit'st alone?</A><br>
|
81 |
+
<A NAME=45>Why hast thou lost the fresh blood in thy cheeks;</A><br>
|
82 |
+
<A NAME=46>And given my treasures and my rights of thee</A><br>
|
83 |
+
<A NAME=47>To thick-eyed musing and cursed melancholy?</A><br>
|
84 |
+
<A NAME=48>In thy faint slumbers I by thee have watch'd,</A><br>
|
85 |
+
<A NAME=49>And heard thee murmur tales of iron wars;</A><br>
|
86 |
+
<A NAME=50>Speak terms of manage to thy bounding steed;</A><br>
|
87 |
+
<A NAME=51>Cry 'Courage! to the field!' And thou hast talk'd</A><br>
|
88 |
+
<A NAME=52>Of sallies and retires, of trenches, tents,</A><br>
|
89 |
+
<A NAME=53>Of palisadoes, frontiers, parapets,</A><br>
|
90 |
+
<A NAME=54>Of basilisks, of cannon, culverin,</A><br>
|
91 |
+
<A NAME=55>Of prisoners' ransom and of soldiers slain,</A><br>
|
92 |
+
<A NAME=56>And all the currents of a heady fight.</A><br>
|
93 |
+
<A NAME=57>Thy spirit within thee hath been so at war</A><br>
|
94 |
+
<A NAME=58>And thus hath so bestirr'd thee in thy sleep,</A><br>
|
95 |
+
<A NAME=59>That beads of sweat have stood upon thy brow</A><br>
|
96 |
+
<A NAME=60>Like bubbles in a late-disturbed stream;</A><br>
|
97 |
+
<A NAME=61>And in thy face strange motions have appear'd,</A><br>
|
98 |
+
<A NAME=62>Such as we see when men restrain their breath</A><br>
|
99 |
+
<A NAME=63>On some great sudden hest. O, what portents are these?</A><br>
|
100 |
+
<A NAME=64>Some heavy business hath my lord in hand,</A><br>
|
101 |
+
<A NAME=65>And I must know it, else he loves me not.</A><br>
|
102 |
+
</blockquote>
|
103 |
+
|
104 |
+
<A NAME=speech3><b>HOTSPUR</b></a>
|
105 |
+
<blockquote>
|
106 |
+
<A NAME=66>What, ho!</A><br>
|
107 |
+
<p><i>Enter Servant</i></p>
|
108 |
+
<A NAME=67>Is Gilliams with the packet gone?</A><br>
|
109 |
+
</blockquote>
|
110 |
+
|
111 |
+
<A NAME=speech4><b>Servant</b></a>
|
112 |
+
<blockquote>
|
113 |
+
<A NAME=68>He is, my lord, an hour ago.</A><br>
|
114 |
+
</blockquote>
|
115 |
+
|
116 |
+
<A NAME=speech5><b>HOTSPUR</b></a>
|
117 |
+
<blockquote>
|
118 |
+
<A NAME=69>Hath Butler brought those horses from the sheriff?</A><br>
|
119 |
+
</blockquote>
|
120 |
+
|
121 |
+
<A NAME=speech6><b>Servant</b></a>
|
122 |
+
<blockquote>
|
123 |
+
<A NAME=70>One horse, my lord, he brought even now.</A><br>
|
124 |
+
</blockquote>
|
125 |
+
|
126 |
+
<A NAME=speech7><b>HOTSPUR</b></a>
|
127 |
+
<blockquote>
|
128 |
+
<A NAME=71>What horse? a roan, a crop-ear, is it not?</A><br>
|
129 |
+
</blockquote>
|
130 |
+
|
131 |
+
<A NAME=speech8><b>Servant</b></a>
|
132 |
+
<blockquote>
|
133 |
+
<A NAME=72>It is, my lord.</A><br>
|
134 |
+
</blockquote>
|
135 |
+
|
136 |
+
<A NAME=speech9><b>HOTSPUR</b></a>
|
137 |
+
<blockquote>
|
138 |
+
<A NAME=73> That roan shall by my throne.</A><br>
|
139 |
+
<A NAME=74>Well, I will back him straight: O esperance!</A><br>
|
140 |
+
<A NAME=75>Bid Butler lead him forth into the park.</A><br>
|
141 |
+
<p><i>Exit Servant</i></p>
|
142 |
+
</blockquote>
|
143 |
+
|
144 |
+
<A NAME=speech10><b>LADY PERCY</b></a>
|
145 |
+
<blockquote>
|
146 |
+
<A NAME=76>But hear you, my lord.</A><br>
|
147 |
+
</blockquote>
|
148 |
+
|
149 |
+
<A NAME=speech11><b>HOTSPUR</b></a>
|
150 |
+
<blockquote>
|
151 |
+
<A NAME=77>What say'st thou, my lady?</A><br>
|
152 |
+
</blockquote>
|
153 |
+
|
154 |
+
<A NAME=speech12><b>LADY PERCY</b></a>
|
155 |
+
<blockquote>
|
156 |
+
<A NAME=78>What is it carries you away?</A><br>
|
157 |
+
</blockquote>
|
158 |
+
|
159 |
+
<A NAME=speech13><b>HOTSPUR</b></a>
|
160 |
+
<blockquote>
|
161 |
+
<A NAME=79>Why, my horse, my love, my horse.</A><br>
|
162 |
+
</blockquote>
|
163 |
+
|
164 |
+
<A NAME=speech14><b>LADY PERCY</b></a>
|
165 |
+
<blockquote>
|
166 |
+
<A NAME=80>Out, you mad-headed ape!</A><br>
|
167 |
+
<A NAME=81>A weasel hath not such a deal of spleen</A><br>
|
168 |
+
<A NAME=82>As you are toss'd with. In faith,</A><br>
|
169 |
+
<A NAME=83>I'll know your business, Harry, that I will.</A><br>
|
170 |
+
<A NAME=84>I fear my brother Mortimer doth stir</A><br>
|
171 |
+
<A NAME=85>About his title, and hath sent for you</A><br>
|
172 |
+
<A NAME=86>To line his enterprise: but if you go,--</A><br>
|
173 |
+
</blockquote>
|
174 |
+
|
175 |
+
<A NAME=speech15><b>HOTSPUR</b></a>
|
176 |
+
<blockquote>
|
177 |
+
<A NAME=87>So far afoot, I shall be weary, love.</A><br>
|
178 |
+
</blockquote>
|
179 |
+
|
180 |
+
<A NAME=speech16><b>LADY PERCY</b></a>
|
181 |
+
<blockquote>
|
182 |
+
<A NAME=88>Come, come, you paraquito, answer me</A><br>
|
183 |
+
<A NAME=89>Directly unto this question that I ask:</A><br>
|
184 |
+
<A NAME=90>In faith, I'll break thy little finger, Harry,</A><br>
|
185 |
+
<A NAME=91>An if thou wilt not tell me all things true.</A><br>
|
186 |
+
</blockquote>
|
187 |
+
|
188 |
+
<A NAME=speech17><b>HOTSPUR</b></a>
|
189 |
+
<blockquote>
|
190 |
+
<A NAME=92>Away,</A><br>
|
191 |
+
<A NAME=93>Away, you trifler! Love! I love thee not,</A><br>
|
192 |
+
<A NAME=94>I care not for thee, Kate: this is no world</A><br>
|
193 |
+
<A NAME=95>To play with mammets and to tilt with lips:</A><br>
|
194 |
+
<A NAME=96>We must have bloody noses and crack'd crowns,</A><br>
|
195 |
+
<A NAME=97>And pass them current too. God's me, my horse!</A><br>
|
196 |
+
<A NAME=98>What say'st thou, Kate? what would'st thou</A><br>
|
197 |
+
<A NAME=99>have with me?</A><br>
|
198 |
+
</blockquote>
|
199 |
+
|
200 |
+
<A NAME=speech18><b>LADY PERCY</b></a>
|
201 |
+
<blockquote>
|
202 |
+
<A NAME=100>Do you not love me? do you not, indeed?</A><br>
|
203 |
+
<A NAME=101>Well, do not then; for since you love me not,</A><br>
|
204 |
+
<A NAME=102>I will not love myself. Do you not love me?</A><br>
|
205 |
+
<A NAME=103>Nay, tell me if you speak in jest or no.</A><br>
|
206 |
+
</blockquote>
|
207 |
+
|
208 |
+
<A NAME=speech19><b>HOTSPUR</b></a>
|
209 |
+
<blockquote>
|
210 |
+
<A NAME=104>Come, wilt thou see me ride?</A><br>
|
211 |
+
<A NAME=105>And when I am on horseback, I will swear</A><br>
|
212 |
+
<A NAME=106>I love thee infinitely. But hark you, Kate;</A><br>
|
213 |
+
<A NAME=107>I must not have you henceforth question me</A><br>
|
214 |
+
<A NAME=108>Whither I go, nor reason whereabout:</A><br>
|
215 |
+
<A NAME=109>Whither I must, I must; and, to conclude,</A><br>
|
216 |
+
<A NAME=110>This evening must I leave you, gentle Kate.</A><br>
|
217 |
+
<A NAME=111>I know you wise, but yet no farther wise</A><br>
|
218 |
+
<A NAME=112>Than Harry Percy's wife: constant you are,</A><br>
|
219 |
+
<A NAME=113>But yet a woman: and for secrecy,</A><br>
|
220 |
+
<A NAME=114>No lady closer; for I well believe</A><br>
|
221 |
+
<A NAME=115>Thou wilt not utter what thou dost not know;</A><br>
|
222 |
+
<A NAME=116>And so far will I trust thee, gentle Kate.</A><br>
|
223 |
+
</blockquote>
|
224 |
+
|
225 |
+
<A NAME=speech20><b>LADY PERCY</b></a>
|
226 |
+
<blockquote>
|
227 |
+
<A NAME=117>How! so far?</A><br>
|
228 |
+
</blockquote>
|
229 |
+
|
230 |
+
<A NAME=speech21><b>HOTSPUR</b></a>
|
231 |
+
<blockquote>
|
232 |
+
<A NAME=118>Not an inch further. But hark you, Kate:</A><br>
|
233 |
+
<A NAME=119>Whither I go, thither shall you go too;</A><br>
|
234 |
+
<A NAME=120>To-day will I set forth, to-morrow you.</A><br>
|
235 |
+
<A NAME=121>Will this content you, Kate?</A><br>
|
236 |
+
</blockquote>
|
237 |
+
|
238 |
+
<A NAME=speech22><b>LADY PERCY</b></a>
|
239 |
+
<blockquote>
|
240 |
+
<A NAME=122>It must of force.</A><br>
|
241 |
+
<p><i>Exeunt</i></p>
|
242 |
+
</blockquote>
|
243 |
+
<table width="100%" bgcolor="#CCF6F6">
|
244 |
+
<tr><td class="nav" align="center">
|
245 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
246 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
247 |
+
| Act 2, Scene 3
|
248 |
+
<br>
|
249 |
+
<a href="1henryiv.2.2.html">Previous scene</A>
|
250 |
+
| <a href="1henryiv.2.4.html">Next scene</A>
|
251 |
+
</table>
|
252 |
+
|
253 |
+
</body>
|
254 |
+
</html>
|
255 |
+
|
256 |
+
|
data/1henryiv.2.4.html
ADDED
@@ -0,0 +1,1389 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. The Boar's-Head Tavern, Eastcheap.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 2, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.2.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.3.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. The Boar's-Head Tavern, Eastcheap.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter PRINCE HENRY and POINS</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>PRINCE HENRY</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Ned, prithee, come out of that fat room, and lend me</A><br>
|
33 |
+
<A NAME=2>thy hand to laugh a little.</A><br>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>POINS</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=3>Where hast been, Hal?</A><br>
|
39 |
+
</blockquote>
|
40 |
+
|
41 |
+
<A NAME=speech3><b>PRINCE HENRY</b></a>
|
42 |
+
<blockquote>
|
43 |
+
<A NAME=4>With three or four loggerheads amongst three or four</A><br>
|
44 |
+
<A NAME=5>score hogsheads. I have sounded the very</A><br>
|
45 |
+
<A NAME=6>base-string of humility. Sirrah, I am sworn brother</A><br>
|
46 |
+
<A NAME=7>to a leash of drawers; and can call them all by</A><br>
|
47 |
+
<A NAME=8>their christen names, as Tom, Dick, and Francis.</A><br>
|
48 |
+
<A NAME=9>They take it already upon their salvation, that</A><br>
|
49 |
+
<A NAME=10>though I be but the prince of Wales, yet I am king</A><br>
|
50 |
+
<A NAME=11>of courtesy; and tell me flatly I am no proud Jack,</A><br>
|
51 |
+
<A NAME=12>like Falstaff, but a Corinthian, a lad of mettle, a</A><br>
|
52 |
+
<A NAME=13>good boy, by the Lord, so they call me, and when I</A><br>
|
53 |
+
<A NAME=14>am king of England, I shall command all the good</A><br>
|
54 |
+
<A NAME=15>lads in Eastcheap. They call drinking deep, dyeing</A><br>
|
55 |
+
<A NAME=16>scarlet; and when you breathe in your watering, they</A><br>
|
56 |
+
<A NAME=17>cry 'hem!' and bid you play it off. To conclude, I</A><br>
|
57 |
+
<A NAME=18>am so good a proficient in one quarter of an hour,</A><br>
|
58 |
+
<A NAME=19>that I can drink with any tinker in his own language</A><br>
|
59 |
+
<A NAME=20>during my life. I tell thee, Ned, thou hast lost</A><br>
|
60 |
+
<A NAME=21>much honour, that thou wert not with me in this sweet</A><br>
|
61 |
+
<A NAME=22>action. But, sweet Ned,--to sweeten which name of</A><br>
|
62 |
+
<A NAME=23>Ned, I give thee this pennyworth of sugar, clapped</A><br>
|
63 |
+
<A NAME=24>even now into my hand by an under-skinker, one that</A><br>
|
64 |
+
<A NAME=25>never spake other English in his life than 'Eight</A><br>
|
65 |
+
<A NAME=26>shillings and sixpence' and 'You are welcome,' with</A><br>
|
66 |
+
<A NAME=27>this shrill addition, 'Anon, anon, sir! Score a pint</A><br>
|
67 |
+
<A NAME=28>of bastard in the Half-Moon,' or so. But, Ned, to</A><br>
|
68 |
+
<A NAME=29>drive away the time till Falstaff come, I prithee,</A><br>
|
69 |
+
<A NAME=30>do thou stand in some by-room, while I question my</A><br>
|
70 |
+
<A NAME=31>puny drawer to what end he gave me the sugar; and do</A><br>
|
71 |
+
<A NAME=32>thou never leave calling 'Francis,' that his tale</A><br>
|
72 |
+
<A NAME=33>to me may be nothing but 'Anon.' Step aside, and</A><br>
|
73 |
+
<A NAME=34>I'll show thee a precedent.</A><br>
|
74 |
+
</blockquote>
|
75 |
+
|
76 |
+
<A NAME=speech4><b>POINS</b></a>
|
77 |
+
<blockquote>
|
78 |
+
<A NAME=35>Francis!</A><br>
|
79 |
+
</blockquote>
|
80 |
+
|
81 |
+
<A NAME=speech5><b>PRINCE HENRY</b></a>
|
82 |
+
<blockquote>
|
83 |
+
<A NAME=36>Thou art perfect.</A><br>
|
84 |
+
</blockquote>
|
85 |
+
|
86 |
+
<A NAME=speech6><b>POINS</b></a>
|
87 |
+
<blockquote>
|
88 |
+
<A NAME=37>Francis!</A><br>
|
89 |
+
<p><i>Exit POINS</i></p>
|
90 |
+
<p><i>Enter FRANCIS</i></p>
|
91 |
+
</blockquote>
|
92 |
+
|
93 |
+
<A NAME=speech7><b>FRANCIS</b></a>
|
94 |
+
<blockquote>
|
95 |
+
<A NAME=38>Anon, anon, sir. Look down into the Pomgarnet, Ralph.</A><br>
|
96 |
+
</blockquote>
|
97 |
+
|
98 |
+
<A NAME=speech8><b>PRINCE HENRY</b></a>
|
99 |
+
<blockquote>
|
100 |
+
<A NAME=39>Come hither, Francis.</A><br>
|
101 |
+
</blockquote>
|
102 |
+
|
103 |
+
<A NAME=speech9><b>FRANCIS</b></a>
|
104 |
+
<blockquote>
|
105 |
+
<A NAME=40>My lord?</A><br>
|
106 |
+
</blockquote>
|
107 |
+
|
108 |
+
<A NAME=speech10><b>PRINCE HENRY</b></a>
|
109 |
+
<blockquote>
|
110 |
+
<A NAME=41>How long hast thou to serve, Francis?</A><br>
|
111 |
+
</blockquote>
|
112 |
+
|
113 |
+
<A NAME=speech11><b>FRANCIS</b></a>
|
114 |
+
<blockquote>
|
115 |
+
<A NAME=42>Forsooth, five years, and as much as to--</A><br>
|
116 |
+
</blockquote>
|
117 |
+
|
118 |
+
<A NAME=speech12><b>POINS</b></a>
|
119 |
+
<blockquote>
|
120 |
+
<A NAME=43>[Within] Francis!</A><br>
|
121 |
+
</blockquote>
|
122 |
+
|
123 |
+
<A NAME=speech13><b>FRANCIS</b></a>
|
124 |
+
<blockquote>
|
125 |
+
<A NAME=44>Anon, anon, sir.</A><br>
|
126 |
+
</blockquote>
|
127 |
+
|
128 |
+
<A NAME=speech14><b>PRINCE HENRY</b></a>
|
129 |
+
<blockquote>
|
130 |
+
<A NAME=45>Five year! by'r lady, a long lease for the clinking</A><br>
|
131 |
+
<A NAME=46>of pewter. But, Francis, darest thou be so valiant</A><br>
|
132 |
+
<A NAME=47>as to play the coward with thy indenture and show it</A><br>
|
133 |
+
<A NAME=48>a fair pair of heels and run from it?</A><br>
|
134 |
+
</blockquote>
|
135 |
+
|
136 |
+
<A NAME=speech15><b>FRANCIS</b></a>
|
137 |
+
<blockquote>
|
138 |
+
<A NAME=49>O Lord, sir, I'll be sworn upon all the books in</A><br>
|
139 |
+
<A NAME=50>England, I could find in my heart.</A><br>
|
140 |
+
</blockquote>
|
141 |
+
|
142 |
+
<A NAME=speech16><b>POINS</b></a>
|
143 |
+
<blockquote>
|
144 |
+
<A NAME=51>[Within] Francis!</A><br>
|
145 |
+
</blockquote>
|
146 |
+
|
147 |
+
<A NAME=speech17><b>FRANCIS</b></a>
|
148 |
+
<blockquote>
|
149 |
+
<A NAME=52>Anon, sir.</A><br>
|
150 |
+
</blockquote>
|
151 |
+
|
152 |
+
<A NAME=speech18><b>PRINCE HENRY</b></a>
|
153 |
+
<blockquote>
|
154 |
+
<A NAME=53>How old art thou, Francis?</A><br>
|
155 |
+
</blockquote>
|
156 |
+
|
157 |
+
<A NAME=speech19><b>FRANCIS</b></a>
|
158 |
+
<blockquote>
|
159 |
+
<A NAME=54>Let me see--about Michaelmas next I shall be--</A><br>
|
160 |
+
</blockquote>
|
161 |
+
|
162 |
+
<A NAME=speech20><b>POINS</b></a>
|
163 |
+
<blockquote>
|
164 |
+
<A NAME=55>[Within] Francis!</A><br>
|
165 |
+
</blockquote>
|
166 |
+
|
167 |
+
<A NAME=speech21><b>FRANCIS</b></a>
|
168 |
+
<blockquote>
|
169 |
+
<A NAME=56>Anon, sir. Pray stay a little, my lord.</A><br>
|
170 |
+
</blockquote>
|
171 |
+
|
172 |
+
<A NAME=speech22><b>PRINCE HENRY</b></a>
|
173 |
+
<blockquote>
|
174 |
+
<A NAME=57>Nay, but hark you, Francis: for the sugar thou</A><br>
|
175 |
+
<A NAME=58>gavest me,'twas a pennyworth, wast't not?</A><br>
|
176 |
+
</blockquote>
|
177 |
+
|
178 |
+
<A NAME=speech23><b>FRANCIS</b></a>
|
179 |
+
<blockquote>
|
180 |
+
<A NAME=59>O Lord, I would it had been two!</A><br>
|
181 |
+
</blockquote>
|
182 |
+
|
183 |
+
<A NAME=speech24><b>PRINCE HENRY</b></a>
|
184 |
+
<blockquote>
|
185 |
+
<A NAME=60>I will give thee for it a thousand pound: ask me</A><br>
|
186 |
+
<A NAME=61>when thou wilt, and thou shalt have it.</A><br>
|
187 |
+
</blockquote>
|
188 |
+
|
189 |
+
<A NAME=speech25><b>POINS</b></a>
|
190 |
+
<blockquote>
|
191 |
+
<A NAME=62>[Within] Francis!</A><br>
|
192 |
+
</blockquote>
|
193 |
+
|
194 |
+
<A NAME=speech26><b>FRANCIS</b></a>
|
195 |
+
<blockquote>
|
196 |
+
<A NAME=63>Anon, anon.</A><br>
|
197 |
+
</blockquote>
|
198 |
+
|
199 |
+
<A NAME=speech27><b>PRINCE HENRY</b></a>
|
200 |
+
<blockquote>
|
201 |
+
<A NAME=64>Anon, Francis? No, Francis; but to-morrow, Francis;</A><br>
|
202 |
+
<A NAME=65>or, Francis, o' Thursday; or indeed, Francis, when</A><br>
|
203 |
+
<A NAME=66>thou wilt. But, Francis!</A><br>
|
204 |
+
</blockquote>
|
205 |
+
|
206 |
+
<A NAME=speech28><b>FRANCIS</b></a>
|
207 |
+
<blockquote>
|
208 |
+
<A NAME=67>My lord?</A><br>
|
209 |
+
</blockquote>
|
210 |
+
|
211 |
+
<A NAME=speech29><b>PRINCE HENRY</b></a>
|
212 |
+
<blockquote>
|
213 |
+
<A NAME=68>Wilt thou rob this leathern jerkin, crystal-button,</A><br>
|
214 |
+
<A NAME=69>not-pated, agate-ring, puke-stocking, caddis-garter,</A><br>
|
215 |
+
<A NAME=70>smooth-tongue, Spanish-pouch,--</A><br>
|
216 |
+
</blockquote>
|
217 |
+
|
218 |
+
<A NAME=speech30><b>FRANCIS</b></a>
|
219 |
+
<blockquote>
|
220 |
+
<A NAME=71>O Lord, sir, who do you mean?</A><br>
|
221 |
+
</blockquote>
|
222 |
+
|
223 |
+
<A NAME=speech31><b>PRINCE HENRY</b></a>
|
224 |
+
<blockquote>
|
225 |
+
<A NAME=72>Why, then, your brown bastard is your only drink;</A><br>
|
226 |
+
<A NAME=73>for look you, Francis, your white canvas doublet</A><br>
|
227 |
+
<A NAME=74>will sully: in Barbary, sir, it cannot come to so much.</A><br>
|
228 |
+
</blockquote>
|
229 |
+
|
230 |
+
<A NAME=speech32><b>FRANCIS</b></a>
|
231 |
+
<blockquote>
|
232 |
+
<A NAME=75>What, sir?</A><br>
|
233 |
+
</blockquote>
|
234 |
+
|
235 |
+
<A NAME=speech33><b>POINS</b></a>
|
236 |
+
<blockquote>
|
237 |
+
<A NAME=76>[Within] Francis!</A><br>
|
238 |
+
</blockquote>
|
239 |
+
|
240 |
+
<A NAME=speech34><b>PRINCE HENRY</b></a>
|
241 |
+
<blockquote>
|
242 |
+
<A NAME=77>Away, you rogue! dost thou not hear them call?</A><br>
|
243 |
+
<p><i>Here they both call him; the drawer stands amazed, not knowing which way to go</i></p>
|
244 |
+
<p><i>Enter Vintner</i></p>
|
245 |
+
</blockquote>
|
246 |
+
|
247 |
+
<A NAME=speech35><b>Vintner</b></a>
|
248 |
+
<blockquote>
|
249 |
+
<A NAME=78>What, standest thou still, and hearest such a</A><br>
|
250 |
+
<A NAME=79>calling? Look to the guests within.</A><br>
|
251 |
+
<p><i>Exit Francis</i></p>
|
252 |
+
<A NAME=80>My lord, old Sir John, with half-a-dozen more, are</A><br>
|
253 |
+
<A NAME=81>at the door: shall I let them in?</A><br>
|
254 |
+
</blockquote>
|
255 |
+
|
256 |
+
<A NAME=speech36><b>PRINCE HENRY</b></a>
|
257 |
+
<blockquote>
|
258 |
+
<A NAME=82>Let them alone awhile, and then open the door.</A><br>
|
259 |
+
<p><i>Exit Vintner</i></p>
|
260 |
+
<A NAME=83>Poins!</A><br>
|
261 |
+
<p><i>Re-enter POINS</i></p>
|
262 |
+
</blockquote>
|
263 |
+
|
264 |
+
<A NAME=speech37><b>POINS</b></a>
|
265 |
+
<blockquote>
|
266 |
+
<A NAME=84>Anon, anon, sir.</A><br>
|
267 |
+
</blockquote>
|
268 |
+
|
269 |
+
<A NAME=speech38><b>PRINCE HENRY</b></a>
|
270 |
+
<blockquote>
|
271 |
+
<A NAME=85>Sirrah, Falstaff and the rest of the thieves are at</A><br>
|
272 |
+
<A NAME=86>the door: shall we be merry?</A><br>
|
273 |
+
</blockquote>
|
274 |
+
|
275 |
+
<A NAME=speech39><b>POINS</b></a>
|
276 |
+
<blockquote>
|
277 |
+
<A NAME=87>As merry as crickets, my lad. But hark ye; what</A><br>
|
278 |
+
<A NAME=88>cunning match have you made with this jest of the</A><br>
|
279 |
+
<A NAME=89>drawer? come, what's the issue?</A><br>
|
280 |
+
</blockquote>
|
281 |
+
|
282 |
+
<A NAME=speech40><b>PRINCE HENRY</b></a>
|
283 |
+
<blockquote>
|
284 |
+
<A NAME=90>I am now of all humours that have showed themselves</A><br>
|
285 |
+
<A NAME=91>humours since the old days of goodman Adam to the</A><br>
|
286 |
+
<A NAME=92>pupil age of this present twelve o'clock at midnight.</A><br>
|
287 |
+
<p><i>Re-enter FRANCIS</i></p>
|
288 |
+
<A NAME=93>What's o'clock, Francis?</A><br>
|
289 |
+
</blockquote>
|
290 |
+
|
291 |
+
<A NAME=speech41><b>FRANCIS</b></a>
|
292 |
+
<blockquote>
|
293 |
+
<A NAME=94>Anon, anon, sir.</A><br>
|
294 |
+
<p><i>Exit</i></p>
|
295 |
+
</blockquote>
|
296 |
+
|
297 |
+
<A NAME=speech42><b>PRINCE HENRY</b></a>
|
298 |
+
<blockquote>
|
299 |
+
<A NAME=95>That ever this fellow should have fewer words than a</A><br>
|
300 |
+
<A NAME=96>parrot, and yet the son of a woman! His industry is</A><br>
|
301 |
+
<A NAME=97>upstairs and downstairs; his eloquence the parcel of</A><br>
|
302 |
+
<A NAME=98>a reckoning. I am not yet of Percy's mind, the</A><br>
|
303 |
+
<A NAME=99>Hotspur of the north; he that kills me some six or</A><br>
|
304 |
+
<A NAME=100>seven dozen of Scots at a breakfast, washes his</A><br>
|
305 |
+
<A NAME=101>hands, and says to his wife 'Fie upon this quiet</A><br>
|
306 |
+
<A NAME=102>life! I want work.' 'O my sweet Harry,' says she,</A><br>
|
307 |
+
<A NAME=103>'how many hast thou killed to-day?' 'Give my roan</A><br>
|
308 |
+
<A NAME=104>horse a drench,' says he; and answers 'Some</A><br>
|
309 |
+
<A NAME=105>fourteen,' an hour after; 'a trifle, a trifle.' I</A><br>
|
310 |
+
<A NAME=106>prithee, call in Falstaff: I'll play Percy, and</A><br>
|
311 |
+
<A NAME=107>that damned brawn shall play Dame Mortimer his</A><br>
|
312 |
+
<A NAME=108>wife. 'Rivo!' says the drunkard. Call in ribs, call in tallow.</A><br>
|
313 |
+
<p><i>Enter FALSTAFF, GADSHILL, BARDOLPH, and PETO; FRANCIS following with wine</i></p>
|
314 |
+
</blockquote>
|
315 |
+
|
316 |
+
<A NAME=speech43><b>POINS</b></a>
|
317 |
+
<blockquote>
|
318 |
+
<A NAME=109>Welcome, Jack: where hast thou been?</A><br>
|
319 |
+
</blockquote>
|
320 |
+
|
321 |
+
<A NAME=speech44><b>FALSTAFF</b></a>
|
322 |
+
<blockquote>
|
323 |
+
<A NAME=110>A plague of all cowards, I say, and a vengeance too!</A><br>
|
324 |
+
<A NAME=111>marry, and amen! Give me a cup of sack, boy. Ere I</A><br>
|
325 |
+
<A NAME=112>lead this life long, I'll sew nether stocks and mend</A><br>
|
326 |
+
<A NAME=113>them and foot them too. A plague of all cowards!</A><br>
|
327 |
+
<A NAME=114>Give me a cup of sack, rogue. Is there no virtue extant?</A><br>
|
328 |
+
<p><i>He drinks</i></p>
|
329 |
+
</blockquote>
|
330 |
+
|
331 |
+
<A NAME=speech45><b>PRINCE HENRY</b></a>
|
332 |
+
<blockquote>
|
333 |
+
<A NAME=115>Didst thou never see Titan kiss a dish of butter?</A><br>
|
334 |
+
<A NAME=116>pitiful-hearted Titan, that melted at the sweet tale</A><br>
|
335 |
+
<A NAME=117>of the sun's! if thou didst, then behold that compound.</A><br>
|
336 |
+
</blockquote>
|
337 |
+
|
338 |
+
<A NAME=speech46><b>FALSTAFF</b></a>
|
339 |
+
<blockquote>
|
340 |
+
<A NAME=118>You rogue, here's lime in this sack too: there is</A><br>
|
341 |
+
<A NAME=119>nothing but roguery to be found in villanous man:</A><br>
|
342 |
+
<A NAME=120>yet a coward is worse than a cup of sack with lime</A><br>
|
343 |
+
<A NAME=121>in it. A villanous coward! Go thy ways, old Jack;</A><br>
|
344 |
+
<A NAME=122>die when thou wilt, if manhood, good manhood, be</A><br>
|
345 |
+
<A NAME=123>not forgot upon the face of the earth, then am I a</A><br>
|
346 |
+
<A NAME=124>shotten herring. There live not three good men</A><br>
|
347 |
+
<A NAME=125>unhanged in England; and one of them is fat and</A><br>
|
348 |
+
<A NAME=126>grows old: God help the while! a bad world, I say.</A><br>
|
349 |
+
<A NAME=127>I would I were a weaver; I could sing psalms or any</A><br>
|
350 |
+
<A NAME=128>thing. A plague of all cowards, I say still.</A><br>
|
351 |
+
</blockquote>
|
352 |
+
|
353 |
+
<A NAME=speech47><b>PRINCE HENRY</b></a>
|
354 |
+
<blockquote>
|
355 |
+
<A NAME=129>How now, wool-sack! what mutter you?</A><br>
|
356 |
+
</blockquote>
|
357 |
+
|
358 |
+
<A NAME=speech48><b>FALSTAFF</b></a>
|
359 |
+
<blockquote>
|
360 |
+
<A NAME=130>A king's son! If I do not beat thee out of thy</A><br>
|
361 |
+
<A NAME=131>kingdom with a dagger of lath, and drive all thy</A><br>
|
362 |
+
<A NAME=132>subjects afore thee like a flock of wild-geese,</A><br>
|
363 |
+
<A NAME=133>I'll never wear hair on my face more. You Prince of Wales!</A><br>
|
364 |
+
</blockquote>
|
365 |
+
|
366 |
+
<A NAME=speech49><b>PRINCE HENRY</b></a>
|
367 |
+
<blockquote>
|
368 |
+
<A NAME=134>Why, you whoreson round man, what's the matter?</A><br>
|
369 |
+
</blockquote>
|
370 |
+
|
371 |
+
<A NAME=speech50><b>FALSTAFF</b></a>
|
372 |
+
<blockquote>
|
373 |
+
<A NAME=135>Are not you a coward? answer me to that: and Poins there?</A><br>
|
374 |
+
</blockquote>
|
375 |
+
|
376 |
+
<A NAME=speech51><b>POINS</b></a>
|
377 |
+
<blockquote>
|
378 |
+
<A NAME=136>'Zounds, ye fat paunch, an ye call me coward, by the</A><br>
|
379 |
+
<A NAME=137>Lord, I'll stab thee.</A><br>
|
380 |
+
</blockquote>
|
381 |
+
|
382 |
+
<A NAME=speech52><b>FALSTAFF</b></a>
|
383 |
+
<blockquote>
|
384 |
+
<A NAME=138>I call thee coward! I'll see thee damned ere I call</A><br>
|
385 |
+
<A NAME=139>thee coward: but I would give a thousand pound I</A><br>
|
386 |
+
<A NAME=140>could run as fast as thou canst. You are straight</A><br>
|
387 |
+
<A NAME=141>enough in the shoulders, you care not who sees your</A><br>
|
388 |
+
<A NAME=142>back: call you that backing of your friends? A</A><br>
|
389 |
+
<A NAME=143>plague upon such backing! give me them that will</A><br>
|
390 |
+
<A NAME=144>face me. Give me a cup of sack: I am a rogue, if I</A><br>
|
391 |
+
<A NAME=145>drunk to-day.</A><br>
|
392 |
+
</blockquote>
|
393 |
+
|
394 |
+
<A NAME=speech53><b>PRINCE HENRY</b></a>
|
395 |
+
<blockquote>
|
396 |
+
<A NAME=146>O villain! thy lips are scarce wiped since thou</A><br>
|
397 |
+
<A NAME=147>drunkest last.</A><br>
|
398 |
+
</blockquote>
|
399 |
+
|
400 |
+
<A NAME=speech54><b>FALSTAFF</b></a>
|
401 |
+
<blockquote>
|
402 |
+
<A NAME=148>All's one for that.</A><br>
|
403 |
+
<p><i>He drinks</i></p>
|
404 |
+
<A NAME=149>A plague of all cowards, still say I.</A><br>
|
405 |
+
</blockquote>
|
406 |
+
|
407 |
+
<A NAME=speech55><b>PRINCE HENRY</b></a>
|
408 |
+
<blockquote>
|
409 |
+
<A NAME=150>What's the matter?</A><br>
|
410 |
+
</blockquote>
|
411 |
+
|
412 |
+
<A NAME=speech56><b>FALSTAFF</b></a>
|
413 |
+
<blockquote>
|
414 |
+
<A NAME=151>What's the matter! there be four of us here have</A><br>
|
415 |
+
<A NAME=152>ta'en a thousand pound this day morning.</A><br>
|
416 |
+
</blockquote>
|
417 |
+
|
418 |
+
<A NAME=speech57><b>PRINCE HENRY</b></a>
|
419 |
+
<blockquote>
|
420 |
+
<A NAME=153>Where is it, Jack? where is it?</A><br>
|
421 |
+
</blockquote>
|
422 |
+
|
423 |
+
<A NAME=speech58><b>FALSTAFF</b></a>
|
424 |
+
<blockquote>
|
425 |
+
<A NAME=154>Where is it! taken from us it is: a hundred upon</A><br>
|
426 |
+
<A NAME=155>poor four of us.</A><br>
|
427 |
+
</blockquote>
|
428 |
+
|
429 |
+
<A NAME=speech59><b>PRINCE HENRY</b></a>
|
430 |
+
<blockquote>
|
431 |
+
<A NAME=156>What, a hundred, man?</A><br>
|
432 |
+
</blockquote>
|
433 |
+
|
434 |
+
<A NAME=speech60><b>FALSTAFF</b></a>
|
435 |
+
<blockquote>
|
436 |
+
<A NAME=157>I am a rogue, if I were not at half-sword with a</A><br>
|
437 |
+
<A NAME=158>dozen of them two hours together. I have 'scaped by</A><br>
|
438 |
+
<A NAME=159>miracle. I am eight times thrust through the</A><br>
|
439 |
+
<A NAME=160>doublet, four through the hose; my buckler cut</A><br>
|
440 |
+
<A NAME=161>through and through; my sword hacked like a</A><br>
|
441 |
+
<A NAME=162>hand-saw--ecce signum! I never dealt better since</A><br>
|
442 |
+
<A NAME=163>I was a man: all would not do. A plague of all</A><br>
|
443 |
+
<A NAME=164>cowards! Let them speak: if they speak more or</A><br>
|
444 |
+
<A NAME=165>less than truth, they are villains and the sons of darkness.</A><br>
|
445 |
+
</blockquote>
|
446 |
+
|
447 |
+
<A NAME=speech61><b>PRINCE HENRY</b></a>
|
448 |
+
<blockquote>
|
449 |
+
<A NAME=166>Speak, sirs; how was it?</A><br>
|
450 |
+
</blockquote>
|
451 |
+
|
452 |
+
<A NAME=speech62><b>GADSHILL</b></a>
|
453 |
+
<blockquote>
|
454 |
+
<A NAME=167>We four set upon some dozen--</A><br>
|
455 |
+
</blockquote>
|
456 |
+
|
457 |
+
<A NAME=speech63><b>FALSTAFF</b></a>
|
458 |
+
<blockquote>
|
459 |
+
<A NAME=168>Sixteen at least, my lord.</A><br>
|
460 |
+
</blockquote>
|
461 |
+
|
462 |
+
<A NAME=speech64><b>GADSHILL</b></a>
|
463 |
+
<blockquote>
|
464 |
+
<A NAME=169>And bound them.</A><br>
|
465 |
+
</blockquote>
|
466 |
+
|
467 |
+
<A NAME=speech65><b>PETO</b></a>
|
468 |
+
<blockquote>
|
469 |
+
<A NAME=170>No, no, they were not bound.</A><br>
|
470 |
+
</blockquote>
|
471 |
+
|
472 |
+
<A NAME=speech66><b>FALSTAFF</b></a>
|
473 |
+
<blockquote>
|
474 |
+
<A NAME=171>You rogue, they were bound, every man of them; or I</A><br>
|
475 |
+
<A NAME=172>am a Jew else, an Ebrew Jew.</A><br>
|
476 |
+
</blockquote>
|
477 |
+
|
478 |
+
<A NAME=speech67><b>GADSHILL</b></a>
|
479 |
+
<blockquote>
|
480 |
+
<A NAME=173>As we were sharing, some six or seven fresh men set upon us--</A><br>
|
481 |
+
</blockquote>
|
482 |
+
|
483 |
+
<A NAME=speech68><b>FALSTAFF</b></a>
|
484 |
+
<blockquote>
|
485 |
+
<A NAME=174>And unbound the rest, and then come in the other.</A><br>
|
486 |
+
</blockquote>
|
487 |
+
|
488 |
+
<A NAME=speech69><b>PRINCE HENRY</b></a>
|
489 |
+
<blockquote>
|
490 |
+
<A NAME=175>What, fought you with them all?</A><br>
|
491 |
+
</blockquote>
|
492 |
+
|
493 |
+
<A NAME=speech70><b>FALSTAFF</b></a>
|
494 |
+
<blockquote>
|
495 |
+
<A NAME=176>All! I know not what you call all; but if I fought</A><br>
|
496 |
+
<A NAME=177>not with fifty of them, I am a bunch of radish: if</A><br>
|
497 |
+
<A NAME=178>there were not two or three and fifty upon poor old</A><br>
|
498 |
+
<A NAME=179>Jack, then am I no two-legged creature.</A><br>
|
499 |
+
</blockquote>
|
500 |
+
|
501 |
+
<A NAME=speech71><b>PRINCE HENRY</b></a>
|
502 |
+
<blockquote>
|
503 |
+
<A NAME=180>Pray God you have not murdered some of them.</A><br>
|
504 |
+
</blockquote>
|
505 |
+
|
506 |
+
<A NAME=speech72><b>FALSTAFF</b></a>
|
507 |
+
<blockquote>
|
508 |
+
<A NAME=181>Nay, that's past praying for: I have peppered two</A><br>
|
509 |
+
<A NAME=182>of them; two I am sure I have paid, two rogues</A><br>
|
510 |
+
<A NAME=183>in buckram suits. I tell thee what, Hal, if I tell</A><br>
|
511 |
+
<A NAME=184>thee a lie, spit in my face, call me horse. Thou</A><br>
|
512 |
+
<A NAME=185>knowest my old ward; here I lay and thus I bore my</A><br>
|
513 |
+
<A NAME=186>point. Four rogues in buckram let drive at me--</A><br>
|
514 |
+
</blockquote>
|
515 |
+
|
516 |
+
<A NAME=speech73><b>PRINCE HENRY</b></a>
|
517 |
+
<blockquote>
|
518 |
+
<A NAME=187>What, four? thou saidst but two even now.</A><br>
|
519 |
+
</blockquote>
|
520 |
+
|
521 |
+
<A NAME=speech74><b>FALSTAFF</b></a>
|
522 |
+
<blockquote>
|
523 |
+
<A NAME=188>Four, Hal; I told thee four.</A><br>
|
524 |
+
</blockquote>
|
525 |
+
|
526 |
+
<A NAME=speech75><b>POINS</b></a>
|
527 |
+
<blockquote>
|
528 |
+
<A NAME=189>Ay, ay, he said four.</A><br>
|
529 |
+
</blockquote>
|
530 |
+
|
531 |
+
<A NAME=speech76><b>FALSTAFF</b></a>
|
532 |
+
<blockquote>
|
533 |
+
<A NAME=190>These four came all a-front, and mainly thrust at</A><br>
|
534 |
+
<A NAME=191>me. I made me no more ado but took all their seven</A><br>
|
535 |
+
<A NAME=192>points in my target, thus.</A><br>
|
536 |
+
</blockquote>
|
537 |
+
|
538 |
+
<A NAME=speech77><b>PRINCE HENRY</b></a>
|
539 |
+
<blockquote>
|
540 |
+
<A NAME=193>Seven? why, there were but four even now.</A><br>
|
541 |
+
</blockquote>
|
542 |
+
|
543 |
+
<A NAME=speech78><b>FALSTAFF</b></a>
|
544 |
+
<blockquote>
|
545 |
+
<A NAME=194>In buckram?</A><br>
|
546 |
+
</blockquote>
|
547 |
+
|
548 |
+
<A NAME=speech79><b>POINS</b></a>
|
549 |
+
<blockquote>
|
550 |
+
<A NAME=195>Ay, four, in buckram suits.</A><br>
|
551 |
+
</blockquote>
|
552 |
+
|
553 |
+
<A NAME=speech80><b>FALSTAFF</b></a>
|
554 |
+
<blockquote>
|
555 |
+
<A NAME=196>Seven, by these hilts, or I am a villain else.</A><br>
|
556 |
+
</blockquote>
|
557 |
+
|
558 |
+
<A NAME=speech81><b>PRINCE HENRY</b></a>
|
559 |
+
<blockquote>
|
560 |
+
<A NAME=197>Prithee, let him alone; we shall have more anon.</A><br>
|
561 |
+
</blockquote>
|
562 |
+
|
563 |
+
<A NAME=speech82><b>FALSTAFF</b></a>
|
564 |
+
<blockquote>
|
565 |
+
<A NAME=198>Dost thou hear me, Hal?</A><br>
|
566 |
+
</blockquote>
|
567 |
+
|
568 |
+
<A NAME=speech83><b>PRINCE HENRY</b></a>
|
569 |
+
<blockquote>
|
570 |
+
<A NAME=199>Ay, and mark thee too, Jack.</A><br>
|
571 |
+
</blockquote>
|
572 |
+
|
573 |
+
<A NAME=speech84><b>FALSTAFF</b></a>
|
574 |
+
<blockquote>
|
575 |
+
<A NAME=200>Do so, for it is worth the listening to. These nine</A><br>
|
576 |
+
<A NAME=201>in buckram that I told thee of--</A><br>
|
577 |
+
</blockquote>
|
578 |
+
|
579 |
+
<A NAME=speech85><b>PRINCE HENRY</b></a>
|
580 |
+
<blockquote>
|
581 |
+
<A NAME=202>So, two more already.</A><br>
|
582 |
+
</blockquote>
|
583 |
+
|
584 |
+
<A NAME=speech86><b>FALSTAFF</b></a>
|
585 |
+
<blockquote>
|
586 |
+
<A NAME=203>Their points being broken,--</A><br>
|
587 |
+
</blockquote>
|
588 |
+
|
589 |
+
<A NAME=speech87><b>POINS</b></a>
|
590 |
+
<blockquote>
|
591 |
+
<A NAME=204>Down fell their hose.</A><br>
|
592 |
+
</blockquote>
|
593 |
+
|
594 |
+
<A NAME=speech88><b>FALSTAFF</b></a>
|
595 |
+
<blockquote>
|
596 |
+
<A NAME=205>Began to give me ground: but I followed me close,</A><br>
|
597 |
+
<A NAME=206>came in foot and hand; and with a thought seven of</A><br>
|
598 |
+
<A NAME=207>the eleven I paid.</A><br>
|
599 |
+
</blockquote>
|
600 |
+
|
601 |
+
<A NAME=speech89><b>PRINCE HENRY</b></a>
|
602 |
+
<blockquote>
|
603 |
+
<A NAME=208>O monstrous! eleven buckram men grown out of two!</A><br>
|
604 |
+
</blockquote>
|
605 |
+
|
606 |
+
<A NAME=speech90><b>FALSTAFF</b></a>
|
607 |
+
<blockquote>
|
608 |
+
<A NAME=209>But, as the devil would have it, three misbegotten</A><br>
|
609 |
+
<A NAME=210>knaves in Kendal green came at my back and let drive</A><br>
|
610 |
+
<A NAME=211>at me; for it was so dark, Hal, that thou couldst</A><br>
|
611 |
+
<A NAME=212>not see thy hand.</A><br>
|
612 |
+
</blockquote>
|
613 |
+
|
614 |
+
<A NAME=speech91><b>PRINCE HENRY</b></a>
|
615 |
+
<blockquote>
|
616 |
+
<A NAME=213>These lies are like their father that begets them;</A><br>
|
617 |
+
<A NAME=214>gross as a mountain, open, palpable. Why, thou</A><br>
|
618 |
+
<A NAME=215>clay-brained guts, thou knotty-pated fool, thou</A><br>
|
619 |
+
<A NAME=216>whoreson, obscene, grease tallow-catch,--</A><br>
|
620 |
+
</blockquote>
|
621 |
+
|
622 |
+
<A NAME=speech92><b>FALSTAFF</b></a>
|
623 |
+
<blockquote>
|
624 |
+
<A NAME=217>What, art thou mad? art thou mad? is not the truth</A><br>
|
625 |
+
<A NAME=218>the truth?</A><br>
|
626 |
+
</blockquote>
|
627 |
+
|
628 |
+
<A NAME=speech93><b>PRINCE HENRY</b></a>
|
629 |
+
<blockquote>
|
630 |
+
<A NAME=219>Why, how couldst thou know these men in Kendal</A><br>
|
631 |
+
<A NAME=220>green, when it was so dark thou couldst not see thy</A><br>
|
632 |
+
<A NAME=221>hand? come, tell us your reason: what sayest thou to this?</A><br>
|
633 |
+
</blockquote>
|
634 |
+
|
635 |
+
<A NAME=speech94><b>POINS</b></a>
|
636 |
+
<blockquote>
|
637 |
+
<A NAME=222>Come, your reason, Jack, your reason.</A><br>
|
638 |
+
</blockquote>
|
639 |
+
|
640 |
+
<A NAME=speech95><b>FALSTAFF</b></a>
|
641 |
+
<blockquote>
|
642 |
+
<A NAME=223>What, upon compulsion? 'Zounds, an I were at the</A><br>
|
643 |
+
<A NAME=224>strappado, or all the racks in the world, I would</A><br>
|
644 |
+
<A NAME=225>not tell you on compulsion. Give you a reason on</A><br>
|
645 |
+
<A NAME=226>compulsion! If reasons were as plentiful as</A><br>
|
646 |
+
<A NAME=227>blackberries, I would give no man a reason upon</A><br>
|
647 |
+
<A NAME=228>compulsion, I.</A><br>
|
648 |
+
</blockquote>
|
649 |
+
|
650 |
+
<A NAME=speech96><b>PRINCE HENRY</b></a>
|
651 |
+
<blockquote>
|
652 |
+
<A NAME=229>I'll be no longer guilty of this sin; this sanguine</A><br>
|
653 |
+
<A NAME=230>coward, this bed-presser, this horseback-breaker,</A><br>
|
654 |
+
<A NAME=231>this huge hill of flesh,--</A><br>
|
655 |
+
</blockquote>
|
656 |
+
|
657 |
+
<A NAME=speech97><b>FALSTAFF</b></a>
|
658 |
+
<blockquote>
|
659 |
+
<A NAME=232>'Sblood, you starveling, you elf-skin, you dried</A><br>
|
660 |
+
<A NAME=233>neat's tongue, you bull's pizzle, you stock-fish! O</A><br>
|
661 |
+
<A NAME=234>for breath to utter what is like thee! you</A><br>
|
662 |
+
<A NAME=235>tailor's-yard, you sheath, you bowcase; you vile</A><br>
|
663 |
+
<A NAME=236>standing-tuck,--</A><br>
|
664 |
+
</blockquote>
|
665 |
+
|
666 |
+
<A NAME=speech98><b>PRINCE HENRY</b></a>
|
667 |
+
<blockquote>
|
668 |
+
<A NAME=237>Well, breathe awhile, and then to it again: and</A><br>
|
669 |
+
<A NAME=238>when thou hast tired thyself in base comparisons,</A><br>
|
670 |
+
<A NAME=239>hear me speak but this.</A><br>
|
671 |
+
</blockquote>
|
672 |
+
|
673 |
+
<A NAME=speech99><b>POINS</b></a>
|
674 |
+
<blockquote>
|
675 |
+
<A NAME=240>Mark, Jack.</A><br>
|
676 |
+
</blockquote>
|
677 |
+
|
678 |
+
<A NAME=speech100><b>PRINCE HENRY</b></a>
|
679 |
+
<blockquote>
|
680 |
+
<A NAME=241>We two saw you four set on four and bound them, and</A><br>
|
681 |
+
<A NAME=242>were masters of their wealth. Mark now, how a plain</A><br>
|
682 |
+
<A NAME=243>tale shall put you down. Then did we two set on you</A><br>
|
683 |
+
<A NAME=244>four; and, with a word, out-faced you from your</A><br>
|
684 |
+
<A NAME=245>prize, and have it; yea, and can show it you here in</A><br>
|
685 |
+
<A NAME=246>the house: and, Falstaff, you carried your guts</A><br>
|
686 |
+
<A NAME=247>away as nimbly, with as quick dexterity, and roared</A><br>
|
687 |
+
<A NAME=248>for mercy and still run and roared, as ever I heard</A><br>
|
688 |
+
<A NAME=249>bull-calf. What a slave art thou, to hack thy sword</A><br>
|
689 |
+
<A NAME=250>as thou hast done, and then say it was in fight!</A><br>
|
690 |
+
<A NAME=251>What trick, what device, what starting-hole, canst</A><br>
|
691 |
+
<A NAME=252>thou now find out to hide thee from this open and</A><br>
|
692 |
+
<A NAME=253>apparent shame?</A><br>
|
693 |
+
</blockquote>
|
694 |
+
|
695 |
+
<A NAME=speech101><b>POINS</b></a>
|
696 |
+
<blockquote>
|
697 |
+
<A NAME=254>Come, let's hear, Jack; what trick hast thou now?</A><br>
|
698 |
+
</blockquote>
|
699 |
+
|
700 |
+
<A NAME=speech102><b>FALSTAFF</b></a>
|
701 |
+
<blockquote>
|
702 |
+
<A NAME=255>By the Lord, I knew ye as well as he that made ye.</A><br>
|
703 |
+
<A NAME=256>Why, hear you, my masters: was it for me to kill the</A><br>
|
704 |
+
<A NAME=257>heir-apparent? should I turn upon the true prince?</A><br>
|
705 |
+
<A NAME=258>why, thou knowest I am as valiant as Hercules: but</A><br>
|
706 |
+
<A NAME=259>beware instinct; the lion will not touch the true</A><br>
|
707 |
+
<A NAME=260>prince. Instinct is a great matter; I was now a</A><br>
|
708 |
+
<A NAME=261>coward on instinct. I shall think the better of</A><br>
|
709 |
+
<A NAME=262>myself and thee during my life; I for a valiant</A><br>
|
710 |
+
<A NAME=263>lion, and thou for a true prince. But, by the Lord,</A><br>
|
711 |
+
<A NAME=264>lads, I am glad you have the money. Hostess, clap</A><br>
|
712 |
+
<A NAME=265>to the doors: watch to-night, pray to-morrow.</A><br>
|
713 |
+
<A NAME=266>Gallants, lads, boys, hearts of gold, all the titles</A><br>
|
714 |
+
<A NAME=267>of good fellowship come to you! What, shall we be</A><br>
|
715 |
+
<A NAME=268>merry? shall we have a play extempore?</A><br>
|
716 |
+
</blockquote>
|
717 |
+
|
718 |
+
<A NAME=speech103><b>PRINCE HENRY</b></a>
|
719 |
+
<blockquote>
|
720 |
+
<A NAME=269>Content; and the argument shall be thy running away.</A><br>
|
721 |
+
</blockquote>
|
722 |
+
|
723 |
+
<A NAME=speech104><b>FALSTAFF</b></a>
|
724 |
+
<blockquote>
|
725 |
+
<A NAME=270>Ah, no more of that, Hal, an thou lovest me!</A><br>
|
726 |
+
<p><i>Enter Hostess</i></p>
|
727 |
+
</blockquote>
|
728 |
+
|
729 |
+
<A NAME=speech105><b>Hostess</b></a>
|
730 |
+
<blockquote>
|
731 |
+
<A NAME=271>O Jesu, my lord the prince!</A><br>
|
732 |
+
</blockquote>
|
733 |
+
|
734 |
+
<A NAME=speech106><b>PRINCE HENRY</b></a>
|
735 |
+
<blockquote>
|
736 |
+
<A NAME=272>How now, my lady the hostess! what sayest thou to</A><br>
|
737 |
+
<A NAME=273>me?</A><br>
|
738 |
+
</blockquote>
|
739 |
+
|
740 |
+
<A NAME=speech107><b>Hostess</b></a>
|
741 |
+
<blockquote>
|
742 |
+
<A NAME=274>Marry, my lord, there is a nobleman of the court at</A><br>
|
743 |
+
<A NAME=275>door would speak with you: he says he comes from</A><br>
|
744 |
+
<A NAME=276>your father.</A><br>
|
745 |
+
</blockquote>
|
746 |
+
|
747 |
+
<A NAME=speech108><b>PRINCE HENRY</b></a>
|
748 |
+
<blockquote>
|
749 |
+
<A NAME=277>Give him as much as will make him a royal man, and</A><br>
|
750 |
+
<A NAME=278>send him back again to my mother.</A><br>
|
751 |
+
</blockquote>
|
752 |
+
|
753 |
+
<A NAME=speech109><b>FALSTAFF</b></a>
|
754 |
+
<blockquote>
|
755 |
+
<A NAME=279>What manner of man is he?</A><br>
|
756 |
+
</blockquote>
|
757 |
+
|
758 |
+
<A NAME=speech110><b>Hostess</b></a>
|
759 |
+
<blockquote>
|
760 |
+
<A NAME=280>An old man.</A><br>
|
761 |
+
</blockquote>
|
762 |
+
|
763 |
+
<A NAME=speech111><b>FALSTAFF</b></a>
|
764 |
+
<blockquote>
|
765 |
+
<A NAME=281>What doth gravity out of his bed at midnight? Shall</A><br>
|
766 |
+
<A NAME=282>I give him his answer?</A><br>
|
767 |
+
</blockquote>
|
768 |
+
|
769 |
+
<A NAME=speech112><b>PRINCE HENRY</b></a>
|
770 |
+
<blockquote>
|
771 |
+
<A NAME=283>Prithee, do, Jack.</A><br>
|
772 |
+
</blockquote>
|
773 |
+
|
774 |
+
<A NAME=speech113><b>FALSTAFF</b></a>
|
775 |
+
<blockquote>
|
776 |
+
<A NAME=284>'Faith, and I'll send him packing.</A><br>
|
777 |
+
<p><i>Exit FALSTAFF</i></p>
|
778 |
+
</blockquote>
|
779 |
+
|
780 |
+
<A NAME=speech114><b>PRINCE HENRY</b></a>
|
781 |
+
<blockquote>
|
782 |
+
<A NAME=285>Now, sirs: by'r lady, you fought fair; so did you,</A><br>
|
783 |
+
<A NAME=286>Peto; so did you, Bardolph: you are lions too, you</A><br>
|
784 |
+
<A NAME=287>ran away upon instinct, you will not touch the true</A><br>
|
785 |
+
<A NAME=288>prince; no, fie!</A><br>
|
786 |
+
</blockquote>
|
787 |
+
|
788 |
+
<A NAME=speech115><b>BARDOLPH</b></a>
|
789 |
+
<blockquote>
|
790 |
+
<A NAME=289>'Faith, I ran when I saw others run.</A><br>
|
791 |
+
</blockquote>
|
792 |
+
|
793 |
+
<A NAME=speech116><b>PRINCE HENRY</b></a>
|
794 |
+
<blockquote>
|
795 |
+
<A NAME=290>'Faith, tell me now in earnest, how came Falstaff's</A><br>
|
796 |
+
<A NAME=291>sword so hacked?</A><br>
|
797 |
+
</blockquote>
|
798 |
+
|
799 |
+
<A NAME=speech117><b>PETO</b></a>
|
800 |
+
<blockquote>
|
801 |
+
<A NAME=292>Why, he hacked it with his dagger, and said he would</A><br>
|
802 |
+
<A NAME=293>swear truth out of England but he would make you</A><br>
|
803 |
+
<A NAME=294>believe it was done in fight, and persuaded us to do the like.</A><br>
|
804 |
+
</blockquote>
|
805 |
+
|
806 |
+
<A NAME=speech118><b>BARDOLPH</b></a>
|
807 |
+
<blockquote>
|
808 |
+
<A NAME=295>Yea, and to tickle our noses with spear-grass to</A><br>
|
809 |
+
<A NAME=296>make them bleed, and then to beslubber our garments</A><br>
|
810 |
+
<A NAME=297>with it and swear it was the blood of true men. I</A><br>
|
811 |
+
<A NAME=298>did that I did not this seven year before, I blushed</A><br>
|
812 |
+
<A NAME=299>to hear his monstrous devices.</A><br>
|
813 |
+
</blockquote>
|
814 |
+
|
815 |
+
<A NAME=speech119><b>PRINCE HENRY</b></a>
|
816 |
+
<blockquote>
|
817 |
+
<A NAME=300>O villain, thou stolest a cup of sack eighteen years</A><br>
|
818 |
+
<A NAME=301>ago, and wert taken with the manner, and ever since</A><br>
|
819 |
+
<A NAME=302>thou hast blushed extempore. Thou hadst fire and</A><br>
|
820 |
+
<A NAME=303>sword on thy side, and yet thou rannest away: what</A><br>
|
821 |
+
<A NAME=304>instinct hadst thou for it?</A><br>
|
822 |
+
</blockquote>
|
823 |
+
|
824 |
+
<A NAME=speech120><b>BARDOLPH</b></a>
|
825 |
+
<blockquote>
|
826 |
+
<A NAME=305>My lord, do you see these meteors? do you behold</A><br>
|
827 |
+
<A NAME=306>these exhalations?</A><br>
|
828 |
+
</blockquote>
|
829 |
+
|
830 |
+
<A NAME=speech121><b>PRINCE HENRY</b></a>
|
831 |
+
<blockquote>
|
832 |
+
<A NAME=307>I do.</A><br>
|
833 |
+
</blockquote>
|
834 |
+
|
835 |
+
<A NAME=speech122><b>BARDOLPH</b></a>
|
836 |
+
<blockquote>
|
837 |
+
<A NAME=308>What think you they portend?</A><br>
|
838 |
+
</blockquote>
|
839 |
+
|
840 |
+
<A NAME=speech123><b>PRINCE HENRY</b></a>
|
841 |
+
<blockquote>
|
842 |
+
<A NAME=309>Hot livers and cold purses.</A><br>
|
843 |
+
</blockquote>
|
844 |
+
|
845 |
+
<A NAME=speech124><b>BARDOLPH</b></a>
|
846 |
+
<blockquote>
|
847 |
+
<A NAME=310>Choler, my lord, if rightly taken.</A><br>
|
848 |
+
</blockquote>
|
849 |
+
|
850 |
+
<A NAME=speech125><b>PRINCE HENRY</b></a>
|
851 |
+
<blockquote>
|
852 |
+
<A NAME=311>No, if rightly taken, halter.</A><br>
|
853 |
+
<p><i>Re-enter FALSTAFF</i></p>
|
854 |
+
<A NAME=312>Here comes lean Jack, here comes bare-bone.</A><br>
|
855 |
+
<A NAME=313>How now, my sweet creature of bombast!</A><br>
|
856 |
+
<A NAME=314>How long is't ago, Jack, since thou sawest thine own knee?</A><br>
|
857 |
+
</blockquote>
|
858 |
+
|
859 |
+
<A NAME=speech126><b>FALSTAFF</b></a>
|
860 |
+
<blockquote>
|
861 |
+
<A NAME=315>My own knee! when I was about thy years, Hal, I was</A><br>
|
862 |
+
<A NAME=316>not an eagle's talon in the waist; I could have</A><br>
|
863 |
+
<A NAME=317>crept into any alderman's thumb-ring: a plague of</A><br>
|
864 |
+
<A NAME=318>sighing and grief! it blows a man up like a</A><br>
|
865 |
+
<A NAME=319>bladder. There's villanous news abroad: here was</A><br>
|
866 |
+
<A NAME=320>Sir John Bracy from your father; you must to the</A><br>
|
867 |
+
<A NAME=321>court in the morning. That same mad fellow of the</A><br>
|
868 |
+
<A NAME=322>north, Percy, and he of Wales, that gave Amamon the</A><br>
|
869 |
+
<A NAME=323>bastinado and made Lucifer cuckold and swore the</A><br>
|
870 |
+
<A NAME=324>devil his true liegeman upon the cross of a Welsh</A><br>
|
871 |
+
<A NAME=325>hook--what a plague call you him?</A><br>
|
872 |
+
</blockquote>
|
873 |
+
|
874 |
+
<A NAME=speech127><b>POINS</b></a>
|
875 |
+
<blockquote>
|
876 |
+
<A NAME=326>O, Glendower.</A><br>
|
877 |
+
</blockquote>
|
878 |
+
|
879 |
+
<A NAME=speech128><b>FALSTAFF</b></a>
|
880 |
+
<blockquote>
|
881 |
+
<A NAME=327>Owen, Owen, the same; and his son-in-law Mortimer,</A><br>
|
882 |
+
<A NAME=328>and old Northumberland, and that sprightly Scot of</A><br>
|
883 |
+
<A NAME=329>Scots, Douglas, that runs o' horseback up a hill</A><br>
|
884 |
+
<A NAME=330>perpendicular,--</A><br>
|
885 |
+
</blockquote>
|
886 |
+
|
887 |
+
<A NAME=speech129><b>PRINCE HENRY</b></a>
|
888 |
+
<blockquote>
|
889 |
+
<A NAME=331>He that rides at high speed and with his pistol</A><br>
|
890 |
+
<A NAME=332>kills a sparrow flying.</A><br>
|
891 |
+
</blockquote>
|
892 |
+
|
893 |
+
<A NAME=speech130><b>FALSTAFF</b></a>
|
894 |
+
<blockquote>
|
895 |
+
<A NAME=333>You have hit it.</A><br>
|
896 |
+
</blockquote>
|
897 |
+
|
898 |
+
<A NAME=speech131><b>PRINCE HENRY</b></a>
|
899 |
+
<blockquote>
|
900 |
+
<A NAME=334>So did he never the sparrow.</A><br>
|
901 |
+
</blockquote>
|
902 |
+
|
903 |
+
<A NAME=speech132><b>FALSTAFF</b></a>
|
904 |
+
<blockquote>
|
905 |
+
<A NAME=335>Well, that rascal hath good mettle in him; he will not run.</A><br>
|
906 |
+
</blockquote>
|
907 |
+
|
908 |
+
<A NAME=speech133><b>PRINCE HENRY</b></a>
|
909 |
+
<blockquote>
|
910 |
+
<A NAME=336>Why, what a rascal art thou then, to praise him so</A><br>
|
911 |
+
<A NAME=337>for running!</A><br>
|
912 |
+
</blockquote>
|
913 |
+
|
914 |
+
<A NAME=speech134><b>FALSTAFF</b></a>
|
915 |
+
<blockquote>
|
916 |
+
<A NAME=338>O' horseback, ye cuckoo; but afoot he will not budge a foot.</A><br>
|
917 |
+
</blockquote>
|
918 |
+
|
919 |
+
<A NAME=speech135><b>PRINCE HENRY</b></a>
|
920 |
+
<blockquote>
|
921 |
+
<A NAME=339>Yes, Jack, upon instinct.</A><br>
|
922 |
+
</blockquote>
|
923 |
+
|
924 |
+
<A NAME=speech136><b>FALSTAFF</b></a>
|
925 |
+
<blockquote>
|
926 |
+
<A NAME=340>I grant ye, upon instinct. Well, he is there too,</A><br>
|
927 |
+
<A NAME=341>and one Mordake, and a thousand blue-caps more:</A><br>
|
928 |
+
<A NAME=342>Worcester is stolen away to-night; thy father's</A><br>
|
929 |
+
<A NAME=343>beard is turned white with the news: you may buy</A><br>
|
930 |
+
<A NAME=344>land now as cheap as stinking mackerel.</A><br>
|
931 |
+
</blockquote>
|
932 |
+
|
933 |
+
<A NAME=speech137><b>PRINCE HENRY</b></a>
|
934 |
+
<blockquote>
|
935 |
+
<A NAME=345>Why, then, it is like, if there come a hot June and</A><br>
|
936 |
+
<A NAME=346>this civil buffeting hold, we shall buy maidenheads</A><br>
|
937 |
+
<A NAME=347>as they buy hob-nails, by the hundreds.</A><br>
|
938 |
+
</blockquote>
|
939 |
+
|
940 |
+
<A NAME=speech138><b>FALSTAFF</b></a>
|
941 |
+
<blockquote>
|
942 |
+
<A NAME=348>By the mass, lad, thou sayest true; it is like we</A><br>
|
943 |
+
<A NAME=349>shall have good trading that way. But tell me, Hal,</A><br>
|
944 |
+
<A NAME=350>art not thou horrible afeard? thou being</A><br>
|
945 |
+
<A NAME=351>heir-apparent, could the world pick thee out three</A><br>
|
946 |
+
<A NAME=352>such enemies again as that fiend Douglas, that</A><br>
|
947 |
+
<A NAME=353>spirit Percy, and that devil Glendower? Art thou</A><br>
|
948 |
+
<A NAME=354>not horribly afraid? doth not thy blood thrill at</A><br>
|
949 |
+
<A NAME=355>it?</A><br>
|
950 |
+
</blockquote>
|
951 |
+
|
952 |
+
<A NAME=speech139><b>PRINCE HENRY</b></a>
|
953 |
+
<blockquote>
|
954 |
+
<A NAME=356>Not a whit, i' faith; I lack some of thy instinct.</A><br>
|
955 |
+
</blockquote>
|
956 |
+
|
957 |
+
<A NAME=speech140><b>FALSTAFF</b></a>
|
958 |
+
<blockquote>
|
959 |
+
<A NAME=357>Well, thou wert be horribly chid tomorrow when thou</A><br>
|
960 |
+
<A NAME=358>comest to thy father: if thou love me, practise an answer.</A><br>
|
961 |
+
</blockquote>
|
962 |
+
|
963 |
+
<A NAME=speech141><b>PRINCE HENRY</b></a>
|
964 |
+
<blockquote>
|
965 |
+
<A NAME=359>Do thou stand for my father, and examine me upon the</A><br>
|
966 |
+
<A NAME=360>particulars of my life.</A><br>
|
967 |
+
</blockquote>
|
968 |
+
|
969 |
+
<A NAME=speech142><b>FALSTAFF</b></a>
|
970 |
+
<blockquote>
|
971 |
+
<A NAME=361>Shall I? content: this chair shall be my state,</A><br>
|
972 |
+
<A NAME=362>this dagger my sceptre, and this cushion my crown.</A><br>
|
973 |
+
</blockquote>
|
974 |
+
|
975 |
+
<A NAME=speech143><b>PRINCE HENRY</b></a>
|
976 |
+
<blockquote>
|
977 |
+
<A NAME=363>Thy state is taken for a joined-stool, thy golden</A><br>
|
978 |
+
<A NAME=364>sceptre for a leaden dagger, and thy precious rich</A><br>
|
979 |
+
<A NAME=365>crown for a pitiful bald crown!</A><br>
|
980 |
+
</blockquote>
|
981 |
+
|
982 |
+
<A NAME=speech144><b>FALSTAFF</b></a>
|
983 |
+
<blockquote>
|
984 |
+
<A NAME=366>Well, an the fire of grace be not quite out of thee,</A><br>
|
985 |
+
<A NAME=367>now shalt thou be moved. Give me a cup of sack to</A><br>
|
986 |
+
<A NAME=368>make my eyes look red, that it may be thought I have</A><br>
|
987 |
+
<A NAME=369>wept; for I must speak in passion, and I will do it</A><br>
|
988 |
+
<A NAME=370>in King Cambyses' vein.</A><br>
|
989 |
+
</blockquote>
|
990 |
+
|
991 |
+
<A NAME=speech145><b>PRINCE HENRY</b></a>
|
992 |
+
<blockquote>
|
993 |
+
<A NAME=371>Well, here is my leg.</A><br>
|
994 |
+
</blockquote>
|
995 |
+
|
996 |
+
<A NAME=speech146><b>FALSTAFF</b></a>
|
997 |
+
<blockquote>
|
998 |
+
<A NAME=372>And here is my speech. Stand aside, nobility.</A><br>
|
999 |
+
</blockquote>
|
1000 |
+
|
1001 |
+
<A NAME=speech147><b>Hostess</b></a>
|
1002 |
+
<blockquote>
|
1003 |
+
<A NAME=373>O Jesu, this is excellent sport, i' faith!</A><br>
|
1004 |
+
</blockquote>
|
1005 |
+
|
1006 |
+
<A NAME=speech148><b>FALSTAFF</b></a>
|
1007 |
+
<blockquote>
|
1008 |
+
<A NAME=374>Weep not, sweet queen; for trickling tears are vain.</A><br>
|
1009 |
+
</blockquote>
|
1010 |
+
|
1011 |
+
<A NAME=speech149><b>Hostess</b></a>
|
1012 |
+
<blockquote>
|
1013 |
+
<A NAME=375>O, the father, how he holds his countenance!</A><br>
|
1014 |
+
</blockquote>
|
1015 |
+
|
1016 |
+
<A NAME=speech150><b>FALSTAFF</b></a>
|
1017 |
+
<blockquote>
|
1018 |
+
<A NAME=376>For God's sake, lords, convey my tristful queen;</A><br>
|
1019 |
+
<A NAME=377>For tears do stop the flood-gates of her eyes.</A><br>
|
1020 |
+
</blockquote>
|
1021 |
+
|
1022 |
+
<A NAME=speech151><b>Hostess</b></a>
|
1023 |
+
<blockquote>
|
1024 |
+
<A NAME=378>O Jesu, he doth it as like one of these harlotry</A><br>
|
1025 |
+
<A NAME=379>players as ever I see!</A><br>
|
1026 |
+
</blockquote>
|
1027 |
+
|
1028 |
+
<A NAME=speech152><b>FALSTAFF</b></a>
|
1029 |
+
<blockquote>
|
1030 |
+
<A NAME=380>Peace, good pint-pot; peace, good tickle-brain.</A><br>
|
1031 |
+
<A NAME=381>Harry, I do not only marvel where thou spendest thy</A><br>
|
1032 |
+
<A NAME=382>time, but also how thou art accompanied: for though</A><br>
|
1033 |
+
<A NAME=383>the camomile, the more it is trodden on the faster</A><br>
|
1034 |
+
<A NAME=384>it grows, yet youth, the more it is wasted the</A><br>
|
1035 |
+
<A NAME=385>sooner it wears. That thou art my son, I have</A><br>
|
1036 |
+
<A NAME=386>partly thy mother's word, partly my own opinion,</A><br>
|
1037 |
+
<A NAME=387>but chiefly a villanous trick of thine eye and a</A><br>
|
1038 |
+
<A NAME=388>foolish-hanging of thy nether lip, that doth warrant</A><br>
|
1039 |
+
<A NAME=389>me. If then thou be son to me, here lies the point;</A><br>
|
1040 |
+
<A NAME=390>why, being son to me, art thou so pointed at? Shall</A><br>
|
1041 |
+
<A NAME=391>the blessed sun of heaven prove a micher and eat</A><br>
|
1042 |
+
<A NAME=392>blackberries? a question not to be asked. Shall</A><br>
|
1043 |
+
<A NAME=393>the sun of England prove a thief and take purses? a</A><br>
|
1044 |
+
<A NAME=394>question to be asked. There is a thing, Harry,</A><br>
|
1045 |
+
<A NAME=395>which thou hast often heard of and it is known to</A><br>
|
1046 |
+
<A NAME=396>many in our land by the name of pitch: this pitch,</A><br>
|
1047 |
+
<A NAME=397>as ancient writers do report, doth defile; so doth</A><br>
|
1048 |
+
<A NAME=398>the company thou keepest: for, Harry, now I do not</A><br>
|
1049 |
+
<A NAME=399>speak to thee in drink but in tears, not in</A><br>
|
1050 |
+
<A NAME=400>pleasure but in passion, not in words only, but in</A><br>
|
1051 |
+
<A NAME=401>woes also: and yet there is a virtuous man whom I</A><br>
|
1052 |
+
<A NAME=402>have often noted in thy company, but I know not his name.</A><br>
|
1053 |
+
</blockquote>
|
1054 |
+
|
1055 |
+
<A NAME=speech153><b>PRINCE HENRY</b></a>
|
1056 |
+
<blockquote>
|
1057 |
+
<A NAME=403>What manner of man, an it like your majesty?</A><br>
|
1058 |
+
</blockquote>
|
1059 |
+
|
1060 |
+
<A NAME=speech154><b>FALSTAFF</b></a>
|
1061 |
+
<blockquote>
|
1062 |
+
<A NAME=404>A goodly portly man, i' faith, and a corpulent; of a</A><br>
|
1063 |
+
<A NAME=405>cheerful look, a pleasing eye and a most noble</A><br>
|
1064 |
+
<A NAME=406>carriage; and, as I think, his age some fifty, or,</A><br>
|
1065 |
+
<A NAME=407>by'r lady, inclining to three score; and now I</A><br>
|
1066 |
+
<A NAME=408>remember me, his name is Falstaff: if that man</A><br>
|
1067 |
+
<A NAME=409>should be lewdly given, he deceiveth me; for, Harry,</A><br>
|
1068 |
+
<A NAME=410>I see virtue in his looks. If then the tree may be</A><br>
|
1069 |
+
<A NAME=411>known by the fruit, as the fruit by the tree, then,</A><br>
|
1070 |
+
<A NAME=412>peremptorily I speak it, there is virtue in that</A><br>
|
1071 |
+
<A NAME=413>Falstaff: him keep with, the rest banish. And tell</A><br>
|
1072 |
+
<A NAME=414>me now, thou naughty varlet, tell me, where hast</A><br>
|
1073 |
+
<A NAME=415>thou been this month?</A><br>
|
1074 |
+
</blockquote>
|
1075 |
+
|
1076 |
+
<A NAME=speech155><b>PRINCE HENRY</b></a>
|
1077 |
+
<blockquote>
|
1078 |
+
<A NAME=416>Dost thou speak like a king? Do thou stand for me,</A><br>
|
1079 |
+
<A NAME=417>and I'll play my father.</A><br>
|
1080 |
+
</blockquote>
|
1081 |
+
|
1082 |
+
<A NAME=speech156><b>FALSTAFF</b></a>
|
1083 |
+
<blockquote>
|
1084 |
+
<A NAME=418>Depose me? if thou dost it half so gravely, so</A><br>
|
1085 |
+
<A NAME=419>majestically, both in word and matter, hang me up by</A><br>
|
1086 |
+
<A NAME=420>the heels for a rabbit-sucker or a poulter's hare.</A><br>
|
1087 |
+
</blockquote>
|
1088 |
+
|
1089 |
+
<A NAME=speech157><b>PRINCE HENRY</b></a>
|
1090 |
+
<blockquote>
|
1091 |
+
<A NAME=421>Well, here I am set.</A><br>
|
1092 |
+
</blockquote>
|
1093 |
+
|
1094 |
+
<A NAME=speech158><b>FALSTAFF</b></a>
|
1095 |
+
<blockquote>
|
1096 |
+
<A NAME=422>And here I stand: judge, my masters.</A><br>
|
1097 |
+
</blockquote>
|
1098 |
+
|
1099 |
+
<A NAME=speech159><b>PRINCE HENRY</b></a>
|
1100 |
+
<blockquote>
|
1101 |
+
<A NAME=423>Now, Harry, whence come you?</A><br>
|
1102 |
+
</blockquote>
|
1103 |
+
|
1104 |
+
<A NAME=speech160><b>FALSTAFF</b></a>
|
1105 |
+
<blockquote>
|
1106 |
+
<A NAME=424>My noble lord, from Eastcheap.</A><br>
|
1107 |
+
</blockquote>
|
1108 |
+
|
1109 |
+
<A NAME=speech161><b>PRINCE HENRY</b></a>
|
1110 |
+
<blockquote>
|
1111 |
+
<A NAME=425>The complaints I hear of thee are grievous.</A><br>
|
1112 |
+
</blockquote>
|
1113 |
+
|
1114 |
+
<A NAME=speech162><b>FALSTAFF</b></a>
|
1115 |
+
<blockquote>
|
1116 |
+
<A NAME=426>'Sblood, my lord, they are false: nay, I'll tickle</A><br>
|
1117 |
+
<A NAME=427>ye for a young prince, i' faith.</A><br>
|
1118 |
+
</blockquote>
|
1119 |
+
|
1120 |
+
<A NAME=speech163><b>PRINCE HENRY</b></a>
|
1121 |
+
<blockquote>
|
1122 |
+
<A NAME=428>Swearest thou, ungracious boy? henceforth ne'er look</A><br>
|
1123 |
+
<A NAME=429>on me. Thou art violently carried away from grace:</A><br>
|
1124 |
+
<A NAME=430>there is a devil haunts thee in the likeness of an</A><br>
|
1125 |
+
<A NAME=431>old fat man; a tun of man is thy companion. Why</A><br>
|
1126 |
+
<A NAME=432>dost thou converse with that trunk of humours, that</A><br>
|
1127 |
+
<A NAME=433>bolting-hutch of beastliness, that swollen parcel</A><br>
|
1128 |
+
<A NAME=434>of dropsies, that huge bombard of sack, that stuffed</A><br>
|
1129 |
+
<A NAME=435>cloak-bag of guts, that roasted Manningtree ox with</A><br>
|
1130 |
+
<A NAME=436>the pudding in his belly, that reverend vice, that</A><br>
|
1131 |
+
<A NAME=437>grey iniquity, that father ruffian, that vanity in</A><br>
|
1132 |
+
<A NAME=438>years? Wherein is he good, but to taste sack and</A><br>
|
1133 |
+
<A NAME=439>drink it? wherein neat and cleanly, but to carve a</A><br>
|
1134 |
+
<A NAME=440>capon and eat it? wherein cunning, but in craft?</A><br>
|
1135 |
+
<A NAME=441>wherein crafty, but in villany? wherein villanous,</A><br>
|
1136 |
+
<A NAME=442>but in all things? wherein worthy, but in nothing?</A><br>
|
1137 |
+
</blockquote>
|
1138 |
+
|
1139 |
+
<A NAME=speech164><b>FALSTAFF</b></a>
|
1140 |
+
<blockquote>
|
1141 |
+
<A NAME=443>I would your grace would take me with you: whom</A><br>
|
1142 |
+
<A NAME=444>means your grace?</A><br>
|
1143 |
+
</blockquote>
|
1144 |
+
|
1145 |
+
<A NAME=speech165><b>PRINCE HENRY</b></a>
|
1146 |
+
<blockquote>
|
1147 |
+
<A NAME=445>That villanous abominable misleader of youth,</A><br>
|
1148 |
+
<A NAME=446>Falstaff, that old white-bearded Satan.</A><br>
|
1149 |
+
</blockquote>
|
1150 |
+
|
1151 |
+
<A NAME=speech166><b>FALSTAFF</b></a>
|
1152 |
+
<blockquote>
|
1153 |
+
<A NAME=447>My lord, the man I know.</A><br>
|
1154 |
+
</blockquote>
|
1155 |
+
|
1156 |
+
<A NAME=speech167><b>PRINCE HENRY</b></a>
|
1157 |
+
<blockquote>
|
1158 |
+
<A NAME=448>I know thou dost.</A><br>
|
1159 |
+
</blockquote>
|
1160 |
+
|
1161 |
+
<A NAME=speech168><b>FALSTAFF</b></a>
|
1162 |
+
<blockquote>
|
1163 |
+
<A NAME=449>But to say I know more harm in him than in myself,</A><br>
|
1164 |
+
<A NAME=450>were to say more than I know. That he is old, the</A><br>
|
1165 |
+
<A NAME=451>more the pity, his white hairs do witness it; but</A><br>
|
1166 |
+
<A NAME=452>that he is, saving your reverence, a whoremaster,</A><br>
|
1167 |
+
<A NAME=453>that I utterly deny. If sack and sugar be a fault,</A><br>
|
1168 |
+
<A NAME=454>God help the wicked! if to be old and merry be a</A><br>
|
1169 |
+
<A NAME=455>sin, then many an old host that I know is damned: if</A><br>
|
1170 |
+
<A NAME=456>to be fat be to be hated, then Pharaoh's lean kine</A><br>
|
1171 |
+
<A NAME=457>are to be loved. No, my good lord; banish Peto,</A><br>
|
1172 |
+
<A NAME=458>banish Bardolph, banish Poins: but for sweet Jack</A><br>
|
1173 |
+
<A NAME=459>Falstaff, kind Jack Falstaff, true Jack Falstaff,</A><br>
|
1174 |
+
<A NAME=460>valiant Jack Falstaff, and therefore more valiant,</A><br>
|
1175 |
+
<A NAME=461>being, as he is, old Jack Falstaff, banish not him</A><br>
|
1176 |
+
<A NAME=462>thy Harry's company, banish not him thy Harry's</A><br>
|
1177 |
+
<A NAME=463>company: banish plump Jack, and banish all the world.</A><br>
|
1178 |
+
</blockquote>
|
1179 |
+
|
1180 |
+
<A NAME=speech169><b>PRINCE HENRY</b></a>
|
1181 |
+
<blockquote>
|
1182 |
+
<A NAME=464>I do, I will.</A><br>
|
1183 |
+
<p><i>A knocking heard</i></p>
|
1184 |
+
<p><i>Exeunt Hostess, FRANCIS, and BARDOLPH</i></p>
|
1185 |
+
<p><i>Re-enter BARDOLPH, running</i></p>
|
1186 |
+
</blockquote>
|
1187 |
+
|
1188 |
+
<A NAME=speech170><b>BARDOLPH</b></a>
|
1189 |
+
<blockquote>
|
1190 |
+
<A NAME=465>O, my lord, my lord! the sheriff with a most</A><br>
|
1191 |
+
<A NAME=466>monstrous watch is at the door.</A><br>
|
1192 |
+
</blockquote>
|
1193 |
+
|
1194 |
+
<A NAME=speech171><b>FALSTAFF</b></a>
|
1195 |
+
<blockquote>
|
1196 |
+
<A NAME=467>Out, ye rogue! Play out the play: I have much to</A><br>
|
1197 |
+
<A NAME=468>say in the behalf of that Falstaff.</A><br>
|
1198 |
+
<p><i>Re-enter the Hostess</i></p>
|
1199 |
+
</blockquote>
|
1200 |
+
|
1201 |
+
<A NAME=speech172><b>Hostess</b></a>
|
1202 |
+
<blockquote>
|
1203 |
+
<A NAME=469>O Jesu, my lord, my lord!</A><br>
|
1204 |
+
</blockquote>
|
1205 |
+
|
1206 |
+
<A NAME=speech173><b>PRINCE HENRY</b></a>
|
1207 |
+
<blockquote>
|
1208 |
+
<A NAME=470>Heigh, heigh! the devil rides upon a fiddlestick:</A><br>
|
1209 |
+
<A NAME=471>what's the matter?</A><br>
|
1210 |
+
</blockquote>
|
1211 |
+
|
1212 |
+
<A NAME=speech174><b>Hostess</b></a>
|
1213 |
+
<blockquote>
|
1214 |
+
<A NAME=472>The sheriff and all the watch are at the door: they</A><br>
|
1215 |
+
<A NAME=473>are come to search the house. Shall I let them in?</A><br>
|
1216 |
+
</blockquote>
|
1217 |
+
|
1218 |
+
<A NAME=speech175><b>FALSTAFF</b></a>
|
1219 |
+
<blockquote>
|
1220 |
+
<A NAME=474>Dost thou hear, Hal? never call a true piece of</A><br>
|
1221 |
+
<A NAME=475>gold a counterfeit: thou art essentially mad,</A><br>
|
1222 |
+
<A NAME=476>without seeming so.</A><br>
|
1223 |
+
</blockquote>
|
1224 |
+
|
1225 |
+
<A NAME=speech176><b>PRINCE HENRY</b></a>
|
1226 |
+
<blockquote>
|
1227 |
+
<A NAME=477>And thou a natural coward, without instinct.</A><br>
|
1228 |
+
</blockquote>
|
1229 |
+
|
1230 |
+
<A NAME=speech177><b>FALSTAFF</b></a>
|
1231 |
+
<blockquote>
|
1232 |
+
<A NAME=478>I deny your major: if you will deny the sheriff,</A><br>
|
1233 |
+
<A NAME=479>so; if not, let him enter: if I become not a cart</A><br>
|
1234 |
+
<A NAME=480>as well as another man, a plague on my bringing up!</A><br>
|
1235 |
+
<A NAME=481>I hope I shall as soon be strangled with a halter as another.</A><br>
|
1236 |
+
</blockquote>
|
1237 |
+
|
1238 |
+
<A NAME=speech178><b>PRINCE HENRY</b></a>
|
1239 |
+
<blockquote>
|
1240 |
+
<A NAME=482>Go, hide thee behind the arras: the rest walk up</A><br>
|
1241 |
+
<A NAME=483>above. Now, my masters, for a true face and good</A><br>
|
1242 |
+
<A NAME=484>conscience.</A><br>
|
1243 |
+
</blockquote>
|
1244 |
+
|
1245 |
+
<A NAME=speech179><b>FALSTAFF</b></a>
|
1246 |
+
<blockquote>
|
1247 |
+
<A NAME=485>Both which I have had: but their date is out, and</A><br>
|
1248 |
+
<A NAME=486>therefore I'll hide me.</A><br>
|
1249 |
+
</blockquote>
|
1250 |
+
|
1251 |
+
<A NAME=speech180><b>PRINCE HENRY</b></a>
|
1252 |
+
<blockquote>
|
1253 |
+
<A NAME=487>Call in the sheriff.</A><br>
|
1254 |
+
<p><i>Exeunt all except PRINCE HENRY and PETO</i></p>
|
1255 |
+
<p><i>Enter Sheriff and the Carrier</i></p>
|
1256 |
+
<A NAME=488>Now, master sheriff, what is your will with me?</A><br>
|
1257 |
+
</blockquote>
|
1258 |
+
|
1259 |
+
<A NAME=speech181><b>Sheriff</b></a>
|
1260 |
+
<blockquote>
|
1261 |
+
<A NAME=489>First, pardon me, my lord. A hue and cry</A><br>
|
1262 |
+
<A NAME=490>Hath follow'd certain men unto this house.</A><br>
|
1263 |
+
</blockquote>
|
1264 |
+
|
1265 |
+
<A NAME=speech182><b>PRINCE HENRY</b></a>
|
1266 |
+
<blockquote>
|
1267 |
+
<A NAME=491>What men?</A><br>
|
1268 |
+
</blockquote>
|
1269 |
+
|
1270 |
+
<A NAME=speech183><b>Sheriff</b></a>
|
1271 |
+
<blockquote>
|
1272 |
+
<A NAME=492>One of them is well known, my gracious lord,</A><br>
|
1273 |
+
<A NAME=493>A gross fat man.</A><br>
|
1274 |
+
</blockquote>
|
1275 |
+
|
1276 |
+
<A NAME=speech184><b>Carrier</b></a>
|
1277 |
+
<blockquote>
|
1278 |
+
<A NAME=494> As fat as butter.</A><br>
|
1279 |
+
</blockquote>
|
1280 |
+
|
1281 |
+
<A NAME=speech185><b>PRINCE HENRY</b></a>
|
1282 |
+
<blockquote>
|
1283 |
+
<A NAME=495>The man, I do assure you, is not here;</A><br>
|
1284 |
+
<A NAME=496>For I myself at this time have employ'd him.</A><br>
|
1285 |
+
<A NAME=497>And, sheriff, I will engage my word to thee</A><br>
|
1286 |
+
<A NAME=498>That I will, by to-morrow dinner-time,</A><br>
|
1287 |
+
<A NAME=499>Send him to answer thee, or any man,</A><br>
|
1288 |
+
<A NAME=500>For any thing he shall be charged withal:</A><br>
|
1289 |
+
<A NAME=501>And so let me entreat you leave the house.</A><br>
|
1290 |
+
</blockquote>
|
1291 |
+
|
1292 |
+
<A NAME=speech186><b>Sheriff</b></a>
|
1293 |
+
<blockquote>
|
1294 |
+
<A NAME=502>I will, my lord. There are two gentlemen</A><br>
|
1295 |
+
<A NAME=503>Have in this robbery lost three hundred marks.</A><br>
|
1296 |
+
</blockquote>
|
1297 |
+
|
1298 |
+
<A NAME=speech187><b>PRINCE HENRY</b></a>
|
1299 |
+
<blockquote>
|
1300 |
+
<A NAME=504>It may be so: if he have robb'd these men,</A><br>
|
1301 |
+
<A NAME=505>He shall be answerable; and so farewell.</A><br>
|
1302 |
+
</blockquote>
|
1303 |
+
|
1304 |
+
<A NAME=speech188><b>Sheriff</b></a>
|
1305 |
+
<blockquote>
|
1306 |
+
<A NAME=506>Good night, my noble lord.</A><br>
|
1307 |
+
</blockquote>
|
1308 |
+
|
1309 |
+
<A NAME=speech189><b>PRINCE HENRY</b></a>
|
1310 |
+
<blockquote>
|
1311 |
+
<A NAME=507>I think it is good morrow, is it not?</A><br>
|
1312 |
+
</blockquote>
|
1313 |
+
|
1314 |
+
<A NAME=speech190><b>Sheriff</b></a>
|
1315 |
+
<blockquote>
|
1316 |
+
<A NAME=508>Indeed, my lord, I think it be two o'clock.</A><br>
|
1317 |
+
<p><i>Exeunt Sheriff and Carrier</i></p>
|
1318 |
+
</blockquote>
|
1319 |
+
|
1320 |
+
<A NAME=speech191><b>PRINCE HENRY</b></a>
|
1321 |
+
<blockquote>
|
1322 |
+
<A NAME=509>This oily rascal is known as well as Paul's. Go,</A><br>
|
1323 |
+
<A NAME=510>call him forth.</A><br>
|
1324 |
+
</blockquote>
|
1325 |
+
|
1326 |
+
<A NAME=speech192><b>PETO</b></a>
|
1327 |
+
<blockquote>
|
1328 |
+
<A NAME=511>Falstaff!--Fast asleep behind the arras, and</A><br>
|
1329 |
+
<A NAME=512>snorting like a horse.</A><br>
|
1330 |
+
</blockquote>
|
1331 |
+
|
1332 |
+
<A NAME=speech193><b>PRINCE HENRY</b></a>
|
1333 |
+
<blockquote>
|
1334 |
+
<A NAME=513>Hark, how hard he fetches breath. Search his pockets.</A><br>
|
1335 |
+
<p><i>He searcheth his pockets, and findeth certain papers</i></p>
|
1336 |
+
<A NAME=514>What hast thou found?</A><br>
|
1337 |
+
</blockquote>
|
1338 |
+
|
1339 |
+
<A NAME=speech194><b>PETO</b></a>
|
1340 |
+
<blockquote>
|
1341 |
+
<A NAME=515>Nothing but papers, my lord.</A><br>
|
1342 |
+
</blockquote>
|
1343 |
+
|
1344 |
+
<A NAME=speech195><b>PRINCE HENRY</b></a>
|
1345 |
+
<blockquote>
|
1346 |
+
<A NAME=516>Let's see what they be: read them.</A><br>
|
1347 |
+
</blockquote>
|
1348 |
+
|
1349 |
+
<A NAME=speech196><b>PETO</b></a>
|
1350 |
+
<blockquote>
|
1351 |
+
<A NAME=517>[Reads] Item, A capon,. . 2s. 2d.</A><br>
|
1352 |
+
<A NAME=518>Item, Sauce,. . . 4d.</A><br>
|
1353 |
+
<A NAME=519>Item, Sack, two gallons, 5s. 8d.</A><br>
|
1354 |
+
<A NAME=520>Item, Anchovies and sack after supper, 2s. 6d.</A><br>
|
1355 |
+
<A NAME=521>Item, Bread, ob.</A><br>
|
1356 |
+
</blockquote>
|
1357 |
+
|
1358 |
+
<A NAME=speech197><b>PRINCE HENRY</b></a>
|
1359 |
+
<blockquote>
|
1360 |
+
<A NAME=522>O monstrous! but one half-penny-worth of bread to</A><br>
|
1361 |
+
<A NAME=523>this intolerable deal of sack! What there is else,</A><br>
|
1362 |
+
<A NAME=524>keep close; we'll read it at more advantage: there</A><br>
|
1363 |
+
<A NAME=525>let him sleep till day. I'll to the court in the</A><br>
|
1364 |
+
<A NAME=526>morning. We must all to the wars, and thy place</A><br>
|
1365 |
+
<A NAME=527>shall be honourable. I'll procure this fat rogue a</A><br>
|
1366 |
+
<A NAME=528>charge of foot; and I know his death will be a</A><br>
|
1367 |
+
<A NAME=529>march of twelve-score. The money shall be paid</A><br>
|
1368 |
+
<A NAME=530>back again with advantage. Be with me betimes in</A><br>
|
1369 |
+
<A NAME=531>the morning; and so, good morrow, Peto.</A><br>
|
1370 |
+
<p><i>Exeunt</i></p>
|
1371 |
+
</blockquote>
|
1372 |
+
|
1373 |
+
<A NAME=speech198><b>PETO</b></a>
|
1374 |
+
<blockquote>
|
1375 |
+
<A NAME=532>Good morrow, good my lord.</A><br>
|
1376 |
+
<table width="100%" bgcolor="#CCF6F6">
|
1377 |
+
<tr><td class="nav" align="center">
|
1378 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
1379 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
1380 |
+
| Act 2, Scene 4
|
1381 |
+
<br>
|
1382 |
+
<a href="1henryiv.2.3.html">Previous scene</A>
|
1383 |
+
| <a href="1henryiv.3.1.html">Next scene</A>
|
1384 |
+
</table>
|
1385 |
+
|
1386 |
+
</body>
|
1387 |
+
</html>
|
1388 |
+
|
1389 |
+
|
data/1henryiv.3.1.html
ADDED
@@ -0,0 +1,617 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. Bangor. The Archdeacon's house.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 3, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.2.4.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.3.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. Bangor. The Archdeacon's house.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter HOTSPUR, WORCESTER, MORTIMER, and GLENDOWER</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>MORTIMER</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>These promises are fair, the parties sure,</A><br>
|
33 |
+
<A NAME=2>And our induction full of prosperous hope.</A><br>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>HOTSPUR</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=3>Lord Mortimer, and cousin Glendower,</A><br>
|
39 |
+
<A NAME=4>Will you sit down?</A><br>
|
40 |
+
<A NAME=5>And uncle Worcester: a plague upon it!</A><br>
|
41 |
+
<A NAME=6>I have forgot the map.</A><br>
|
42 |
+
</blockquote>
|
43 |
+
|
44 |
+
<A NAME=speech3><b>GLENDOWER</b></a>
|
45 |
+
<blockquote>
|
46 |
+
<A NAME=7>No, here it is.</A><br>
|
47 |
+
<A NAME=8>Sit, cousin Percy; sit, good cousin Hotspur,</A><br>
|
48 |
+
<A NAME=9>For by that name as oft as Lancaster</A><br>
|
49 |
+
<A NAME=10>Doth speak of you, his cheek looks pale and with</A><br>
|
50 |
+
<A NAME=11>A rising sigh he wisheth you in heaven.</A><br>
|
51 |
+
</blockquote>
|
52 |
+
|
53 |
+
<A NAME=speech4><b>HOTSPUR</b></a>
|
54 |
+
<blockquote>
|
55 |
+
<A NAME=12>And you in hell, as oft as he hears Owen Glendower spoke of.</A><br>
|
56 |
+
</blockquote>
|
57 |
+
|
58 |
+
<A NAME=speech5><b>GLENDOWER</b></a>
|
59 |
+
<blockquote>
|
60 |
+
<A NAME=13>I cannot blame him: at my nativity</A><br>
|
61 |
+
<A NAME=14>The front of heaven was full of fiery shapes,</A><br>
|
62 |
+
<A NAME=15>Of burning cressets; and at my birth</A><br>
|
63 |
+
<A NAME=16>The frame and huge foundation of the earth</A><br>
|
64 |
+
<A NAME=17>Shaked like a coward.</A><br>
|
65 |
+
</blockquote>
|
66 |
+
|
67 |
+
<A NAME=speech6><b>HOTSPUR</b></a>
|
68 |
+
<blockquote>
|
69 |
+
<A NAME=18>Why, so it would have done at the same season, if</A><br>
|
70 |
+
<A NAME=19>your mother's cat had but kittened, though yourself</A><br>
|
71 |
+
<A NAME=20>had never been born.</A><br>
|
72 |
+
</blockquote>
|
73 |
+
|
74 |
+
<A NAME=speech7><b>GLENDOWER</b></a>
|
75 |
+
<blockquote>
|
76 |
+
<A NAME=21>I say the earth did shake when I was born.</A><br>
|
77 |
+
</blockquote>
|
78 |
+
|
79 |
+
<A NAME=speech8><b>HOTSPUR</b></a>
|
80 |
+
<blockquote>
|
81 |
+
<A NAME=22>And I say the earth was not of my mind,</A><br>
|
82 |
+
<A NAME=23>If you suppose as fearing you it shook.</A><br>
|
83 |
+
</blockquote>
|
84 |
+
|
85 |
+
<A NAME=speech9><b>GLENDOWER</b></a>
|
86 |
+
<blockquote>
|
87 |
+
<A NAME=24>The heavens were all on fire, the earth did tremble.</A><br>
|
88 |
+
</blockquote>
|
89 |
+
|
90 |
+
<A NAME=speech10><b>HOTSPUR</b></a>
|
91 |
+
<blockquote>
|
92 |
+
<A NAME=25>O, then the earth shook to see the heavens on fire,</A><br>
|
93 |
+
<A NAME=26>And not in fear of your nativity.</A><br>
|
94 |
+
<A NAME=27>Diseased nature oftentimes breaks forth</A><br>
|
95 |
+
<A NAME=28>In strange eruptions; oft the teeming earth</A><br>
|
96 |
+
<A NAME=29>Is with a kind of colic pinch'd and vex'd</A><br>
|
97 |
+
<A NAME=30>By the imprisoning of unruly wind</A><br>
|
98 |
+
<A NAME=31>Within her womb; which, for enlargement striving,</A><br>
|
99 |
+
<A NAME=32>Shakes the old beldam earth and topples down</A><br>
|
100 |
+
<A NAME=33>Steeples and moss-grown towers. At your birth</A><br>
|
101 |
+
<A NAME=34>Our grandam earth, having this distemperature,</A><br>
|
102 |
+
<A NAME=35>In passion shook.</A><br>
|
103 |
+
</blockquote>
|
104 |
+
|
105 |
+
<A NAME=speech11><b>GLENDOWER</b></a>
|
106 |
+
<blockquote>
|
107 |
+
<A NAME=36> Cousin, of many men</A><br>
|
108 |
+
<A NAME=37>I do not bear these crossings. Give me leave</A><br>
|
109 |
+
<A NAME=38>To tell you once again that at my birth</A><br>
|
110 |
+
<A NAME=39>The front of heaven was full of fiery shapes,</A><br>
|
111 |
+
<A NAME=40>The goats ran from the mountains, and the herds</A><br>
|
112 |
+
<A NAME=41>Were strangely clamorous to the frighted fields.</A><br>
|
113 |
+
<A NAME=42>These signs have mark'd me extraordinary;</A><br>
|
114 |
+
<A NAME=43>And all the courses of my life do show</A><br>
|
115 |
+
<A NAME=44>I am not in the roll of common men.</A><br>
|
116 |
+
<A NAME=45>Where is he living, clipp'd in with the sea</A><br>
|
117 |
+
<A NAME=46>That chides the banks of England, Scotland, Wales,</A><br>
|
118 |
+
<A NAME=47>Which calls me pupil, or hath read to me?</A><br>
|
119 |
+
<A NAME=48>And bring him out that is but woman's son</A><br>
|
120 |
+
<A NAME=49>Can trace me in the tedious ways of art</A><br>
|
121 |
+
<A NAME=50>And hold me pace in deep experiments.</A><br>
|
122 |
+
</blockquote>
|
123 |
+
|
124 |
+
<A NAME=speech12><b>HOTSPUR</b></a>
|
125 |
+
<blockquote>
|
126 |
+
<A NAME=51>I think there's no man speaks better Welsh.</A><br>
|
127 |
+
<A NAME=52>I'll to dinner.</A><br>
|
128 |
+
</blockquote>
|
129 |
+
|
130 |
+
<A NAME=speech13><b>MORTIMER</b></a>
|
131 |
+
<blockquote>
|
132 |
+
<A NAME=53>Peace, cousin Percy; you will make him mad.</A><br>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech14><b>GLENDOWER</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=54>I can call spirits from the vasty deep.</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech15><b>HOTSPUR</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=55>Why, so can I, or so can any man;</A><br>
|
143 |
+
<A NAME=56>But will they come when you do call for them?</A><br>
|
144 |
+
</blockquote>
|
145 |
+
|
146 |
+
<A NAME=speech16><b>GLENDOWER</b></a>
|
147 |
+
<blockquote>
|
148 |
+
<A NAME=57>Why, I can teach you, cousin, to command</A><br>
|
149 |
+
<A NAME=58>The devil.</A><br>
|
150 |
+
</blockquote>
|
151 |
+
|
152 |
+
<A NAME=speech17><b>HOTSPUR</b></a>
|
153 |
+
<blockquote>
|
154 |
+
<A NAME=59>And I can teach thee, coz, to shame the devil</A><br>
|
155 |
+
<A NAME=60>By telling truth: tell truth and shame the devil.</A><br>
|
156 |
+
<A NAME=61>If thou have power to raise him, bring him hither,</A><br>
|
157 |
+
<A NAME=62>And I'll be sworn I have power to shame him hence.</A><br>
|
158 |
+
<A NAME=63>O, while you live, tell truth and shame the devil!</A><br>
|
159 |
+
</blockquote>
|
160 |
+
|
161 |
+
<A NAME=speech18><b>MORTIMER</b></a>
|
162 |
+
<blockquote>
|
163 |
+
<A NAME=64>Come, come, no more of this unprofitable chat.</A><br>
|
164 |
+
</blockquote>
|
165 |
+
|
166 |
+
<A NAME=speech19><b>GLENDOWER</b></a>
|
167 |
+
<blockquote>
|
168 |
+
<A NAME=65>Three times hath Henry Bolingbroke made head</A><br>
|
169 |
+
<A NAME=66>Against my power; thrice from the banks of Wye</A><br>
|
170 |
+
<A NAME=67>And sandy-bottom'd Severn have I sent him</A><br>
|
171 |
+
<A NAME=68>Bootless home and weather-beaten back.</A><br>
|
172 |
+
</blockquote>
|
173 |
+
|
174 |
+
<A NAME=speech20><b>HOTSPUR</b></a>
|
175 |
+
<blockquote>
|
176 |
+
<A NAME=69>Home without boots, and in foul weather too!</A><br>
|
177 |
+
<A NAME=70>How 'scapes he agues, in the devil's name?</A><br>
|
178 |
+
</blockquote>
|
179 |
+
|
180 |
+
<A NAME=speech21><b>GLENDOWER</b></a>
|
181 |
+
<blockquote>
|
182 |
+
<A NAME=71>Come, here's the map: shall we divide our right</A><br>
|
183 |
+
<A NAME=72>According to our threefold order ta'en?</A><br>
|
184 |
+
</blockquote>
|
185 |
+
|
186 |
+
<A NAME=speech22><b>MORTIMER</b></a>
|
187 |
+
<blockquote>
|
188 |
+
<A NAME=73>The archdeacon hath divided it</A><br>
|
189 |
+
<A NAME=74>Into three limits very equally:</A><br>
|
190 |
+
<A NAME=75>England, from Trent and Severn hitherto,</A><br>
|
191 |
+
<A NAME=76>By south and east is to my part assign'd:</A><br>
|
192 |
+
<A NAME=77>All westward, Wales beyond the Severn shore,</A><br>
|
193 |
+
<A NAME=78>And all the fertile land within that bound,</A><br>
|
194 |
+
<A NAME=79>To Owen Glendower: and, dear coz, to you</A><br>
|
195 |
+
<A NAME=80>The remnant northward, lying off from Trent.</A><br>
|
196 |
+
<A NAME=81>And our indentures tripartite are drawn;</A><br>
|
197 |
+
<A NAME=82>Which being sealed interchangeably,</A><br>
|
198 |
+
<A NAME=83>A business that this night may execute,</A><br>
|
199 |
+
<A NAME=84>To-morrow, cousin Percy, you and I</A><br>
|
200 |
+
<A NAME=85>And my good Lord of Worcester will set forth</A><br>
|
201 |
+
<A NAME=86>To meet your father and the Scottish power,</A><br>
|
202 |
+
<A NAME=87>As is appointed us, at Shrewsbury.</A><br>
|
203 |
+
<A NAME=88>My father Glendower is not ready yet,</A><br>
|
204 |
+
<A NAME=89>Not shall we need his help these fourteen days.</A><br>
|
205 |
+
<A NAME=90>Within that space you may have drawn together</A><br>
|
206 |
+
<A NAME=91>Your tenants, friends and neighbouring gentlemen.</A><br>
|
207 |
+
</blockquote>
|
208 |
+
|
209 |
+
<A NAME=speech23><b>GLENDOWER</b></a>
|
210 |
+
<blockquote>
|
211 |
+
<A NAME=92>A shorter time shall send me to you, lords:</A><br>
|
212 |
+
<A NAME=93>And in my conduct shall your ladies come;</A><br>
|
213 |
+
<A NAME=94>From whom you now must steal and take no leave,</A><br>
|
214 |
+
<A NAME=95>For there will be a world of water shed</A><br>
|
215 |
+
<A NAME=96>Upon the parting of your wives and you.</A><br>
|
216 |
+
</blockquote>
|
217 |
+
|
218 |
+
<A NAME=speech24><b>HOTSPUR</b></a>
|
219 |
+
<blockquote>
|
220 |
+
<A NAME=97>Methinks my moiety, north from Burton here,</A><br>
|
221 |
+
<A NAME=98>In quantity equals not one of yours:</A><br>
|
222 |
+
<A NAME=99>See how this river comes me cranking in,</A><br>
|
223 |
+
<A NAME=100>And cuts me from the best of all my land</A><br>
|
224 |
+
<A NAME=101>A huge half-moon, a monstrous cantle out.</A><br>
|
225 |
+
<A NAME=102>I'll have the current in this place damm'd up;</A><br>
|
226 |
+
<A NAME=103>And here the smug and silver Trent shall run</A><br>
|
227 |
+
<A NAME=104>In a new channel, fair and evenly;</A><br>
|
228 |
+
<A NAME=105>It shall not wind with such a deep indent,</A><br>
|
229 |
+
<A NAME=106>To rob me of so rich a bottom here.</A><br>
|
230 |
+
</blockquote>
|
231 |
+
|
232 |
+
<A NAME=speech25><b>GLENDOWER</b></a>
|
233 |
+
<blockquote>
|
234 |
+
<A NAME=107>Not wind? it shall, it must; you see it doth.</A><br>
|
235 |
+
</blockquote>
|
236 |
+
|
237 |
+
<A NAME=speech26><b>MORTIMER</b></a>
|
238 |
+
<blockquote>
|
239 |
+
<A NAME=108>Yea, but</A><br>
|
240 |
+
<A NAME=109>Mark how he bears his course, and runs me up</A><br>
|
241 |
+
<A NAME=110>With like advantage on the other side;</A><br>
|
242 |
+
<A NAME=111>Gelding the opposed continent as much</A><br>
|
243 |
+
<A NAME=112>As on the other side it takes from you.</A><br>
|
244 |
+
</blockquote>
|
245 |
+
|
246 |
+
<A NAME=speech27><b>EARL OF WORCESTER</b></a>
|
247 |
+
<blockquote>
|
248 |
+
<A NAME=113>Yea, but a little charge will trench him here</A><br>
|
249 |
+
<A NAME=114>And on this north side win this cape of land;</A><br>
|
250 |
+
<A NAME=115>And then he runs straight and even.</A><br>
|
251 |
+
</blockquote>
|
252 |
+
|
253 |
+
<A NAME=speech28><b>HOTSPUR</b></a>
|
254 |
+
<blockquote>
|
255 |
+
<A NAME=116>I'll have it so: a little charge will do it.</A><br>
|
256 |
+
</blockquote>
|
257 |
+
|
258 |
+
<A NAME=speech29><b>GLENDOWER</b></a>
|
259 |
+
<blockquote>
|
260 |
+
<A NAME=117>I'll not have it alter'd.</A><br>
|
261 |
+
</blockquote>
|
262 |
+
|
263 |
+
<A NAME=speech30><b>HOTSPUR</b></a>
|
264 |
+
<blockquote>
|
265 |
+
<A NAME=118>Will not you?</A><br>
|
266 |
+
</blockquote>
|
267 |
+
|
268 |
+
<A NAME=speech31><b>GLENDOWER</b></a>
|
269 |
+
<blockquote>
|
270 |
+
<A NAME=119>No, nor you shall not.</A><br>
|
271 |
+
</blockquote>
|
272 |
+
|
273 |
+
<A NAME=speech32><b>HOTSPUR</b></a>
|
274 |
+
<blockquote>
|
275 |
+
<A NAME=120>Who shall say me nay?</A><br>
|
276 |
+
</blockquote>
|
277 |
+
|
278 |
+
<A NAME=speech33><b>GLENDOWER</b></a>
|
279 |
+
<blockquote>
|
280 |
+
<A NAME=121>Why, that will I.</A><br>
|
281 |
+
</blockquote>
|
282 |
+
|
283 |
+
<A NAME=speech34><b>HOTSPUR</b></a>
|
284 |
+
<blockquote>
|
285 |
+
<A NAME=122>Let me not understand you, then; speak it in Welsh.</A><br>
|
286 |
+
</blockquote>
|
287 |
+
|
288 |
+
<A NAME=speech35><b>GLENDOWER</b></a>
|
289 |
+
<blockquote>
|
290 |
+
<A NAME=123>I can speak English, lord, as well as you;</A><br>
|
291 |
+
<A NAME=124>For I was train'd up in the English court;</A><br>
|
292 |
+
<A NAME=125>Where, being but young, I framed to the harp</A><br>
|
293 |
+
<A NAME=126>Many an English ditty lovely well</A><br>
|
294 |
+
<A NAME=127>And gave the tongue a helpful ornament,</A><br>
|
295 |
+
<A NAME=128>A virtue that was never seen in you.</A><br>
|
296 |
+
</blockquote>
|
297 |
+
|
298 |
+
<A NAME=speech36><b>HOTSPUR</b></a>
|
299 |
+
<blockquote>
|
300 |
+
<A NAME=129>Marry,</A><br>
|
301 |
+
<A NAME=130>And I am glad of it with all my heart:</A><br>
|
302 |
+
<A NAME=131>I had rather be a kitten and cry mew</A><br>
|
303 |
+
<A NAME=132>Than one of these same metre ballad-mongers;</A><br>
|
304 |
+
<A NAME=133>I had rather hear a brazen canstick turn'd,</A><br>
|
305 |
+
<A NAME=134>Or a dry wheel grate on the axle-tree;</A><br>
|
306 |
+
<A NAME=135>And that would set my teeth nothing on edge,</A><br>
|
307 |
+
<A NAME=136>Nothing so much as mincing poetry:</A><br>
|
308 |
+
<A NAME=137>'Tis like the forced gait of a shuffling nag.</A><br>
|
309 |
+
</blockquote>
|
310 |
+
|
311 |
+
<A NAME=speech37><b>GLENDOWER</b></a>
|
312 |
+
<blockquote>
|
313 |
+
<A NAME=138>Come, you shall have Trent turn'd.</A><br>
|
314 |
+
</blockquote>
|
315 |
+
|
316 |
+
<A NAME=speech38><b>HOTSPUR</b></a>
|
317 |
+
<blockquote>
|
318 |
+
<A NAME=139>I do not care: I'll give thrice so much land</A><br>
|
319 |
+
<A NAME=140>To any well-deserving friend;</A><br>
|
320 |
+
<A NAME=141>But in the way of bargain, mark ye me,</A><br>
|
321 |
+
<A NAME=142>I'll cavil on the ninth part of a hair.</A><br>
|
322 |
+
<A NAME=143>Are the indentures drawn? shall we be gone?</A><br>
|
323 |
+
</blockquote>
|
324 |
+
|
325 |
+
<A NAME=speech39><b>GLENDOWER</b></a>
|
326 |
+
<blockquote>
|
327 |
+
<A NAME=144>The moon shines fair; you may away by night:</A><br>
|
328 |
+
<A NAME=145>I'll haste the writer and withal</A><br>
|
329 |
+
<A NAME=146>Break with your wives of your departure hence:</A><br>
|
330 |
+
<A NAME=147>I am afraid my daughter will run mad,</A><br>
|
331 |
+
<A NAME=148>So much she doteth on her Mortimer.</A><br>
|
332 |
+
<p><i>Exit GLENDOWER</i></p>
|
333 |
+
</blockquote>
|
334 |
+
|
335 |
+
<A NAME=speech40><b>MORTIMER</b></a>
|
336 |
+
<blockquote>
|
337 |
+
<A NAME=149>Fie, cousin Percy! how you cross my father!</A><br>
|
338 |
+
</blockquote>
|
339 |
+
|
340 |
+
<A NAME=speech41><b>HOTSPUR</b></a>
|
341 |
+
<blockquote>
|
342 |
+
<A NAME=150>I cannot choose: sometime he angers me</A><br>
|
343 |
+
<A NAME=151>With telling me of the mouldwarp and the ant,</A><br>
|
344 |
+
<A NAME=152>Of the dreamer Merlin and his prophecies,</A><br>
|
345 |
+
<A NAME=153>And of a dragon and a finless fish,</A><br>
|
346 |
+
<A NAME=154>A clip-wing'd griffin and a moulten raven,</A><br>
|
347 |
+
<A NAME=155>A couching lion and a ramping cat,</A><br>
|
348 |
+
<A NAME=156>And such a deal of skimble-skamble stuff</A><br>
|
349 |
+
<A NAME=157>As puts me from my faith. I tell you what;</A><br>
|
350 |
+
<A NAME=158>He held me last night at least nine hours</A><br>
|
351 |
+
<A NAME=159>In reckoning up the several devils' names</A><br>
|
352 |
+
<A NAME=160>That were his lackeys: I cried 'hum,' and 'well, go to,'</A><br>
|
353 |
+
<A NAME=161>But mark'd him not a word. O, he is as tedious</A><br>
|
354 |
+
<A NAME=162>As a tired horse, a railing wife;</A><br>
|
355 |
+
<A NAME=163>Worse than a smoky house: I had rather live</A><br>
|
356 |
+
<A NAME=164>With cheese and garlic in a windmill, far,</A><br>
|
357 |
+
<A NAME=165>Than feed on cates and have him talk to me</A><br>
|
358 |
+
<A NAME=166>In any summer-house in Christendom.</A><br>
|
359 |
+
</blockquote>
|
360 |
+
|
361 |
+
<A NAME=speech42><b>MORTIMER</b></a>
|
362 |
+
<blockquote>
|
363 |
+
<A NAME=167>In faith, he is a worthy gentleman,</A><br>
|
364 |
+
<A NAME=168>Exceedingly well read, and profited</A><br>
|
365 |
+
<A NAME=169>In strange concealments, valiant as a lion</A><br>
|
366 |
+
<A NAME=170>And as wondrous affable and as bountiful</A><br>
|
367 |
+
<A NAME=171>As mines of India. Shall I tell you, cousin?</A><br>
|
368 |
+
<A NAME=172>He holds your temper in a high respect</A><br>
|
369 |
+
<A NAME=173>And curbs himself even of his natural scope</A><br>
|
370 |
+
<A NAME=174>When you come 'cross his humour; faith, he does:</A><br>
|
371 |
+
<A NAME=175>I warrant you, that man is not alive</A><br>
|
372 |
+
<A NAME=176>Might so have tempted him as you have done,</A><br>
|
373 |
+
<A NAME=177>Without the taste of danger and reproof:</A><br>
|
374 |
+
<A NAME=178>But do not use it oft, let me entreat you.</A><br>
|
375 |
+
</blockquote>
|
376 |
+
|
377 |
+
<A NAME=speech43><b>EARL OF WORCESTER</b></a>
|
378 |
+
<blockquote>
|
379 |
+
<A NAME=179>In faith, my lord, you are too wilful-blame;</A><br>
|
380 |
+
<A NAME=180>And since your coming hither have done enough</A><br>
|
381 |
+
<A NAME=181>To put him quite beside his patience.</A><br>
|
382 |
+
<A NAME=182>You must needs learn, lord, to amend this fault:</A><br>
|
383 |
+
<A NAME=183>Though sometimes it show greatness, courage, blood,--</A><br>
|
384 |
+
<A NAME=184>And that's the dearest grace it renders you,--</A><br>
|
385 |
+
<A NAME=185>Yet oftentimes it doth present harsh rage,</A><br>
|
386 |
+
<A NAME=186>Defect of manners, want of government,</A><br>
|
387 |
+
<A NAME=187>Pride, haughtiness, opinion and disdain:</A><br>
|
388 |
+
<A NAME=188>The least of which haunting a nobleman</A><br>
|
389 |
+
<A NAME=189>Loseth men's hearts and leaves behind a stain</A><br>
|
390 |
+
<A NAME=190>Upon the beauty of all parts besides,</A><br>
|
391 |
+
<A NAME=191>Beguiling them of commendation.</A><br>
|
392 |
+
</blockquote>
|
393 |
+
|
394 |
+
<A NAME=speech44><b>HOTSPUR</b></a>
|
395 |
+
<blockquote>
|
396 |
+
<A NAME=192>Well, I am school'd: good manners be your speed!</A><br>
|
397 |
+
<A NAME=193>Here come our wives, and let us take our leave.</A><br>
|
398 |
+
<p><i>Re-enter GLENDOWER with the ladies</i></p>
|
399 |
+
</blockquote>
|
400 |
+
|
401 |
+
<A NAME=speech45><b>MORTIMER</b></a>
|
402 |
+
<blockquote>
|
403 |
+
<A NAME=194>This is the deadly spite that angers me;</A><br>
|
404 |
+
<A NAME=195>My wife can speak no English, I no Welsh.</A><br>
|
405 |
+
</blockquote>
|
406 |
+
|
407 |
+
<A NAME=speech46><b>GLENDOWER</b></a>
|
408 |
+
<blockquote>
|
409 |
+
<A NAME=196>My daughter weeps: she will not part with you;</A><br>
|
410 |
+
<A NAME=197>She'll be a soldier too, she'll to the wars.</A><br>
|
411 |
+
</blockquote>
|
412 |
+
|
413 |
+
<A NAME=speech47><b>MORTIMER</b></a>
|
414 |
+
<blockquote>
|
415 |
+
<A NAME=198>Good father, tell her that she and my aunt Percy</A><br>
|
416 |
+
<A NAME=199>Shall follow in your conduct speedily.</A><br>
|
417 |
+
<p><i>Glendower speaks to her in Welsh, and she answers him in the same</i></p>
|
418 |
+
</blockquote>
|
419 |
+
|
420 |
+
<A NAME=speech48><b>GLENDOWER</b></a>
|
421 |
+
<blockquote>
|
422 |
+
<A NAME=200>She is desperate here; a peevish self-wind harlotry,</A><br>
|
423 |
+
<A NAME=201>one that no persuasion can do good upon.</A><br>
|
424 |
+
<p><i>The lady speaks in Welsh</i></p>
|
425 |
+
</blockquote>
|
426 |
+
|
427 |
+
<A NAME=speech49><b>MORTIMER</b></a>
|
428 |
+
<blockquote>
|
429 |
+
<A NAME=202>I understand thy looks: that pretty Welsh</A><br>
|
430 |
+
<A NAME=203>Which thou pour'st down from these swelling heavens</A><br>
|
431 |
+
<A NAME=204>I am too perfect in; and, but for shame,</A><br>
|
432 |
+
<A NAME=205>In such a parley should I answer thee.</A><br>
|
433 |
+
<p><i>The lady speaks again in Welsh</i></p>
|
434 |
+
<A NAME=206>I understand thy kisses and thou mine,</A><br>
|
435 |
+
<A NAME=207>And that's a feeling disputation:</A><br>
|
436 |
+
<A NAME=208>But I will never be a truant, love,</A><br>
|
437 |
+
<A NAME=209>Till I have learned thy language; for thy tongue</A><br>
|
438 |
+
<A NAME=210>Makes Welsh as sweet as ditties highly penn'd,</A><br>
|
439 |
+
<A NAME=211>Sung by a fair queen in a summer's bower,</A><br>
|
440 |
+
<A NAME=212>With ravishing division, to her lute.</A><br>
|
441 |
+
</blockquote>
|
442 |
+
|
443 |
+
<A NAME=speech50><b>GLENDOWER</b></a>
|
444 |
+
<blockquote>
|
445 |
+
<A NAME=213>Nay, if you melt, then will she run mad.</A><br>
|
446 |
+
<p><i>The lady speaks again in Welsh</i></p>
|
447 |
+
</blockquote>
|
448 |
+
|
449 |
+
<A NAME=speech51><b>MORTIMER</b></a>
|
450 |
+
<blockquote>
|
451 |
+
<A NAME=214>O, I am ignorance itself in this!</A><br>
|
452 |
+
</blockquote>
|
453 |
+
|
454 |
+
<A NAME=speech52><b>GLENDOWER</b></a>
|
455 |
+
<blockquote>
|
456 |
+
<A NAME=215>She bids you on the wanton rushes lay you down</A><br>
|
457 |
+
<A NAME=216>And rest your gentle head upon her lap,</A><br>
|
458 |
+
<A NAME=217>And she will sing the song that pleaseth you</A><br>
|
459 |
+
<A NAME=218>And on your eyelids crown the god of sleep.</A><br>
|
460 |
+
<A NAME=219>Charming your blood with pleasing heaviness,</A><br>
|
461 |
+
<A NAME=220>Making such difference 'twixt wake and sleep</A><br>
|
462 |
+
<A NAME=221>As is the difference betwixt day and night</A><br>
|
463 |
+
<A NAME=222>The hour before the heavenly-harness'd team</A><br>
|
464 |
+
<A NAME=223>Begins his golden progress in the east.</A><br>
|
465 |
+
</blockquote>
|
466 |
+
|
467 |
+
<A NAME=speech53><b>MORTIMER</b></a>
|
468 |
+
<blockquote>
|
469 |
+
<A NAME=224>With all my heart I'll sit and hear her sing:</A><br>
|
470 |
+
<A NAME=225>By that time will our book, I think, be drawn</A><br>
|
471 |
+
</blockquote>
|
472 |
+
|
473 |
+
<A NAME=speech54><b>GLENDOWER</b></a>
|
474 |
+
<blockquote>
|
475 |
+
<A NAME=226>Do so;</A><br>
|
476 |
+
<A NAME=227>And those musicians that shall play to you</A><br>
|
477 |
+
<A NAME=228>Hang in the air a thousand leagues from hence,</A><br>
|
478 |
+
<A NAME=229>And straight they shall be here: sit, and attend.</A><br>
|
479 |
+
</blockquote>
|
480 |
+
|
481 |
+
<A NAME=speech55><b>HOTSPUR</b></a>
|
482 |
+
<blockquote>
|
483 |
+
<A NAME=230>Come, Kate, thou art perfect in lying down: come,</A><br>
|
484 |
+
<A NAME=231>quick, quick, that I may lay my head in thy lap.</A><br>
|
485 |
+
</blockquote>
|
486 |
+
|
487 |
+
<A NAME=speech56><b>LADY PERCY</b></a>
|
488 |
+
<blockquote>
|
489 |
+
<A NAME=232>Go, ye giddy goose.</A><br>
|
490 |
+
<p><i>The music plays</i></p>
|
491 |
+
</blockquote>
|
492 |
+
|
493 |
+
<A NAME=speech57><b>HOTSPUR</b></a>
|
494 |
+
<blockquote>
|
495 |
+
<A NAME=233>Now I perceive the devil understands Welsh;</A><br>
|
496 |
+
<A NAME=234>And 'tis no marvel he is so humorous.</A><br>
|
497 |
+
<A NAME=235>By'r lady, he is a good musician.</A><br>
|
498 |
+
</blockquote>
|
499 |
+
|
500 |
+
<A NAME=speech58><b>LADY PERCY</b></a>
|
501 |
+
<blockquote>
|
502 |
+
<A NAME=236>Then should you be nothing but musical for you are</A><br>
|
503 |
+
<A NAME=237>altogether governed by humours. Lie still, ye thief,</A><br>
|
504 |
+
<A NAME=238>and hear the lady sing in Welsh.</A><br>
|
505 |
+
</blockquote>
|
506 |
+
|
507 |
+
<A NAME=speech59><b>HOTSPUR</b></a>
|
508 |
+
<blockquote>
|
509 |
+
<A NAME=239>I had rather hear Lady, my brach, howl in Irish.</A><br>
|
510 |
+
</blockquote>
|
511 |
+
|
512 |
+
<A NAME=speech60><b>LADY PERCY</b></a>
|
513 |
+
<blockquote>
|
514 |
+
<A NAME=240>Wouldst thou have thy head broken?</A><br>
|
515 |
+
</blockquote>
|
516 |
+
|
517 |
+
<A NAME=speech61><b>HOTSPUR</b></a>
|
518 |
+
<blockquote>
|
519 |
+
<A NAME=241>No.</A><br>
|
520 |
+
</blockquote>
|
521 |
+
|
522 |
+
<A NAME=speech62><b>LADY PERCY</b></a>
|
523 |
+
<blockquote>
|
524 |
+
<A NAME=242>Then be still.</A><br>
|
525 |
+
</blockquote>
|
526 |
+
|
527 |
+
<A NAME=speech63><b>HOTSPUR</b></a>
|
528 |
+
<blockquote>
|
529 |
+
<A NAME=243>Neither;'tis a woman's fault.</A><br>
|
530 |
+
</blockquote>
|
531 |
+
|
532 |
+
<A NAME=speech64><b>LADY PERCY</b></a>
|
533 |
+
<blockquote>
|
534 |
+
<A NAME=244>Now God help thee!</A><br>
|
535 |
+
</blockquote>
|
536 |
+
|
537 |
+
<A NAME=speech65><b>HOTSPUR</b></a>
|
538 |
+
<blockquote>
|
539 |
+
<A NAME=245>To the Welsh lady's bed.</A><br>
|
540 |
+
</blockquote>
|
541 |
+
|
542 |
+
<A NAME=speech66><b>LADY PERCY</b></a>
|
543 |
+
<blockquote>
|
544 |
+
<A NAME=246>What's that?</A><br>
|
545 |
+
</blockquote>
|
546 |
+
|
547 |
+
<A NAME=speech67><b>HOTSPUR</b></a>
|
548 |
+
<blockquote>
|
549 |
+
<A NAME=247>Peace! she sings.</A><br>
|
550 |
+
<p><i>Here the lady sings a Welsh song</i></p>
|
551 |
+
</blockquote>
|
552 |
+
|
553 |
+
<A NAME=speech68><b>HOTSPUR</b></a>
|
554 |
+
<blockquote>
|
555 |
+
<A NAME=248>Come, Kate, I'll have your song too.</A><br>
|
556 |
+
</blockquote>
|
557 |
+
|
558 |
+
<A NAME=speech69><b>LADY PERCY</b></a>
|
559 |
+
<blockquote>
|
560 |
+
<A NAME=249>Not mine, in good sooth.</A><br>
|
561 |
+
</blockquote>
|
562 |
+
|
563 |
+
<A NAME=speech70><b>HOTSPUR</b></a>
|
564 |
+
<blockquote>
|
565 |
+
<A NAME=250>Not yours, in good sooth! Heart! you swear like a</A><br>
|
566 |
+
<A NAME=251>comfit-maker's wife. 'Not you, in good sooth,' and</A><br>
|
567 |
+
<A NAME=252>'as true as I live,' and 'as God shall mend me,' and</A><br>
|
568 |
+
<A NAME=253>'as sure as day,'</A><br>
|
569 |
+
<A NAME=254>And givest such sarcenet surety for thy oaths,</A><br>
|
570 |
+
<A NAME=255>As if thou never walk'st further than Finsbury.</A><br>
|
571 |
+
<A NAME=256>Swear me, Kate, like a lady as thou art,</A><br>
|
572 |
+
<A NAME=257>A good mouth-filling oath, and leave 'in sooth,'</A><br>
|
573 |
+
<A NAME=258>And such protest of pepper-gingerbread,</A><br>
|
574 |
+
<A NAME=259>To velvet-guards and Sunday-citizens.</A><br>
|
575 |
+
<A NAME=260>Come, sing.</A><br>
|
576 |
+
</blockquote>
|
577 |
+
|
578 |
+
<A NAME=speech71><b>LADY PERCY</b></a>
|
579 |
+
<blockquote>
|
580 |
+
<A NAME=261>I will not sing.</A><br>
|
581 |
+
</blockquote>
|
582 |
+
|
583 |
+
<A NAME=speech72><b>HOTSPUR</b></a>
|
584 |
+
<blockquote>
|
585 |
+
<A NAME=262>'Tis the next way to turn tailor, or be red-breast</A><br>
|
586 |
+
<A NAME=263>teacher. An the indentures be drawn, I'll away</A><br>
|
587 |
+
<A NAME=264>within these two hours; and so, come in when ye will.</A><br>
|
588 |
+
<p><i>Exit</i></p>
|
589 |
+
</blockquote>
|
590 |
+
|
591 |
+
<A NAME=speech73><b>GLENDOWER</b></a>
|
592 |
+
<blockquote>
|
593 |
+
<A NAME=265>Come, come, Lord Mortimer; you are as slow</A><br>
|
594 |
+
<A NAME=266>As hot Lord Percy is on fire to go.</A><br>
|
595 |
+
<A NAME=267>By this our book is drawn; we'll but seal,</A><br>
|
596 |
+
<A NAME=268>And then to horse immediately.</A><br>
|
597 |
+
</blockquote>
|
598 |
+
|
599 |
+
<A NAME=speech74><b>MORTIMER</b></a>
|
600 |
+
<blockquote>
|
601 |
+
<A NAME=269>With all my heart.</A><br>
|
602 |
+
<p><i>Exeunt</i></p>
|
603 |
+
</blockquote>
|
604 |
+
<table width="100%" bgcolor="#CCF6F6">
|
605 |
+
<tr><td class="nav" align="center">
|
606 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
607 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
608 |
+
| Act 3, Scene 1
|
609 |
+
<br>
|
610 |
+
<a href="1henryiv.2.4.html">Previous scene</A>
|
611 |
+
| <a href="1henryiv.3.2.html">Next scene</A>
|
612 |
+
</table>
|
613 |
+
|
614 |
+
</body>
|
615 |
+
</html>
|
616 |
+
|
617 |
+
|
data/1henryiv.3.2.html
ADDED
@@ -0,0 +1,761 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. London. The palace.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 3, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.3.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.4.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. London. The palace.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter KING HENRY IV, PRINCE HENRY, and others</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>KING HENRY IV</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Lords, give us leave; the Prince of Wales and I</A><br>
|
33 |
+
<A NAME=2>Must have some private conference; but be near at hand,</A><br>
|
34 |
+
<A NAME=3>For we shall presently have need of you.</A><br>
|
35 |
+
<p><i>Exeunt Lords</i></p>
|
36 |
+
<A NAME=4>I know not whether God will have it so,</A><br>
|
37 |
+
<A NAME=5>For some displeasing service I have done,</A><br>
|
38 |
+
<A NAME=6>That, in his secret doom, out of my blood</A><br>
|
39 |
+
<A NAME=7>He'll breed revengement and a scourge for me;</A><br>
|
40 |
+
<A NAME=8>But thou dost in thy passages of life</A><br>
|
41 |
+
<A NAME=9>Make me believe that thou art only mark'd</A><br>
|
42 |
+
<A NAME=10>For the hot vengeance and the rod of heaven</A><br>
|
43 |
+
<A NAME=11>To punish my mistreadings. Tell me else,</A><br>
|
44 |
+
<A NAME=12>Could such inordinate and low desires,</A><br>
|
45 |
+
<A NAME=13>Such poor, such bare, such lewd, such mean attempts,</A><br>
|
46 |
+
<A NAME=14>Such barren pleasures, rude society,</A><br>
|
47 |
+
<A NAME=15>As thou art match'd withal and grafted to,</A><br>
|
48 |
+
<A NAME=16>Accompany the greatness of thy blood</A><br>
|
49 |
+
<A NAME=17>And hold their level with thy princely heart?</A><br>
|
50 |
+
</blockquote>
|
51 |
+
|
52 |
+
<A NAME=speech2><b>PRINCE HENRY</b></a>
|
53 |
+
<blockquote>
|
54 |
+
<A NAME=18>So please your majesty, I would I could</A><br>
|
55 |
+
<A NAME=19>Quit all offences with as clear excuse</A><br>
|
56 |
+
<A NAME=20>As well as I am doubtless I can purge</A><br>
|
57 |
+
<A NAME=21>Myself of many I am charged withal:</A><br>
|
58 |
+
<A NAME=22>Yet such extenuation let me beg,</A><br>
|
59 |
+
<A NAME=23>As, in reproof of many tales devised,</A><br>
|
60 |
+
<A NAME=24>which oft the ear of greatness needs must hear,</A><br>
|
61 |
+
<A NAME=25>By smiling pick-thanks and base news-mongers,</A><br>
|
62 |
+
<A NAME=26>I may, for some things true, wherein my youth</A><br>
|
63 |
+
<A NAME=27>Hath faulty wander'd and irregular,</A><br>
|
64 |
+
<A NAME=28>Find pardon on my true submission.</A><br>
|
65 |
+
</blockquote>
|
66 |
+
|
67 |
+
<A NAME=speech3><b>KING HENRY IV</b></a>
|
68 |
+
<blockquote>
|
69 |
+
<A NAME=29>God pardon thee! yet let me wonder, Harry,</A><br>
|
70 |
+
<A NAME=30>At thy affections, which do hold a wing</A><br>
|
71 |
+
<A NAME=31>Quite from the flight of all thy ancestors.</A><br>
|
72 |
+
<A NAME=32>Thy place in council thou hast rudely lost.</A><br>
|
73 |
+
<A NAME=33>Which by thy younger brother is supplied,</A><br>
|
74 |
+
<A NAME=34>And art almost an alien to the hearts</A><br>
|
75 |
+
<A NAME=35>Of all the court and princes of my blood:</A><br>
|
76 |
+
<A NAME=36>The hope and expectation of thy time</A><br>
|
77 |
+
<A NAME=37>Is ruin'd, and the soul of every man</A><br>
|
78 |
+
<A NAME=38>Prophetically doth forethink thy fall.</A><br>
|
79 |
+
<A NAME=39>Had I so lavish of my presence been,</A><br>
|
80 |
+
<A NAME=40>So common-hackney'd in the eyes of men,</A><br>
|
81 |
+
<A NAME=41>So stale and cheap to vulgar company,</A><br>
|
82 |
+
<A NAME=42>Opinion, that did help me to the crown,</A><br>
|
83 |
+
<A NAME=43>Had still kept loyal to possession</A><br>
|
84 |
+
<A NAME=44>And left me in reputeless banishment,</A><br>
|
85 |
+
<A NAME=45>A fellow of no mark nor likelihood.</A><br>
|
86 |
+
<A NAME=46>By being seldom seen, I could not stir</A><br>
|
87 |
+
<A NAME=47>But like a comet I was wonder'd at;</A><br>
|
88 |
+
<A NAME=48>That men would tell their children 'This is he;'</A><br>
|
89 |
+
<A NAME=49>Others would say 'Where, which is Bolingbroke?'</A><br>
|
90 |
+
<A NAME=50>And then I stole all courtesy from heaven,</A><br>
|
91 |
+
<A NAME=51>And dress'd myself in such humility</A><br>
|
92 |
+
<A NAME=52>That I did pluck allegiance from men's hearts,</A><br>
|
93 |
+
<A NAME=53>Loud shouts and salutations from their mouths,</A><br>
|
94 |
+
<A NAME=54>Even in the presence of the crowned king.</A><br>
|
95 |
+
<A NAME=55>Thus did I keep my person fresh and new;</A><br>
|
96 |
+
<A NAME=56>My presence, like a robe pontifical,</A><br>
|
97 |
+
<A NAME=57>Ne'er seen but wonder'd at: and so my state,</A><br>
|
98 |
+
<A NAME=58>Seldom but sumptuous, showed like a feast</A><br>
|
99 |
+
<A NAME=59>And won by rareness such solemnity.</A><br>
|
100 |
+
<A NAME=60>The skipping king, he ambled up and down</A><br>
|
101 |
+
<A NAME=61>With shallow jesters and rash bavin wits,</A><br>
|
102 |
+
<A NAME=62>Soon kindled and soon burnt; carded his state,</A><br>
|
103 |
+
<A NAME=63>Mingled his royalty with capering fools,</A><br>
|
104 |
+
<A NAME=64>Had his great name profaned with their scorns</A><br>
|
105 |
+
<A NAME=65>And gave his countenance, against his name,</A><br>
|
106 |
+
<A NAME=66>To laugh at gibing boys and stand the push</A><br>
|
107 |
+
<A NAME=67>Of every beardless vain comparative,</A><br>
|
108 |
+
<A NAME=68>Grew a companion to the common streets,</A><br>
|
109 |
+
<A NAME=69>Enfeoff'd himself to popularity;</A><br>
|
110 |
+
<A NAME=70>That, being daily swallow'd by men's eyes,</A><br>
|
111 |
+
<A NAME=71>They surfeited with honey and began</A><br>
|
112 |
+
<A NAME=72>To loathe the taste of sweetness, whereof a little</A><br>
|
113 |
+
<A NAME=73>More than a little is by much too much.</A><br>
|
114 |
+
<A NAME=74>So when he had occasion to be seen,</A><br>
|
115 |
+
<A NAME=75>He was but as the cuckoo is in June,</A><br>
|
116 |
+
<A NAME=76>Heard, not regarded; seen, but with such eyes</A><br>
|
117 |
+
<A NAME=77>As, sick and blunted with community,</A><br>
|
118 |
+
<A NAME=78>Afford no extraordinary gaze,</A><br>
|
119 |
+
<A NAME=79>Such as is bent on sun-like majesty</A><br>
|
120 |
+
<A NAME=80>When it shines seldom in admiring eyes;</A><br>
|
121 |
+
<A NAME=81>But rather drowzed and hung their eyelids down,</A><br>
|
122 |
+
<A NAME=82>Slept in his face and render'd such aspect</A><br>
|
123 |
+
<A NAME=83>As cloudy men use to their adversaries,</A><br>
|
124 |
+
<A NAME=84>Being with his presence glutted, gorged and full.</A><br>
|
125 |
+
<A NAME=85>And in that very line, Harry, standest thou;</A><br>
|
126 |
+
<A NAME=86>For thou has lost thy princely privilege</A><br>
|
127 |
+
<A NAME=87>With vile participation: not an eye</A><br>
|
128 |
+
<A NAME=88>But is a-weary of thy common sight,</A><br>
|
129 |
+
<A NAME=89>Save mine, which hath desired to see thee more;</A><br>
|
130 |
+
<A NAME=90>Which now doth that I would not have it do,</A><br>
|
131 |
+
<A NAME=91>Make blind itself with foolish tenderness.</A><br>
|
132 |
+
</blockquote>
|
133 |
+
|
134 |
+
<A NAME=speech4><b>PRINCE HENRY</b></a>
|
135 |
+
<blockquote>
|
136 |
+
<A NAME=92>I shall hereafter, my thrice gracious lord,</A><br>
|
137 |
+
<A NAME=93>Be more myself.</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech5><b>KING HENRY IV</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=94> For all the world</A><br>
|
143 |
+
<A NAME=95>As thou art to this hour was Richard then</A><br>
|
144 |
+
<A NAME=96>When I from France set foot at Ravenspurgh,</A><br>
|
145 |
+
<A NAME=97>And even as I was then is Percy now.</A><br>
|
146 |
+
<A NAME=98>Now, by my sceptre and my soul to boot,</A><br>
|
147 |
+
<A NAME=99>He hath more worthy interest to the state</A><br>
|
148 |
+
<A NAME=100>Than thou the shadow of succession;</A><br>
|
149 |
+
<A NAME=101>For of no right, nor colour like to right,</A><br>
|
150 |
+
<A NAME=102>He doth fill fields with harness in the realm,</A><br>
|
151 |
+
<A NAME=103>Turns head against the lion's armed jaws,</A><br>
|
152 |
+
<A NAME=104>And, being no more in debt to years than thou,</A><br>
|
153 |
+
<A NAME=105>Leads ancient lords and reverend bishops on</A><br>
|
154 |
+
<A NAME=106>To bloody battles and to bruising arms.</A><br>
|
155 |
+
<A NAME=107>What never-dying honour hath he got</A><br>
|
156 |
+
<A NAME=108>Against renowned Douglas! whose high deeds,</A><br>
|
157 |
+
<A NAME=109>Whose hot incursions and great name in arms</A><br>
|
158 |
+
<A NAME=110>Holds from all soldiers chief majority</A><br>
|
159 |
+
<A NAME=111>And military title capital</A><br>
|
160 |
+
<A NAME=112>Through all the kingdoms that acknowledge Christ:</A><br>
|
161 |
+
<A NAME=113>Thrice hath this Hotspur, Mars in swathling clothes,</A><br>
|
162 |
+
<A NAME=114>This infant warrior, in his enterprises</A><br>
|
163 |
+
<A NAME=115>Discomfited great Douglas, ta'en him once,</A><br>
|
164 |
+
<A NAME=116>Enlarged him and made a friend of him,</A><br>
|
165 |
+
<A NAME=117>To fill the mouth of deep defiance up</A><br>
|
166 |
+
<A NAME=118>And shake the peace and safety of our throne.</A><br>
|
167 |
+
<A NAME=119>And what say you to this? Percy, Northumberland,</A><br>
|
168 |
+
<A NAME=120>The Archbishop's grace of York, Douglas, Mortimer,</A><br>
|
169 |
+
<A NAME=121>Capitulate against us and are up.</A><br>
|
170 |
+
<A NAME=122>But wherefore do I tell these news to thee?</A><br>
|
171 |
+
<A NAME=123>Why, Harry, do I tell thee of my foes,</A><br>
|
172 |
+
<A NAME=124>Which art my near'st and dearest enemy?</A><br>
|
173 |
+
<A NAME=125>Thou that art like enough, through vassal fear,</A><br>
|
174 |
+
<A NAME=126>Base inclination and the start of spleen</A><br>
|
175 |
+
<A NAME=127>To fight against me under Percy's pay,</A><br>
|
176 |
+
<A NAME=128>To dog his heels and curtsy at his frowns,</A><br>
|
177 |
+
<A NAME=129>To show how much thou art degenerate.</A><br>
|
178 |
+
</blockquote>
|
179 |
+
|
180 |
+
<A NAME=speech6><b>PRINCE HENRY</b></a>
|
181 |
+
<blockquote>
|
182 |
+
<A NAME=130>Do not think so; you shall not find it so:</A><br>
|
183 |
+
<A NAME=131>And God forgive them that so much have sway'd</A><br>
|
184 |
+
<A NAME=132>Your majesty's good thoughts away from me!</A><br>
|
185 |
+
<A NAME=133>I will redeem all this on Percy's head</A><br>
|
186 |
+
<A NAME=134>And in the closing of some glorious day</A><br>
|
187 |
+
<A NAME=135>Be bold to tell you that I am your son;</A><br>
|
188 |
+
<A NAME=136>When I will wear a garment all of blood</A><br>
|
189 |
+
<A NAME=137>And stain my favours in a bloody mask,</A><br>
|
190 |
+
<A NAME=138>Which, wash'd away, shall scour my shame with it:</A><br>
|
191 |
+
<A NAME=139>And that shall be the day, whene'er it lights,</A><br>
|
192 |
+
<A NAME=140>That this same child of honour and renown,</A><br>
|
193 |
+
<A NAME=141>This gallant Hotspur, this all-praised knight,</A><br>
|
194 |
+
<A NAME=142>And your unthought-of Harry chance to meet.</A><br>
|
195 |
+
<A NAME=143>For every honour sitting on his helm,</A><br>
|
196 |
+
<A NAME=144>Would they were multitudes, and on my head</A><br>
|
197 |
+
<A NAME=145>My shames redoubled! for the time will come,</A><br>
|
198 |
+
<A NAME=146>That I shall make this northern youth exchange</A><br>
|
199 |
+
<A NAME=147>His glorious deeds for my indignities.</A><br>
|
200 |
+
<A NAME=148>Percy is but my factor, good my lord,</A><br>
|
201 |
+
<A NAME=149>To engross up glorious deeds on my behalf;</A><br>
|
202 |
+
<A NAME=150>And I will call him to so strict account,</A><br>
|
203 |
+
<A NAME=151>That he shall render every glory up,</A><br>
|
204 |
+
<A NAME=152>Yea, even the slightest worship of his time,</A><br>
|
205 |
+
<A NAME=153>Or I will tear the reckoning from his heart.</A><br>
|
206 |
+
<A NAME=154>This, in the name of God, I promise here:</A><br>
|
207 |
+
<A NAME=155>The which if He be pleased I shall perform,</A><br>
|
208 |
+
<A NAME=156>I do beseech your majesty may salve</A><br>
|
209 |
+
<A NAME=157>The long-grown wounds of my intemperance:</A><br>
|
210 |
+
<A NAME=158>If not, the end of life cancels all bands;</A><br>
|
211 |
+
<A NAME=159>And I will die a hundred thousand deaths</A><br>
|
212 |
+
<A NAME=160>Ere break the smallest parcel of this vow.</A><br>
|
213 |
+
</blockquote>
|
214 |
+
|
215 |
+
<A NAME=speech7><b>KING HENRY IV</b></a>
|
216 |
+
<blockquote>
|
217 |
+
<A NAME=161>A hundred thousand rebels die in this:</A><br>
|
218 |
+
<A NAME=162>Thou shalt have charge and sovereign trust herein.</A><br>
|
219 |
+
<p><i>Enter BLUNT</i></p>
|
220 |
+
<A NAME=163>How now, good Blunt? thy looks are full of speed.</A><br>
|
221 |
+
</blockquote>
|
222 |
+
|
223 |
+
<A NAME=speech8><b>SIR WALTER BLUNT</b></a>
|
224 |
+
<blockquote>
|
225 |
+
<A NAME=164>So hath the business that I come to speak of.</A><br>
|
226 |
+
<A NAME=165>Lord Mortimer of Scotland hath sent word</A><br>
|
227 |
+
<A NAME=166>That Douglas and the English rebels met</A><br>
|
228 |
+
<A NAME=167>The eleventh of this month at Shrewsbury</A><br>
|
229 |
+
<A NAME=168>A mighty and a fearful head they are,</A><br>
|
230 |
+
<A NAME=169>If promises be kept on every hand,</A><br>
|
231 |
+
<A NAME=170>As ever offer'd foul play in the state.</A><br>
|
232 |
+
</blockquote>
|
233 |
+
|
234 |
+
<A NAME=speech9><b>KING HENRY IV</b></a>
|
235 |
+
<blockquote>
|
236 |
+
<A NAME=171>The Earl of Westmoreland set forth to-day;</A><br>
|
237 |
+
<A NAME=172>With him my son, Lord John of Lancaster;</A><br>
|
238 |
+
<A NAME=173>For this advertisement is five days old:</A><br>
|
239 |
+
<A NAME=174>On Wednesday next, Harry, you shall set forward;</A><br>
|
240 |
+
<A NAME=175>On Thursday we ourselves will march: our meeting</A><br>
|
241 |
+
<A NAME=176>Is Bridgenorth: and, Harry, you shall march</A><br>
|
242 |
+
<A NAME=177>Through Gloucestershire; by which account,</A><br>
|
243 |
+
<A NAME=178>Our business valued, some twelve days hence</A><br>
|
244 |
+
<A NAME=179>Our general forces at Bridgenorth shall meet.</A><br>
|
245 |
+
<A NAME=180>Our hands are full of business: let's away;</A><br>
|
246 |
+
<A NAME=181>Advantage feeds him fat, while men delay.</A><br>
|
247 |
+
<p><i>Exeunt</i></p>
|
248 |
+
</blockquote>
|
249 |
+
|
250 |
+
<A NAME=speech10><b>Scene III</b></a>
|
251 |
+
<blockquote>
|
252 |
+
<A NAME=182>Eastcheap. The Boar's-Head Tavern.</A><br>
|
253 |
+
<p><i>Enter FALSTAFF and BARDOLPH</i></p>
|
254 |
+
</blockquote>
|
255 |
+
|
256 |
+
<A NAME=speech11><b>FALSTAFF</b></a>
|
257 |
+
<blockquote>
|
258 |
+
<A NAME=183>Bardolph, am I not fallen away vilely since this last</A><br>
|
259 |
+
<A NAME=184>action? do I not bate? do I not dwindle? Why my</A><br>
|
260 |
+
<A NAME=185>skin hangs about me like an like an old lady's loose</A><br>
|
261 |
+
<A NAME=186>gown; I am withered like an old apple-john. Well,</A><br>
|
262 |
+
<A NAME=187>I'll repent, and that suddenly, while I am in some</A><br>
|
263 |
+
<A NAME=188>liking; I shall be out of heart shortly, and then I</A><br>
|
264 |
+
<A NAME=189>shall have no strength to repent. An I have not</A><br>
|
265 |
+
<A NAME=190>forgotten what the inside of a church is made of, I</A><br>
|
266 |
+
<A NAME=191>am a peppercorn, a brewer's horse: the inside of a</A><br>
|
267 |
+
<A NAME=192>church! Company, villanous company, hath been the</A><br>
|
268 |
+
<A NAME=193>spoil of me.</A><br>
|
269 |
+
</blockquote>
|
270 |
+
|
271 |
+
<A NAME=speech12><b>BARDOLPH</b></a>
|
272 |
+
<blockquote>
|
273 |
+
<A NAME=194>Sir John, you are so fretful, you cannot live long.</A><br>
|
274 |
+
</blockquote>
|
275 |
+
|
276 |
+
<A NAME=speech13><b>FALSTAFF</b></a>
|
277 |
+
<blockquote>
|
278 |
+
<A NAME=195>Why, there is it: come sing me a bawdy song; make</A><br>
|
279 |
+
<A NAME=196>me merry. I was as virtuously given as a gentleman</A><br>
|
280 |
+
<A NAME=197>need to be; virtuous enough; swore little; diced not</A><br>
|
281 |
+
<A NAME=198>above seven times a week; went to a bawdy-house once</A><br>
|
282 |
+
<A NAME=199>in a quarter--of an hour; paid money that I</A><br>
|
283 |
+
<A NAME=200>borrowed, three of four times; lived well and in</A><br>
|
284 |
+
<A NAME=201>good compass: and now I live out of all order, out</A><br>
|
285 |
+
<A NAME=202>of all compass.</A><br>
|
286 |
+
</blockquote>
|
287 |
+
|
288 |
+
<A NAME=speech14><b>BARDOLPH</b></a>
|
289 |
+
<blockquote>
|
290 |
+
<A NAME=203>Why, you are so fat, Sir John, that you must needs</A><br>
|
291 |
+
<A NAME=204>be out of all compass, out of all reasonable</A><br>
|
292 |
+
<A NAME=205>compass, Sir John.</A><br>
|
293 |
+
</blockquote>
|
294 |
+
|
295 |
+
<A NAME=speech15><b>FALSTAFF</b></a>
|
296 |
+
<blockquote>
|
297 |
+
<A NAME=206>Do thou amend thy face, and I'll amend my life:</A><br>
|
298 |
+
<A NAME=207>thou art our admiral, thou bearest the lantern in</A><br>
|
299 |
+
<A NAME=208>the poop, but 'tis in the nose of thee; thou art the</A><br>
|
300 |
+
<A NAME=209>Knight of the Burning Lamp.</A><br>
|
301 |
+
</blockquote>
|
302 |
+
|
303 |
+
<A NAME=speech16><b>BARDOLPH</b></a>
|
304 |
+
<blockquote>
|
305 |
+
<A NAME=210>Why, Sir John, my face does you no harm.</A><br>
|
306 |
+
</blockquote>
|
307 |
+
|
308 |
+
<A NAME=speech17><b>FALSTAFF</b></a>
|
309 |
+
<blockquote>
|
310 |
+
<A NAME=211>No, I'll be sworn; I make as good use of it as many</A><br>
|
311 |
+
<A NAME=212>a man doth of a Death's-head or a memento mori: I</A><br>
|
312 |
+
<A NAME=213>never see thy face but I think upon hell-fire and</A><br>
|
313 |
+
<A NAME=214>Dives that lived in purple; for there he is in his</A><br>
|
314 |
+
<A NAME=215>robes, burning, burning. If thou wert any way</A><br>
|
315 |
+
<A NAME=216>given to virtue, I would swear by thy face; my oath</A><br>
|
316 |
+
<A NAME=217>should be 'By this fire, that's God's angel:' but</A><br>
|
317 |
+
<A NAME=218>thou art altogether given over; and wert indeed, but</A><br>
|
318 |
+
<A NAME=219>for the light in thy face, the son of utter</A><br>
|
319 |
+
<A NAME=220>darkness. When thou rannest up Gadshill in the</A><br>
|
320 |
+
<A NAME=221>night to catch my horse, if I did not think thou</A><br>
|
321 |
+
<A NAME=222>hadst been an ignis fatuus or a ball of wildfire,</A><br>
|
322 |
+
<A NAME=223>there's no purchase in money. O, thou art a</A><br>
|
323 |
+
<A NAME=224>perpetual triumph, an everlasting bonfire-light!</A><br>
|
324 |
+
<A NAME=225>Thou hast saved me a thousand marks in links and</A><br>
|
325 |
+
<A NAME=226>torches, walking with thee in the night betwixt</A><br>
|
326 |
+
<A NAME=227>tavern and tavern: but the sack that thou hast</A><br>
|
327 |
+
<A NAME=228>drunk me would have bought me lights as good cheap</A><br>
|
328 |
+
<A NAME=229>at the dearest chandler's in Europe. I have</A><br>
|
329 |
+
<A NAME=230>maintained that salamander of yours with fire any</A><br>
|
330 |
+
<A NAME=231>time this two and thirty years; God reward me for</A><br>
|
331 |
+
<A NAME=232>it!</A><br>
|
332 |
+
</blockquote>
|
333 |
+
|
334 |
+
<A NAME=speech18><b>BARDOLPH</b></a>
|
335 |
+
<blockquote>
|
336 |
+
<A NAME=233>'Sblood, I would my face were in your belly!</A><br>
|
337 |
+
</blockquote>
|
338 |
+
|
339 |
+
<A NAME=speech19><b>FALSTAFF</b></a>
|
340 |
+
<blockquote>
|
341 |
+
<A NAME=234>God-a-mercy! so should I be sure to be heart-burned.</A><br>
|
342 |
+
<p><i>Enter Hostess</i></p>
|
343 |
+
<A NAME=235>How now, Dame Partlet the hen! have you inquired</A><br>
|
344 |
+
<A NAME=236>yet who picked my pocket?</A><br>
|
345 |
+
</blockquote>
|
346 |
+
|
347 |
+
<A NAME=speech20><b>Hostess</b></a>
|
348 |
+
<blockquote>
|
349 |
+
<A NAME=237>Why, Sir John, what do you think, Sir John? do you</A><br>
|
350 |
+
<A NAME=238>think I keep thieves in my house? I have searched,</A><br>
|
351 |
+
<A NAME=239>I have inquired, so has my husband, man by man, boy</A><br>
|
352 |
+
<A NAME=240>by boy, servant by servant: the tithe of a hair</A><br>
|
353 |
+
<A NAME=241>was never lost in my house before.</A><br>
|
354 |
+
</blockquote>
|
355 |
+
|
356 |
+
<A NAME=speech21><b>FALSTAFF</b></a>
|
357 |
+
<blockquote>
|
358 |
+
<A NAME=242>Ye lie, hostess: Bardolph was shaved and lost many</A><br>
|
359 |
+
<A NAME=243>a hair; and I'll be sworn my pocket was picked. Go</A><br>
|
360 |
+
<A NAME=244>to, you are a woman, go.</A><br>
|
361 |
+
</blockquote>
|
362 |
+
|
363 |
+
<A NAME=speech22><b>Hostess</b></a>
|
364 |
+
<blockquote>
|
365 |
+
<A NAME=245>Who, I? no; I defy thee: God's light, I was never</A><br>
|
366 |
+
<A NAME=246>called so in mine own house before.</A><br>
|
367 |
+
</blockquote>
|
368 |
+
|
369 |
+
<A NAME=speech23><b>FALSTAFF</b></a>
|
370 |
+
<blockquote>
|
371 |
+
<A NAME=247>Go to, I know you well enough.</A><br>
|
372 |
+
</blockquote>
|
373 |
+
|
374 |
+
<A NAME=speech24><b>Hostess</b></a>
|
375 |
+
<blockquote>
|
376 |
+
<A NAME=248>No, Sir John; You do not know me, Sir John. I know</A><br>
|
377 |
+
<A NAME=249>you, Sir John: you owe me money, Sir John; and now</A><br>
|
378 |
+
<A NAME=250>you pick a quarrel to beguile me of it: I bought</A><br>
|
379 |
+
<A NAME=251>you a dozen of shirts to your back.</A><br>
|
380 |
+
</blockquote>
|
381 |
+
|
382 |
+
<A NAME=speech25><b>FALSTAFF</b></a>
|
383 |
+
<blockquote>
|
384 |
+
<A NAME=252>Dowlas, filthy dowlas: I have given them away to</A><br>
|
385 |
+
<A NAME=253>bakers' wives, and they have made bolters of them.</A><br>
|
386 |
+
</blockquote>
|
387 |
+
|
388 |
+
<A NAME=speech26><b>Hostess</b></a>
|
389 |
+
<blockquote>
|
390 |
+
<A NAME=254>Now, as I am a true woman, holland of eight</A><br>
|
391 |
+
<A NAME=255>shillings an ell. You owe money here besides, Sir</A><br>
|
392 |
+
<A NAME=256>John, for your diet and by-drinkings, and money lent</A><br>
|
393 |
+
<A NAME=257>you, four and twenty pound.</A><br>
|
394 |
+
</blockquote>
|
395 |
+
|
396 |
+
<A NAME=speech27><b>FALSTAFF</b></a>
|
397 |
+
<blockquote>
|
398 |
+
<A NAME=258>He had his part of it; let him pay.</A><br>
|
399 |
+
</blockquote>
|
400 |
+
|
401 |
+
<A NAME=speech28><b>Hostess</b></a>
|
402 |
+
<blockquote>
|
403 |
+
<A NAME=259>He? alas, he is poor; he hath nothing.</A><br>
|
404 |
+
</blockquote>
|
405 |
+
|
406 |
+
<A NAME=speech29><b>FALSTAFF</b></a>
|
407 |
+
<blockquote>
|
408 |
+
<A NAME=260>How! poor? look upon his face; what call you rich?</A><br>
|
409 |
+
<A NAME=261>let them coin his nose, let them coin his cheeks:</A><br>
|
410 |
+
<A NAME=262>Ill not pay a denier. What, will you make a younker</A><br>
|
411 |
+
<A NAME=263>of me? shall I not take mine case in mine inn but I</A><br>
|
412 |
+
<A NAME=264>shall have my pocket picked? I have lost a</A><br>
|
413 |
+
<A NAME=265>seal-ring of my grandfather's worth forty mark.</A><br>
|
414 |
+
</blockquote>
|
415 |
+
|
416 |
+
<A NAME=speech30><b>Hostess</b></a>
|
417 |
+
<blockquote>
|
418 |
+
<A NAME=266>O Jesu, I have heard the prince tell him, I know not</A><br>
|
419 |
+
<A NAME=267>how oft, that ring was copper!</A><br>
|
420 |
+
</blockquote>
|
421 |
+
|
422 |
+
<A NAME=speech31><b>FALSTAFF</b></a>
|
423 |
+
<blockquote>
|
424 |
+
<A NAME=268>How! the prince is a Jack, a sneak-cup: 'sblood, an</A><br>
|
425 |
+
<A NAME=269>he were here, I would cudgel him like a dog, if he</A><br>
|
426 |
+
<A NAME=270>would say so.</A><br>
|
427 |
+
<p><i>Enter PRINCE HENRY and PETO, marching, and FALSTAFF meets them playing on his truncheon like a life</i></p>
|
428 |
+
<A NAME=271>How now, lad! is the wind in that door, i' faith?</A><br>
|
429 |
+
<A NAME=272>must we all march?</A><br>
|
430 |
+
</blockquote>
|
431 |
+
|
432 |
+
<A NAME=speech32><b>BARDOLPH</b></a>
|
433 |
+
<blockquote>
|
434 |
+
<A NAME=273>Yea, two and two, Newgate fashion.</A><br>
|
435 |
+
</blockquote>
|
436 |
+
|
437 |
+
<A NAME=speech33><b>Hostess</b></a>
|
438 |
+
<blockquote>
|
439 |
+
<A NAME=274>My lord, I pray you, hear me.</A><br>
|
440 |
+
</blockquote>
|
441 |
+
|
442 |
+
<A NAME=speech34><b>PRINCE HENRY</b></a>
|
443 |
+
<blockquote>
|
444 |
+
<A NAME=275>What sayest thou, Mistress Quickly? How doth thy</A><br>
|
445 |
+
<A NAME=276>husband? I love him well; he is an honest man.</A><br>
|
446 |
+
</blockquote>
|
447 |
+
|
448 |
+
<A NAME=speech35><b>Hostess</b></a>
|
449 |
+
<blockquote>
|
450 |
+
<A NAME=277>Good my lord, hear me.</A><br>
|
451 |
+
</blockquote>
|
452 |
+
|
453 |
+
<A NAME=speech36><b>FALSTAFF</b></a>
|
454 |
+
<blockquote>
|
455 |
+
<A NAME=278>Prithee, let her alone, and list to me.</A><br>
|
456 |
+
</blockquote>
|
457 |
+
|
458 |
+
<A NAME=speech37><b>PRINCE HENRY</b></a>
|
459 |
+
<blockquote>
|
460 |
+
<A NAME=279>What sayest thou, Jack?</A><br>
|
461 |
+
</blockquote>
|
462 |
+
|
463 |
+
<A NAME=speech38><b>FALSTAFF</b></a>
|
464 |
+
<blockquote>
|
465 |
+
<A NAME=280>The other night I fell asleep here behind the arras</A><br>
|
466 |
+
<A NAME=281>and had my pocket picked: this house is turned</A><br>
|
467 |
+
<A NAME=282>bawdy-house; they pick pockets.</A><br>
|
468 |
+
</blockquote>
|
469 |
+
|
470 |
+
<A NAME=speech39><b>PRINCE HENRY</b></a>
|
471 |
+
<blockquote>
|
472 |
+
<A NAME=283>What didst thou lose, Jack?</A><br>
|
473 |
+
</blockquote>
|
474 |
+
|
475 |
+
<A NAME=speech40><b>FALSTAFF</b></a>
|
476 |
+
<blockquote>
|
477 |
+
<A NAME=284>Wilt thou believe me, Hal? three or four bonds of</A><br>
|
478 |
+
<A NAME=285>forty pound apiece, and a seal-ring of my</A><br>
|
479 |
+
<A NAME=286>grandfather's.</A><br>
|
480 |
+
</blockquote>
|
481 |
+
|
482 |
+
<A NAME=speech41><b>PRINCE HENRY</b></a>
|
483 |
+
<blockquote>
|
484 |
+
<A NAME=287>A trifle, some eight-penny matter.</A><br>
|
485 |
+
</blockquote>
|
486 |
+
|
487 |
+
<A NAME=speech42><b>Hostess</b></a>
|
488 |
+
<blockquote>
|
489 |
+
<A NAME=288>So I told him, my lord; and I said I heard your</A><br>
|
490 |
+
<A NAME=289>grace say so: and, my lord, he speaks most vilely</A><br>
|
491 |
+
<A NAME=290>of you, like a foul-mouthed man as he is; and said</A><br>
|
492 |
+
<A NAME=291>he would cudgel you.</A><br>
|
493 |
+
</blockquote>
|
494 |
+
|
495 |
+
<A NAME=speech43><b>PRINCE HENRY</b></a>
|
496 |
+
<blockquote>
|
497 |
+
<A NAME=292>What! he did not?</A><br>
|
498 |
+
</blockquote>
|
499 |
+
|
500 |
+
<A NAME=speech44><b>Hostess</b></a>
|
501 |
+
<blockquote>
|
502 |
+
<A NAME=293>There's neither faith, truth, nor womanhood in me else.</A><br>
|
503 |
+
</blockquote>
|
504 |
+
|
505 |
+
<A NAME=speech45><b>FALSTAFF</b></a>
|
506 |
+
<blockquote>
|
507 |
+
<A NAME=294>There's no more faith in thee than in a stewed</A><br>
|
508 |
+
<A NAME=295>prune; nor no more truth in thee than in a drawn</A><br>
|
509 |
+
<A NAME=296>fox; and for womanhood, Maid Marian may be the</A><br>
|
510 |
+
<A NAME=297>deputy's wife of the ward to thee. Go, you thing,</A><br>
|
511 |
+
<A NAME=298>go</A><br>
|
512 |
+
</blockquote>
|
513 |
+
|
514 |
+
<A NAME=speech46><b>Hostess</b></a>
|
515 |
+
<blockquote>
|
516 |
+
<A NAME=299>Say, what thing? what thing?</A><br>
|
517 |
+
</blockquote>
|
518 |
+
|
519 |
+
<A NAME=speech47><b>FALSTAFF</b></a>
|
520 |
+
<blockquote>
|
521 |
+
<A NAME=300>What thing! why, a thing to thank God on.</A><br>
|
522 |
+
</blockquote>
|
523 |
+
|
524 |
+
<A NAME=speech48><b>Hostess</b></a>
|
525 |
+
<blockquote>
|
526 |
+
<A NAME=301>I am no thing to thank God on, I would thou</A><br>
|
527 |
+
<A NAME=302>shouldst know it; I am an honest man's wife: and,</A><br>
|
528 |
+
<A NAME=303>setting thy knighthood aside, thou art a knave to</A><br>
|
529 |
+
<A NAME=304>call me so.</A><br>
|
530 |
+
</blockquote>
|
531 |
+
|
532 |
+
<A NAME=speech49><b>FALSTAFF</b></a>
|
533 |
+
<blockquote>
|
534 |
+
<A NAME=305>Setting thy womanhood aside, thou art a beast to say</A><br>
|
535 |
+
<A NAME=306>otherwise.</A><br>
|
536 |
+
</blockquote>
|
537 |
+
|
538 |
+
<A NAME=speech50><b>Hostess</b></a>
|
539 |
+
<blockquote>
|
540 |
+
<A NAME=307>Say, what beast, thou knave, thou?</A><br>
|
541 |
+
</blockquote>
|
542 |
+
|
543 |
+
<A NAME=speech51><b>FALSTAFF</b></a>
|
544 |
+
<blockquote>
|
545 |
+
<A NAME=308>What beast! why, an otter.</A><br>
|
546 |
+
</blockquote>
|
547 |
+
|
548 |
+
<A NAME=speech52><b>PRINCE HENRY</b></a>
|
549 |
+
<blockquote>
|
550 |
+
<A NAME=309>An otter, Sir John! Why an otter?</A><br>
|
551 |
+
</blockquote>
|
552 |
+
|
553 |
+
<A NAME=speech53><b>FALSTAFF</b></a>
|
554 |
+
<blockquote>
|
555 |
+
<A NAME=310>Why, she's neither fish nor flesh; a man knows not</A><br>
|
556 |
+
<A NAME=311>where to have her.</A><br>
|
557 |
+
</blockquote>
|
558 |
+
|
559 |
+
<A NAME=speech54><b>Hostess</b></a>
|
560 |
+
<blockquote>
|
561 |
+
<A NAME=312>Thou art an unjust man in saying so: thou or any</A><br>
|
562 |
+
<A NAME=313>man knows where to have me, thou knave, thou!</A><br>
|
563 |
+
</blockquote>
|
564 |
+
|
565 |
+
<A NAME=speech55><b>PRINCE HENRY</b></a>
|
566 |
+
<blockquote>
|
567 |
+
<A NAME=314>Thou sayest true, hostess; and he slanders thee most grossly.</A><br>
|
568 |
+
</blockquote>
|
569 |
+
|
570 |
+
<A NAME=speech56><b>Hostess</b></a>
|
571 |
+
<blockquote>
|
572 |
+
<A NAME=315>So he doth you, my lord; and said this other day you</A><br>
|
573 |
+
<A NAME=316>ought him a thousand pound.</A><br>
|
574 |
+
</blockquote>
|
575 |
+
|
576 |
+
<A NAME=speech57><b>PRINCE HENRY</b></a>
|
577 |
+
<blockquote>
|
578 |
+
<A NAME=317>Sirrah, do I owe you a thousand pound?</A><br>
|
579 |
+
</blockquote>
|
580 |
+
|
581 |
+
<A NAME=speech58><b>FALSTAFF</b></a>
|
582 |
+
<blockquote>
|
583 |
+
<A NAME=318>A thousand pound, Ha! a million: thy love is worth</A><br>
|
584 |
+
<A NAME=319>a million: thou owest me thy love.</A><br>
|
585 |
+
</blockquote>
|
586 |
+
|
587 |
+
<A NAME=speech59><b>Hostess</b></a>
|
588 |
+
<blockquote>
|
589 |
+
<A NAME=320>Nay, my lord, he called you Jack, and said he would</A><br>
|
590 |
+
<A NAME=321>cudgel you.</A><br>
|
591 |
+
</blockquote>
|
592 |
+
|
593 |
+
<A NAME=speech60><b>FALSTAFF</b></a>
|
594 |
+
<blockquote>
|
595 |
+
<A NAME=322>Did I, Bardolph?</A><br>
|
596 |
+
</blockquote>
|
597 |
+
|
598 |
+
<A NAME=speech61><b>BARDOLPH</b></a>
|
599 |
+
<blockquote>
|
600 |
+
<A NAME=323>Indeed, Sir John, you said so.</A><br>
|
601 |
+
</blockquote>
|
602 |
+
|
603 |
+
<A NAME=speech62><b>FALSTAFF</b></a>
|
604 |
+
<blockquote>
|
605 |
+
<A NAME=324>Yea, if he said my ring was copper.</A><br>
|
606 |
+
</blockquote>
|
607 |
+
|
608 |
+
<A NAME=speech63><b>PRINCE HENRY</b></a>
|
609 |
+
<blockquote>
|
610 |
+
<A NAME=325>I say 'tis copper: darest thou be as good as thy word now?</A><br>
|
611 |
+
</blockquote>
|
612 |
+
|
613 |
+
<A NAME=speech64><b>FALSTAFF</b></a>
|
614 |
+
<blockquote>
|
615 |
+
<A NAME=326>Why, Hal, thou knowest, as thou art but man, I dare:</A><br>
|
616 |
+
<A NAME=327>but as thou art prince, I fear thee as I fear the</A><br>
|
617 |
+
<A NAME=328>roaring of a lion's whelp.</A><br>
|
618 |
+
</blockquote>
|
619 |
+
|
620 |
+
<A NAME=speech65><b>PRINCE HENRY</b></a>
|
621 |
+
<blockquote>
|
622 |
+
<A NAME=329>And why not as the lion?</A><br>
|
623 |
+
</blockquote>
|
624 |
+
|
625 |
+
<A NAME=speech66><b>FALSTAFF</b></a>
|
626 |
+
<blockquote>
|
627 |
+
<A NAME=330>The king is to be feared as the lion: dost thou</A><br>
|
628 |
+
<A NAME=331>think I'll fear thee as I fear thy father? nay, an</A><br>
|
629 |
+
<A NAME=332>I do, I pray God my girdle break.</A><br>
|
630 |
+
</blockquote>
|
631 |
+
|
632 |
+
<A NAME=speech67><b>PRINCE HENRY</b></a>
|
633 |
+
<blockquote>
|
634 |
+
<A NAME=333>O, if it should, how would thy guts fall about thy</A><br>
|
635 |
+
<A NAME=334>knees! But, sirrah, there's no room for faith,</A><br>
|
636 |
+
<A NAME=335>truth, nor honesty in this bosom of thine; it is all</A><br>
|
637 |
+
<A NAME=336>filled up with guts and midriff. Charge an honest</A><br>
|
638 |
+
<A NAME=337>woman with picking thy pocket! why, thou whoreson,</A><br>
|
639 |
+
<A NAME=338>impudent, embossed rascal, if there were anything in</A><br>
|
640 |
+
<A NAME=339>thy pocket but tavern-reckonings, memorandums of</A><br>
|
641 |
+
<A NAME=340>bawdy-houses, and one poor penny-worth of</A><br>
|
642 |
+
<A NAME=341>sugar-candy to make thee long-winded, if thy pocket</A><br>
|
643 |
+
<A NAME=342>were enriched with any other injuries but these, I</A><br>
|
644 |
+
<A NAME=343>am a villain: and yet you will stand to if; you will</A><br>
|
645 |
+
<A NAME=344>not pocket up wrong: art thou not ashamed?</A><br>
|
646 |
+
</blockquote>
|
647 |
+
|
648 |
+
<A NAME=speech68><b>FALSTAFF</b></a>
|
649 |
+
<blockquote>
|
650 |
+
<A NAME=345>Dost thou hear, Hal? thou knowest in the state of</A><br>
|
651 |
+
<A NAME=346>innocency Adam fell; and what should poor Jack</A><br>
|
652 |
+
<A NAME=347>Falstaff do in the days of villany? Thou seest I</A><br>
|
653 |
+
<A NAME=348>have more flesh than another man, and therefore more</A><br>
|
654 |
+
<A NAME=349>frailty. You confess then, you picked my pocket?</A><br>
|
655 |
+
</blockquote>
|
656 |
+
|
657 |
+
<A NAME=speech69><b>PRINCE HENRY</b></a>
|
658 |
+
<blockquote>
|
659 |
+
<A NAME=350>It appears so by the story.</A><br>
|
660 |
+
</blockquote>
|
661 |
+
|
662 |
+
<A NAME=speech70><b>FALSTAFF</b></a>
|
663 |
+
<blockquote>
|
664 |
+
<A NAME=351>Hostess, I forgive thee: go, make ready breakfast;</A><br>
|
665 |
+
<A NAME=352>love thy husband, look to thy servants, cherish thy</A><br>
|
666 |
+
<A NAME=353>guests: thou shalt find me tractable to any honest</A><br>
|
667 |
+
<A NAME=354>reason: thou seest I am pacified still. Nay,</A><br>
|
668 |
+
<A NAME=355>prithee, be gone.</A><br>
|
669 |
+
<p><i>Exit Hostess</i></p>
|
670 |
+
<A NAME=356>Now Hal, to the news at court: for the robbery,</A><br>
|
671 |
+
<A NAME=357>lad, how is that answered?</A><br>
|
672 |
+
</blockquote>
|
673 |
+
|
674 |
+
<A NAME=speech71><b>PRINCE HENRY</b></a>
|
675 |
+
<blockquote>
|
676 |
+
<A NAME=358>O, my sweet beef, I must still be good angel to</A><br>
|
677 |
+
<A NAME=359>thee: the money is paid back again.</A><br>
|
678 |
+
</blockquote>
|
679 |
+
|
680 |
+
<A NAME=speech72><b>FALSTAFF</b></a>
|
681 |
+
<blockquote>
|
682 |
+
<A NAME=360>O, I do not like that paying back; 'tis a double labour.</A><br>
|
683 |
+
</blockquote>
|
684 |
+
|
685 |
+
<A NAME=speech73><b>PRINCE HENRY</b></a>
|
686 |
+
<blockquote>
|
687 |
+
<A NAME=361>I am good friends with my father and may do any thing.</A><br>
|
688 |
+
</blockquote>
|
689 |
+
|
690 |
+
<A NAME=speech74><b>FALSTAFF</b></a>
|
691 |
+
<blockquote>
|
692 |
+
<A NAME=362>Rob me the exchequer the first thing thou doest, and</A><br>
|
693 |
+
<A NAME=363>do it with unwashed hands too.</A><br>
|
694 |
+
</blockquote>
|
695 |
+
|
696 |
+
<A NAME=speech75><b>BARDOLPH</b></a>
|
697 |
+
<blockquote>
|
698 |
+
<A NAME=364>Do, my lord.</A><br>
|
699 |
+
</blockquote>
|
700 |
+
|
701 |
+
<A NAME=speech76><b>PRINCE HENRY</b></a>
|
702 |
+
<blockquote>
|
703 |
+
<A NAME=365>I have procured thee, Jack, a charge of foot.</A><br>
|
704 |
+
</blockquote>
|
705 |
+
|
706 |
+
<A NAME=speech77><b>FALSTAFF</b></a>
|
707 |
+
<blockquote>
|
708 |
+
<A NAME=366>I would it had been of horse. Where shall I find</A><br>
|
709 |
+
<A NAME=367>one that can steal well? O for a fine thief, of the</A><br>
|
710 |
+
<A NAME=368>age of two and twenty or thereabouts! I am</A><br>
|
711 |
+
<A NAME=369>heinously unprovided. Well, God be thanked for</A><br>
|
712 |
+
<A NAME=370>these rebels, they offend none but the virtuous: I</A><br>
|
713 |
+
<A NAME=371>laud them, I praise them.</A><br>
|
714 |
+
</blockquote>
|
715 |
+
|
716 |
+
<A NAME=speech78><b>PRINCE HENRY</b></a>
|
717 |
+
<blockquote>
|
718 |
+
<A NAME=372>Bardolph!</A><br>
|
719 |
+
</blockquote>
|
720 |
+
|
721 |
+
<A NAME=speech79><b>BARDOLPH</b></a>
|
722 |
+
<blockquote>
|
723 |
+
<A NAME=373>My lord?</A><br>
|
724 |
+
</blockquote>
|
725 |
+
|
726 |
+
<A NAME=speech80><b>PRINCE HENRY</b></a>
|
727 |
+
<blockquote>
|
728 |
+
<A NAME=374>Go bear this letter to Lord John of Lancaster, to my</A><br>
|
729 |
+
<A NAME=375>brother John; this to my Lord of Westmoreland.</A><br>
|
730 |
+
<p><i>Exit Bardolph</i></p>
|
731 |
+
<A NAME=376>Go, Peto, to horse, to horse; for thou and I have</A><br>
|
732 |
+
<A NAME=377>thirty miles to ride yet ere dinner time.</A><br>
|
733 |
+
<p><i>Exit Peto</i></p>
|
734 |
+
<A NAME=378>Jack, meet me to-morrow in the temple hall at two</A><br>
|
735 |
+
<A NAME=379>o'clock in the afternoon.</A><br>
|
736 |
+
<A NAME=380>There shalt thou know thy charge; and there receive</A><br>
|
737 |
+
<A NAME=381>Money and order for their furniture.</A><br>
|
738 |
+
<A NAME=382>The land is burning; Percy stands on high;</A><br>
|
739 |
+
<A NAME=383>And either we or they must lower lie.</A><br>
|
740 |
+
<p><i>Exit PRINCE HENRY</i></p>
|
741 |
+
</blockquote>
|
742 |
+
|
743 |
+
<A NAME=speech81><b>FALSTAFF</b></a>
|
744 |
+
<blockquote>
|
745 |
+
<A NAME=384>Rare words! brave world! Hostess, my breakfast, come!</A><br>
|
746 |
+
<A NAME=385>O, I could wish this tavern were my drum!</A><br>
|
747 |
+
<p><i>Exit</i></p>
|
748 |
+
<table width="100%" bgcolor="#CCF6F6">
|
749 |
+
<tr><td class="nav" align="center">
|
750 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
751 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
752 |
+
| Act 3, Scene 2
|
753 |
+
<br>
|
754 |
+
<a href="1henryiv.3.1.html">Previous scene</A>
|
755 |
+
| <a href="1henryiv.4.1.html">Next scene</A>
|
756 |
+
</table>
|
757 |
+
|
758 |
+
</body>
|
759 |
+
</html>
|
760 |
+
|
761 |
+
|
data/1henryiv.4.1.html
ADDED
@@ -0,0 +1,320 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. The rebel camp near Shrewsbury.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 4, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.3.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.4.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. The rebel camp near Shrewsbury.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter HOTSPUR, WORCESTER, and DOUGLAS</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>HOTSPUR</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Well said, my noble Scot: if speaking truth</A><br>
|
33 |
+
<A NAME=2>In this fine age were not thought flattery,</A><br>
|
34 |
+
<A NAME=3>Such attribution should the Douglas have,</A><br>
|
35 |
+
<A NAME=4>As not a soldier of this season's stamp</A><br>
|
36 |
+
<A NAME=5>Should go so general current through the world.</A><br>
|
37 |
+
<A NAME=6>By God, I cannot flatter; I do defy</A><br>
|
38 |
+
<A NAME=7>The tongues of soothers; but a braver place</A><br>
|
39 |
+
<A NAME=8>In my heart's love hath no man than yourself:</A><br>
|
40 |
+
<A NAME=9>Nay, task me to my word; approve me, lord.</A><br>
|
41 |
+
</blockquote>
|
42 |
+
|
43 |
+
<A NAME=speech2><b>EARL OF DOUGLAS</b></a>
|
44 |
+
<blockquote>
|
45 |
+
<A NAME=10>Thou art the king of honour:</A><br>
|
46 |
+
<A NAME=11>No man so potent breathes upon the ground</A><br>
|
47 |
+
<A NAME=12>But I will beard him.</A><br>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech3><b>HOTSPUR</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=13>Do so, and 'tis well.</A><br>
|
53 |
+
<p><i>Enter a Messenger with letters</i></p>
|
54 |
+
<A NAME=14>What letters hast thou there?--I can but thank you.</A><br>
|
55 |
+
</blockquote>
|
56 |
+
|
57 |
+
<A NAME=speech4><b>Messenger</b></a>
|
58 |
+
<blockquote>
|
59 |
+
<A NAME=15>These letters come from your father.</A><br>
|
60 |
+
</blockquote>
|
61 |
+
|
62 |
+
<A NAME=speech5><b>HOTSPUR</b></a>
|
63 |
+
<blockquote>
|
64 |
+
<A NAME=16>Letters from him! why comes he not himself?</A><br>
|
65 |
+
</blockquote>
|
66 |
+
|
67 |
+
<A NAME=speech6><b>Messenger</b></a>
|
68 |
+
<blockquote>
|
69 |
+
<A NAME=17>He cannot come, my lord; he is grievous sick.</A><br>
|
70 |
+
</blockquote>
|
71 |
+
|
72 |
+
<A NAME=speech7><b>HOTSPUR</b></a>
|
73 |
+
<blockquote>
|
74 |
+
<A NAME=18>'Zounds! how has he the leisure to be sick</A><br>
|
75 |
+
<A NAME=19>In such a rustling time? Who leads his power?</A><br>
|
76 |
+
<A NAME=20>Under whose government come they along?</A><br>
|
77 |
+
</blockquote>
|
78 |
+
|
79 |
+
<A NAME=speech8><b>Messenger</b></a>
|
80 |
+
<blockquote>
|
81 |
+
<A NAME=21>His letters bear his mind, not I, my lord.</A><br>
|
82 |
+
</blockquote>
|
83 |
+
|
84 |
+
<A NAME=speech9><b>EARL OF WORCESTER</b></a>
|
85 |
+
<blockquote>
|
86 |
+
<A NAME=22>I prithee, tell me, doth he keep his bed?</A><br>
|
87 |
+
</blockquote>
|
88 |
+
|
89 |
+
<A NAME=speech10><b>Messenger</b></a>
|
90 |
+
<blockquote>
|
91 |
+
<A NAME=23>He did, my lord, four days ere I set forth;</A><br>
|
92 |
+
<A NAME=24>And at the time of my departure thence</A><br>
|
93 |
+
<A NAME=25>He was much fear'd by his physicians.</A><br>
|
94 |
+
</blockquote>
|
95 |
+
|
96 |
+
<A NAME=speech11><b>EARL OF WORCESTER</b></a>
|
97 |
+
<blockquote>
|
98 |
+
<A NAME=26>I would the state of time had first been whole</A><br>
|
99 |
+
<A NAME=27>Ere he by sickness had been visited:</A><br>
|
100 |
+
<A NAME=28>His health was never better worth than now.</A><br>
|
101 |
+
</blockquote>
|
102 |
+
|
103 |
+
<A NAME=speech12><b>HOTSPUR</b></a>
|
104 |
+
<blockquote>
|
105 |
+
<A NAME=29>Sick now! droop now! this sickness doth infect</A><br>
|
106 |
+
<A NAME=30>The very life-blood of our enterprise;</A><br>
|
107 |
+
<A NAME=31>'Tis catching hither, even to our camp.</A><br>
|
108 |
+
<A NAME=32>He writes me here, that inward sickness--</A><br>
|
109 |
+
<A NAME=33>And that his friends by deputation could not</A><br>
|
110 |
+
<A NAME=34>So soon be drawn, nor did he think it meet</A><br>
|
111 |
+
<A NAME=35>To lay so dangerous and dear a trust</A><br>
|
112 |
+
<A NAME=36>On any soul removed but on his own.</A><br>
|
113 |
+
<A NAME=37>Yet doth he give us bold advertisement,</A><br>
|
114 |
+
<A NAME=38>That with our small conjunction we should on,</A><br>
|
115 |
+
<A NAME=39>To see how fortune is disposed to us;</A><br>
|
116 |
+
<A NAME=40>For, as he writes, there is no quailing now.</A><br>
|
117 |
+
<A NAME=41>Because the king is certainly possess'd</A><br>
|
118 |
+
<A NAME=42>Of all our purposes. What say you to it?</A><br>
|
119 |
+
</blockquote>
|
120 |
+
|
121 |
+
<A NAME=speech13><b>EARL OF WORCESTER</b></a>
|
122 |
+
<blockquote>
|
123 |
+
<A NAME=43>Your father's sickness is a maim to us.</A><br>
|
124 |
+
</blockquote>
|
125 |
+
|
126 |
+
<A NAME=speech14><b>HOTSPUR</b></a>
|
127 |
+
<blockquote>
|
128 |
+
<A NAME=44>A perilous gash, a very limb lopp'd off:</A><br>
|
129 |
+
<A NAME=45>And yet, in faith, it is not; his present want</A><br>
|
130 |
+
<A NAME=46>Seems more than we shall find it: were it good</A><br>
|
131 |
+
<A NAME=47>To set the exact wealth of all our states</A><br>
|
132 |
+
<A NAME=48>All at one cast? to set so rich a main</A><br>
|
133 |
+
<A NAME=49>On the nice hazard of one doubtful hour?</A><br>
|
134 |
+
<A NAME=50>It were not good; for therein should we read</A><br>
|
135 |
+
<A NAME=51>The very bottom and the soul of hope,</A><br>
|
136 |
+
<A NAME=52>The very list, the very utmost bound</A><br>
|
137 |
+
<A NAME=53>Of all our fortunes.</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech15><b>EARL OF DOUGLAS</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=54>'Faith, and so we should;</A><br>
|
143 |
+
<A NAME=55>Where now remains a sweet reversion:</A><br>
|
144 |
+
<A NAME=56>We may boldly spend upon the hope of what</A><br>
|
145 |
+
<A NAME=57>Is to come in:</A><br>
|
146 |
+
<A NAME=58>A comfort of retirement lives in this.</A><br>
|
147 |
+
</blockquote>
|
148 |
+
|
149 |
+
<A NAME=speech16><b>HOTSPUR</b></a>
|
150 |
+
<blockquote>
|
151 |
+
<A NAME=59>A rendezvous, a home to fly unto.</A><br>
|
152 |
+
<A NAME=60>If that the devil and mischance look big</A><br>
|
153 |
+
<A NAME=61>Upon the maidenhead of our affairs.</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech17><b>EARL OF WORCESTER</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=62>But yet I would your father had been here.</A><br>
|
159 |
+
<A NAME=63>The quality and hair of our attempt</A><br>
|
160 |
+
<A NAME=64>Brooks no division: it will be thought</A><br>
|
161 |
+
<A NAME=65>By some, that know not why he is away,</A><br>
|
162 |
+
<A NAME=66>That wisdom, loyalty and mere dislike</A><br>
|
163 |
+
<A NAME=67>Of our proceedings kept the earl from hence:</A><br>
|
164 |
+
<A NAME=68>And think how such an apprehension</A><br>
|
165 |
+
<A NAME=69>May turn the tide of fearful faction</A><br>
|
166 |
+
<A NAME=70>And breed a kind of question in our cause;</A><br>
|
167 |
+
<A NAME=71>For well you know we of the offering side</A><br>
|
168 |
+
<A NAME=72>Must keep aloof from strict arbitrement,</A><br>
|
169 |
+
<A NAME=73>And stop all sight-holes, every loop from whence</A><br>
|
170 |
+
<A NAME=74>The eye of reason may pry in upon us:</A><br>
|
171 |
+
<A NAME=75>This absence of your father's draws a curtain,</A><br>
|
172 |
+
<A NAME=76>That shows the ignorant a kind of fear</A><br>
|
173 |
+
<A NAME=77>Before not dreamt of.</A><br>
|
174 |
+
</blockquote>
|
175 |
+
|
176 |
+
<A NAME=speech18><b>HOTSPUR</b></a>
|
177 |
+
<blockquote>
|
178 |
+
<A NAME=78>You strain too far.</A><br>
|
179 |
+
<A NAME=79>I rather of his absence make this use:</A><br>
|
180 |
+
<A NAME=80>It lends a lustre and more great opinion,</A><br>
|
181 |
+
<A NAME=81>A larger dare to our great enterprise,</A><br>
|
182 |
+
<A NAME=82>Than if the earl were here; for men must think,</A><br>
|
183 |
+
<A NAME=83>If we without his help can make a head</A><br>
|
184 |
+
<A NAME=84>To push against a kingdom, with his help</A><br>
|
185 |
+
<A NAME=85>We shall o'erturn it topsy-turvy down.</A><br>
|
186 |
+
<A NAME=86>Yet all goes well, yet all our joints are whole.</A><br>
|
187 |
+
</blockquote>
|
188 |
+
|
189 |
+
<A NAME=speech19><b>EARL OF DOUGLAS</b></a>
|
190 |
+
<blockquote>
|
191 |
+
<A NAME=87>As heart can think: there is not such a word</A><br>
|
192 |
+
<A NAME=88>Spoke of in Scotland as this term of fear.</A><br>
|
193 |
+
<p><i>Enter SIR RICHARD VERNON</i></p>
|
194 |
+
</blockquote>
|
195 |
+
|
196 |
+
<A NAME=speech20><b>HOTSPUR</b></a>
|
197 |
+
<blockquote>
|
198 |
+
<A NAME=89>My cousin Vernon, welcome, by my soul.</A><br>
|
199 |
+
</blockquote>
|
200 |
+
|
201 |
+
<A NAME=speech21><b>VERNON</b></a>
|
202 |
+
<blockquote>
|
203 |
+
<A NAME=90>Pray God my news be worth a welcome, lord.</A><br>
|
204 |
+
<A NAME=91>The Earl of Westmoreland, seven thousand strong,</A><br>
|
205 |
+
<A NAME=92>Is marching hitherwards; with him Prince John.</A><br>
|
206 |
+
</blockquote>
|
207 |
+
|
208 |
+
<A NAME=speech22><b>HOTSPUR</b></a>
|
209 |
+
<blockquote>
|
210 |
+
<A NAME=93>No harm: what more?</A><br>
|
211 |
+
</blockquote>
|
212 |
+
|
213 |
+
<A NAME=speech23><b>VERNON</b></a>
|
214 |
+
<blockquote>
|
215 |
+
<A NAME=94>And further, I have learn'd,</A><br>
|
216 |
+
<A NAME=95>The king himself in person is set forth,</A><br>
|
217 |
+
<A NAME=96>Or hitherwards intended speedily,</A><br>
|
218 |
+
<A NAME=97>With strong and mighty preparation.</A><br>
|
219 |
+
</blockquote>
|
220 |
+
|
221 |
+
<A NAME=speech24><b>HOTSPUR</b></a>
|
222 |
+
<blockquote>
|
223 |
+
<A NAME=98>He shall be welcome too. Where is his son,</A><br>
|
224 |
+
<A NAME=99>The nimble-footed madcap Prince of Wales,</A><br>
|
225 |
+
<A NAME=100>And his comrades, that daff'd the world aside,</A><br>
|
226 |
+
<A NAME=101>And bid it pass?</A><br>
|
227 |
+
</blockquote>
|
228 |
+
|
229 |
+
<A NAME=speech25><b>VERNON</b></a>
|
230 |
+
<blockquote>
|
231 |
+
<A NAME=102> All furnish'd, all in arms;</A><br>
|
232 |
+
<A NAME=103>All plumed like estridges that with the wind</A><br>
|
233 |
+
<A NAME=104>Baited like eagles having lately bathed;</A><br>
|
234 |
+
<A NAME=105>Glittering in golden coats, like images;</A><br>
|
235 |
+
<A NAME=106>As full of spirit as the month of May,</A><br>
|
236 |
+
<A NAME=107>And gorgeous as the sun at midsummer;</A><br>
|
237 |
+
<A NAME=108>Wanton as youthful goats, wild as young bulls.</A><br>
|
238 |
+
<A NAME=109>I saw young Harry, with his beaver on,</A><br>
|
239 |
+
<A NAME=110>His cuisses on his thighs, gallantly arm'd</A><br>
|
240 |
+
<A NAME=111>Rise from the ground like feather'd Mercury,</A><br>
|
241 |
+
<A NAME=112>And vaulted with such ease into his seat,</A><br>
|
242 |
+
<A NAME=113>As if an angel dropp'd down from the clouds,</A><br>
|
243 |
+
<A NAME=114>To turn and wind a fiery Pegasus</A><br>
|
244 |
+
<A NAME=115>And witch the world with noble horsemanship.</A><br>
|
245 |
+
</blockquote>
|
246 |
+
|
247 |
+
<A NAME=speech26><b>HOTSPUR</b></a>
|
248 |
+
<blockquote>
|
249 |
+
<A NAME=116>No more, no more: worse than the sun in March,</A><br>
|
250 |
+
<A NAME=117>This praise doth nourish agues. Let them come:</A><br>
|
251 |
+
<A NAME=118>They come like sacrifices in their trim,</A><br>
|
252 |
+
<A NAME=119>And to the fire-eyed maid of smoky war</A><br>
|
253 |
+
<A NAME=120>All hot and bleeding will we offer them:</A><br>
|
254 |
+
<A NAME=121>The mailed Mars shall on his altar sit</A><br>
|
255 |
+
<A NAME=122>Up to the ears in blood. I am on fire</A><br>
|
256 |
+
<A NAME=123>To hear this rich reprisal is so nigh</A><br>
|
257 |
+
<A NAME=124>And yet not ours. Come, let me taste my horse,</A><br>
|
258 |
+
<A NAME=125>Who is to bear me like a thunderbolt</A><br>
|
259 |
+
<A NAME=126>Against the bosom of the Prince of Wales:</A><br>
|
260 |
+
<A NAME=127>Harry to Harry shall, hot horse to horse,</A><br>
|
261 |
+
<A NAME=128>Meet and ne'er part till one drop down a corse.</A><br>
|
262 |
+
<A NAME=129>O that Glendower were come!</A><br>
|
263 |
+
</blockquote>
|
264 |
+
|
265 |
+
<A NAME=speech27><b>VERNON</b></a>
|
266 |
+
<blockquote>
|
267 |
+
<A NAME=130>There is more news:</A><br>
|
268 |
+
<A NAME=131>I learn'd in Worcester, as I rode along,</A><br>
|
269 |
+
<A NAME=132>He cannot draw his power this fourteen days.</A><br>
|
270 |
+
</blockquote>
|
271 |
+
|
272 |
+
<A NAME=speech28><b>EARL OF DOUGLAS</b></a>
|
273 |
+
<blockquote>
|
274 |
+
<A NAME=133>That's the worst tidings that I hear of yet.</A><br>
|
275 |
+
</blockquote>
|
276 |
+
|
277 |
+
<A NAME=speech29><b>WORCESTER</b></a>
|
278 |
+
<blockquote>
|
279 |
+
<A NAME=134>Ay, by my faith, that bears a frosty sound.</A><br>
|
280 |
+
</blockquote>
|
281 |
+
|
282 |
+
<A NAME=speech30><b>HOTSPUR</b></a>
|
283 |
+
<blockquote>
|
284 |
+
<A NAME=135>What may the king's whole battle reach unto?</A><br>
|
285 |
+
</blockquote>
|
286 |
+
|
287 |
+
<A NAME=speech31><b>VERNON</b></a>
|
288 |
+
<blockquote>
|
289 |
+
<A NAME=136>To thirty thousand.</A><br>
|
290 |
+
</blockquote>
|
291 |
+
|
292 |
+
<A NAME=speech32><b>HOTSPUR</b></a>
|
293 |
+
<blockquote>
|
294 |
+
<A NAME=137>Forty let it be:</A><br>
|
295 |
+
<A NAME=138>My father and Glendower being both away,</A><br>
|
296 |
+
<A NAME=139>The powers of us may serve so great a day</A><br>
|
297 |
+
<A NAME=140>Come, let us take a muster speedily:</A><br>
|
298 |
+
<A NAME=141>Doomsday is near; die all, die merrily.</A><br>
|
299 |
+
</blockquote>
|
300 |
+
|
301 |
+
<A NAME=speech33><b>EARL OF DOUGLAS</b></a>
|
302 |
+
<blockquote>
|
303 |
+
<A NAME=142>Talk not of dying: I am out of fear</A><br>
|
304 |
+
<A NAME=143>Of death or death's hand for this one-half year.</A><br>
|
305 |
+
<p><i>Exeunt</i></p>
|
306 |
+
</blockquote>
|
307 |
+
<table width="100%" bgcolor="#CCF6F6">
|
308 |
+
<tr><td class="nav" align="center">
|
309 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
310 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
311 |
+
| Act 4, Scene 1
|
312 |
+
<br>
|
313 |
+
<a href="1henryiv.3.2.html">Previous scene</A>
|
314 |
+
| <a href="1henryiv.4.2.html">Next scene</A>
|
315 |
+
</table>
|
316 |
+
|
317 |
+
</body>
|
318 |
+
</html>
|
319 |
+
|
320 |
+
|
data/1henryiv.4.2.html
ADDED
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. A public road near Coventry.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 4, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.4.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.4.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. A public road near Coventry.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter FALSTAFF and BARDOLPH</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>FALSTAFF</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Bardolph, get thee before to Coventry; fill me a</A><br>
|
33 |
+
<A NAME=2>bottle of sack: our soldiers shall march through;</A><br>
|
34 |
+
<A NAME=3>we'll to Sutton Co'fil' tonight.</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>BARDOLPH</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=4>Will you give me money, captain?</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech3><b>FALSTAFF</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=5>Lay out, lay out.</A><br>
|
45 |
+
</blockquote>
|
46 |
+
|
47 |
+
<A NAME=speech4><b>BARDOLPH</b></a>
|
48 |
+
<blockquote>
|
49 |
+
<A NAME=6>This bottle makes an angel.</A><br>
|
50 |
+
</blockquote>
|
51 |
+
|
52 |
+
<A NAME=speech5><b>FALSTAFF</b></a>
|
53 |
+
<blockquote>
|
54 |
+
<A NAME=7>An if it do, take it for thy labour; and if it make</A><br>
|
55 |
+
<A NAME=8>twenty, take them all; I'll answer the coinage. Bid</A><br>
|
56 |
+
<A NAME=9>my lieutenant Peto meet me at town's end.</A><br>
|
57 |
+
</blockquote>
|
58 |
+
|
59 |
+
<A NAME=speech6><b>BARDOLPH</b></a>
|
60 |
+
<blockquote>
|
61 |
+
<A NAME=10>I will, captain: farewell.</A><br>
|
62 |
+
<p><i>Exit</i></p>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech7><b>FALSTAFF</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=11>If I be not ashamed of my soldiers, I am a soused</A><br>
|
68 |
+
<A NAME=12>gurnet. I have misused the king's press damnably.</A><br>
|
69 |
+
<A NAME=13>I have got, in exchange of a hundred and fifty</A><br>
|
70 |
+
<A NAME=14>soldiers, three hundred and odd pounds. I press me</A><br>
|
71 |
+
<A NAME=15>none but good house-holders, yeoman's sons; inquire</A><br>
|
72 |
+
<A NAME=16>me out contracted bachelors, such as had been asked</A><br>
|
73 |
+
<A NAME=17>twice on the banns; such a commodity of warm slaves,</A><br>
|
74 |
+
<A NAME=18>as had as lieve hear the devil as a drum; such as</A><br>
|
75 |
+
<A NAME=19>fear the report of a caliver worse than a struck</A><br>
|
76 |
+
<A NAME=20>fowl or a hurt wild-duck. I pressed me none but such</A><br>
|
77 |
+
<A NAME=21>toasts-and-butter, with hearts in their bellies no</A><br>
|
78 |
+
<A NAME=22>bigger than pins' heads, and they have bought out</A><br>
|
79 |
+
<A NAME=23>their services; and now my whole charge consists of</A><br>
|
80 |
+
<A NAME=24>ancients, corporals, lieutenants, gentlemen of</A><br>
|
81 |
+
<A NAME=25>companies, slaves as ragged as Lazarus in the</A><br>
|
82 |
+
<A NAME=26>painted cloth, where the glutton's dogs licked his</A><br>
|
83 |
+
<A NAME=27>sores; and such as indeed were never soldiers, but</A><br>
|
84 |
+
<A NAME=28>discarded unjust serving-men, younger sons to</A><br>
|
85 |
+
<A NAME=29>younger brothers, revolted tapsters and ostlers</A><br>
|
86 |
+
<A NAME=30>trade-fallen, the cankers of a calm world and a</A><br>
|
87 |
+
<A NAME=31>long peace, ten times more dishonourable ragged than</A><br>
|
88 |
+
<A NAME=32>an old faced ancient: and such have I, to fill up</A><br>
|
89 |
+
<A NAME=33>the rooms of them that have bought out their</A><br>
|
90 |
+
<A NAME=34>services, that you would think that I had a hundred</A><br>
|
91 |
+
<A NAME=35>and fifty tattered prodigals lately come from</A><br>
|
92 |
+
<A NAME=36>swine-keeping, from eating draff and husks. A mad</A><br>
|
93 |
+
<A NAME=37>fellow met me on the way and told me I had unloaded</A><br>
|
94 |
+
<A NAME=38>all the gibbets and pressed the dead bodies. No eye</A><br>
|
95 |
+
<A NAME=39>hath seen such scarecrows. I'll not march through</A><br>
|
96 |
+
<A NAME=40>Coventry with them, that's flat: nay, and the</A><br>
|
97 |
+
<A NAME=41>villains march wide betwixt the legs, as if they had</A><br>
|
98 |
+
<A NAME=42>gyves on; for indeed I had the most of them out of</A><br>
|
99 |
+
<A NAME=43>prison. There's but a shirt and a half in all my</A><br>
|
100 |
+
<A NAME=44>company; and the half shirt is two napkins tacked</A><br>
|
101 |
+
<A NAME=45>together and thrown over the shoulders like an</A><br>
|
102 |
+
<A NAME=46>herald's coat without sleeves; and the shirt, to say</A><br>
|
103 |
+
<A NAME=47>the truth, stolen from my host at Saint Alban's, or</A><br>
|
104 |
+
<A NAME=48>the red-nose innkeeper of Daventry. But that's all</A><br>
|
105 |
+
<A NAME=49>one; they'll find linen enough on every hedge.</A><br>
|
106 |
+
<p><i>Enter the PRINCE and WESTMORELAND</i></p>
|
107 |
+
</blockquote>
|
108 |
+
|
109 |
+
<A NAME=speech8><b>PRINCE HENRY</b></a>
|
110 |
+
<blockquote>
|
111 |
+
<A NAME=50>How now, blown Jack! how now, quilt!</A><br>
|
112 |
+
</blockquote>
|
113 |
+
|
114 |
+
<A NAME=speech9><b>FALSTAFF</b></a>
|
115 |
+
<blockquote>
|
116 |
+
<A NAME=51>What, Hal! how now, mad wag! what a devil dost thou</A><br>
|
117 |
+
<A NAME=52>in Warwickshire? My good Lord of Westmoreland, I</A><br>
|
118 |
+
<A NAME=53>cry you mercy: I thought your honour had already been</A><br>
|
119 |
+
<A NAME=54>at Shrewsbury.</A><br>
|
120 |
+
</blockquote>
|
121 |
+
|
122 |
+
<A NAME=speech10><b>WESTMORELAND</b></a>
|
123 |
+
<blockquote>
|
124 |
+
<A NAME=55>Faith, Sir John,'tis more than time that I were</A><br>
|
125 |
+
<A NAME=56>there, and you too; but my powers are there already.</A><br>
|
126 |
+
<A NAME=57>The king, I can tell you, looks for us all: we must</A><br>
|
127 |
+
<A NAME=58>away all night.</A><br>
|
128 |
+
</blockquote>
|
129 |
+
|
130 |
+
<A NAME=speech11><b>FALSTAFF</b></a>
|
131 |
+
<blockquote>
|
132 |
+
<A NAME=59>Tut, never fear me: I am as vigilant as a cat to</A><br>
|
133 |
+
<A NAME=60>steal cream.</A><br>
|
134 |
+
</blockquote>
|
135 |
+
|
136 |
+
<A NAME=speech12><b>PRINCE HENRY</b></a>
|
137 |
+
<blockquote>
|
138 |
+
<A NAME=61>I think, to steal cream indeed, for thy theft hath</A><br>
|
139 |
+
<A NAME=62>already made thee butter. But tell me, Jack, whose</A><br>
|
140 |
+
<A NAME=63>fellows are these that come after?</A><br>
|
141 |
+
</blockquote>
|
142 |
+
|
143 |
+
<A NAME=speech13><b>FALSTAFF</b></a>
|
144 |
+
<blockquote>
|
145 |
+
<A NAME=64>Mine, Hal, mine.</A><br>
|
146 |
+
</blockquote>
|
147 |
+
|
148 |
+
<A NAME=speech14><b>PRINCE HENRY</b></a>
|
149 |
+
<blockquote>
|
150 |
+
<A NAME=65>I did never see such pitiful rascals.</A><br>
|
151 |
+
</blockquote>
|
152 |
+
|
153 |
+
<A NAME=speech15><b>FALSTAFF</b></a>
|
154 |
+
<blockquote>
|
155 |
+
<A NAME=66>Tut, tut; good enough to toss; food for powder, food</A><br>
|
156 |
+
<A NAME=67>for powder; they'll fill a pit as well as better:</A><br>
|
157 |
+
<A NAME=68>tush, man, mortal men, mortal men.</A><br>
|
158 |
+
</blockquote>
|
159 |
+
|
160 |
+
<A NAME=speech16><b>WESTMORELAND</b></a>
|
161 |
+
<blockquote>
|
162 |
+
<A NAME=69>Ay, but, Sir John, methinks they are exceeding poor</A><br>
|
163 |
+
<A NAME=70>and bare, too beggarly.</A><br>
|
164 |
+
</blockquote>
|
165 |
+
|
166 |
+
<A NAME=speech17><b>FALSTAFF</b></a>
|
167 |
+
<blockquote>
|
168 |
+
<A NAME=71>'Faith, for their poverty, I know not where they had</A><br>
|
169 |
+
<A NAME=72>that; and for their bareness, I am sure they never</A><br>
|
170 |
+
<A NAME=73>learned that of me.</A><br>
|
171 |
+
</blockquote>
|
172 |
+
|
173 |
+
<A NAME=speech18><b>PRINCE HENRY</b></a>
|
174 |
+
<blockquote>
|
175 |
+
<A NAME=74>No I'll be sworn; unless you call three fingers on</A><br>
|
176 |
+
<A NAME=75>the ribs bare. But, sirrah, make haste: Percy is</A><br>
|
177 |
+
<A NAME=76>already in the field.</A><br>
|
178 |
+
</blockquote>
|
179 |
+
|
180 |
+
<A NAME=speech19><b>FALSTAFF</b></a>
|
181 |
+
<blockquote>
|
182 |
+
<A NAME=77>What, is the king encamped?</A><br>
|
183 |
+
</blockquote>
|
184 |
+
|
185 |
+
<A NAME=speech20><b>WESTMORELAND</b></a>
|
186 |
+
<blockquote>
|
187 |
+
<A NAME=78>He is, Sir John: I fear we shall stay too long.</A><br>
|
188 |
+
</blockquote>
|
189 |
+
|
190 |
+
<A NAME=speech21><b>FALSTAFF</b></a>
|
191 |
+
<blockquote>
|
192 |
+
<A NAME=79>Well,</A><br>
|
193 |
+
<A NAME=80>To the latter end of a fray and the beginning of a feast</A><br>
|
194 |
+
<A NAME=81>Fits a dull fighter and a keen guest.</A><br>
|
195 |
+
<p><i>Exeunt</i></p>
|
196 |
+
</blockquote>
|
197 |
+
<table width="100%" bgcolor="#CCF6F6">
|
198 |
+
<tr><td class="nav" align="center">
|
199 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
200 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
201 |
+
| Act 4, Scene 2
|
202 |
+
<br>
|
203 |
+
<a href="1henryiv.4.1.html">Previous scene</A>
|
204 |
+
| <a href="1henryiv.4.3.html">Next scene</A>
|
205 |
+
</table>
|
206 |
+
|
207 |
+
</body>
|
208 |
+
</html>
|
209 |
+
|
210 |
+
|
data/1henryiv.4.3.html
ADDED
@@ -0,0 +1,278 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. The rebel camp near Shrewsbury.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 4, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.4.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.4.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. The rebel camp near Shrewsbury.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter HOTSPUR, WORCESTER, DOUGLAS, and VERNON</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>HOTSPUR</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>We'll fight with him to-night.</A><br>
|
33 |
+
</blockquote>
|
34 |
+
|
35 |
+
<A NAME=speech2><b>EARL OF WORCESTER</b></a>
|
36 |
+
<blockquote>
|
37 |
+
<A NAME=2>It may not be.</A><br>
|
38 |
+
</blockquote>
|
39 |
+
|
40 |
+
<A NAME=speech3><b>EARL OF DOUGLAS</b></a>
|
41 |
+
<blockquote>
|
42 |
+
<A NAME=3>You give him then the advantage.</A><br>
|
43 |
+
</blockquote>
|
44 |
+
|
45 |
+
<A NAME=speech4><b>VERNON</b></a>
|
46 |
+
<blockquote>
|
47 |
+
<A NAME=4>Not a whit.</A><br>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech5><b>HOTSPUR</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=5>Why say you so? looks he not for supply?</A><br>
|
53 |
+
</blockquote>
|
54 |
+
|
55 |
+
<A NAME=speech6><b>VERNON</b></a>
|
56 |
+
<blockquote>
|
57 |
+
<A NAME=6>So do we.</A><br>
|
58 |
+
</blockquote>
|
59 |
+
|
60 |
+
<A NAME=speech7><b>HOTSPUR</b></a>
|
61 |
+
<blockquote>
|
62 |
+
<A NAME=7> His is certain, ours is doubtful.</A><br>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech8><b>EARL OF WORCESTER</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=8>Good cousin, be advised; stir not tonight.</A><br>
|
68 |
+
</blockquote>
|
69 |
+
|
70 |
+
<A NAME=speech9><b>VERNON</b></a>
|
71 |
+
<blockquote>
|
72 |
+
<A NAME=9>Do not, my lord.</A><br>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech10><b>EARL OF DOUGLAS</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=10> You do not counsel well:</A><br>
|
78 |
+
<A NAME=11>You speak it out of fear and cold heart.</A><br>
|
79 |
+
</blockquote>
|
80 |
+
|
81 |
+
<A NAME=speech11><b>VERNON</b></a>
|
82 |
+
<blockquote>
|
83 |
+
<A NAME=12>Do me no slander, Douglas: by my life,</A><br>
|
84 |
+
<A NAME=13>And I dare well maintain it with my life,</A><br>
|
85 |
+
<A NAME=14>If well-respected honour bid me on,</A><br>
|
86 |
+
<A NAME=15>I hold as little counsel with weak fear</A><br>
|
87 |
+
<A NAME=16>As you, my lord, or any Scot that this day lives:</A><br>
|
88 |
+
<A NAME=17>Let it be seen to-morrow in the battle</A><br>
|
89 |
+
<A NAME=18>Which of us fears.</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech12><b>EARL OF DOUGLAS</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=19> Yea, or to-night.</A><br>
|
95 |
+
</blockquote>
|
96 |
+
|
97 |
+
<A NAME=speech13><b>VERNON</b></a>
|
98 |
+
<blockquote>
|
99 |
+
<A NAME=20>Content.</A><br>
|
100 |
+
</blockquote>
|
101 |
+
|
102 |
+
<A NAME=speech14><b>HOTSPUR</b></a>
|
103 |
+
<blockquote>
|
104 |
+
<A NAME=21>To-night, say I.</A><br>
|
105 |
+
</blockquote>
|
106 |
+
|
107 |
+
<A NAME=speech15><b>VERNON</b></a>
|
108 |
+
<blockquote>
|
109 |
+
<A NAME=22>Come, come it nay not be. I wonder much,</A><br>
|
110 |
+
<A NAME=23>Being men of such great leading as you are,</A><br>
|
111 |
+
<A NAME=24>That you foresee not what impediments</A><br>
|
112 |
+
<A NAME=25>Drag back our expedition: certain horse</A><br>
|
113 |
+
<A NAME=26>Of my cousin Vernon's are not yet come up:</A><br>
|
114 |
+
<A NAME=27>Your uncle Worcester's horse came but today;</A><br>
|
115 |
+
<A NAME=28>And now their pride and mettle is asleep,</A><br>
|
116 |
+
<A NAME=29>Their courage with hard labour tame and dull,</A><br>
|
117 |
+
<A NAME=30>That not a horse is half the half of himself.</A><br>
|
118 |
+
</blockquote>
|
119 |
+
|
120 |
+
<A NAME=speech16><b>HOTSPUR</b></a>
|
121 |
+
<blockquote>
|
122 |
+
<A NAME=31>So are the horses of the enemy</A><br>
|
123 |
+
<A NAME=32>In general, journey-bated and brought low:</A><br>
|
124 |
+
<A NAME=33>The better part of ours are full of rest.</A><br>
|
125 |
+
</blockquote>
|
126 |
+
|
127 |
+
<A NAME=speech17><b>EARL OF WORCESTER</b></a>
|
128 |
+
<blockquote>
|
129 |
+
<A NAME=34>The number of the king exceedeth ours:</A><br>
|
130 |
+
<A NAME=35>For God's sake. cousin, stay till all come in.</A><br>
|
131 |
+
<p><i>The trumpet sounds a parley</i></p>
|
132 |
+
<p><i>Enter SIR WALTER BLUNT</i></p>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech18><b>SIR WALTER BLUNT</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=36>I come with gracious offers from the king,</A><br>
|
138 |
+
<A NAME=37>if you vouchsafe me hearing and respect.</A><br>
|
139 |
+
</blockquote>
|
140 |
+
|
141 |
+
<A NAME=speech19><b>HOTSPUR</b></a>
|
142 |
+
<blockquote>
|
143 |
+
<A NAME=38>Welcome, Sir Walter Blunt; and would to God</A><br>
|
144 |
+
<A NAME=39>You were of our determination!</A><br>
|
145 |
+
<A NAME=40>Some of us love you well; and even those some</A><br>
|
146 |
+
<A NAME=41>Envy your great deservings and good name,</A><br>
|
147 |
+
<A NAME=42>Because you are not of our quality,</A><br>
|
148 |
+
<A NAME=43>But stand against us like an enemy.</A><br>
|
149 |
+
</blockquote>
|
150 |
+
|
151 |
+
<A NAME=speech20><b>SIR WALTER BLUNT</b></a>
|
152 |
+
<blockquote>
|
153 |
+
<A NAME=44>And God defend but still I should stand so,</A><br>
|
154 |
+
<A NAME=45>So long as out of limit and true rule</A><br>
|
155 |
+
<A NAME=46>You stand against anointed majesty.</A><br>
|
156 |
+
<A NAME=47>But to my charge. The king hath sent to know</A><br>
|
157 |
+
<A NAME=48>The nature of your griefs, and whereupon</A><br>
|
158 |
+
<A NAME=49>You conjure from the breast of civil peace</A><br>
|
159 |
+
<A NAME=50>Such bold hostility, teaching his duteous land</A><br>
|
160 |
+
<A NAME=51>Audacious cruelty. If that the king</A><br>
|
161 |
+
<A NAME=52>Have any way your good deserts forgot,</A><br>
|
162 |
+
<A NAME=53>Which he confesseth to be manifold,</A><br>
|
163 |
+
<A NAME=54>He bids you name your griefs; and with all speed</A><br>
|
164 |
+
<A NAME=55>You shall have your desires with interest</A><br>
|
165 |
+
<A NAME=56>And pardon absolute for yourself and these</A><br>
|
166 |
+
<A NAME=57>Herein misled by your suggestion.</A><br>
|
167 |
+
</blockquote>
|
168 |
+
|
169 |
+
<A NAME=speech21><b>HOTSPUR</b></a>
|
170 |
+
<blockquote>
|
171 |
+
<A NAME=58>The king is kind; and well we know the king</A><br>
|
172 |
+
<A NAME=59>Knows at what time to promise, when to pay.</A><br>
|
173 |
+
<A NAME=60>My father and my uncle and myself</A><br>
|
174 |
+
<A NAME=61>Did give him that same royalty he wears;</A><br>
|
175 |
+
<A NAME=62>And when he was not six and twenty strong,</A><br>
|
176 |
+
<A NAME=63>Sick in the world's regard, wretched and low,</A><br>
|
177 |
+
<A NAME=64>A poor unminded outlaw sneaking home,</A><br>
|
178 |
+
<A NAME=65>My father gave him welcome to the shore;</A><br>
|
179 |
+
<A NAME=66>And when he heard him swear and vow to God</A><br>
|
180 |
+
<A NAME=67>He came but to be Duke of Lancaster,</A><br>
|
181 |
+
<A NAME=68>To sue his livery and beg his peace,</A><br>
|
182 |
+
<A NAME=69>With tears of innocency and terms of zeal,</A><br>
|
183 |
+
<A NAME=70>My father, in kind heart and pity moved,</A><br>
|
184 |
+
<A NAME=71>Swore him assistance and perform'd it too.</A><br>
|
185 |
+
<A NAME=72>Now when the lords and barons of the realm</A><br>
|
186 |
+
<A NAME=73>Perceived Northumberland did lean to him,</A><br>
|
187 |
+
<A NAME=74>The more and less came in with cap and knee;</A><br>
|
188 |
+
<A NAME=75>Met him in boroughs, cities, villages,</A><br>
|
189 |
+
<A NAME=76>Attended him on bridges, stood in lanes,</A><br>
|
190 |
+
<A NAME=77>Laid gifts before him, proffer'd him their oaths,</A><br>
|
191 |
+
<A NAME=78>Gave him their heirs, as pages follow'd him</A><br>
|
192 |
+
<A NAME=79>Even at the heels in golden multitudes.</A><br>
|
193 |
+
<A NAME=80>He presently, as greatness knows itself,</A><br>
|
194 |
+
<A NAME=81>Steps me a little higher than his vow</A><br>
|
195 |
+
<A NAME=82>Made to my father, while his blood was poor,</A><br>
|
196 |
+
<A NAME=83>Upon the naked shore at Ravenspurgh;</A><br>
|
197 |
+
<A NAME=84>And now, forsooth, takes on him to reform</A><br>
|
198 |
+
<A NAME=85>Some certain edicts and some strait decrees</A><br>
|
199 |
+
<A NAME=86>That lie too heavy on the commonwealth,</A><br>
|
200 |
+
<A NAME=87>Cries out upon abuses, seems to weep</A><br>
|
201 |
+
<A NAME=88>Over his country's wrongs; and by this face,</A><br>
|
202 |
+
<A NAME=89>This seeming brow of justice, did he win</A><br>
|
203 |
+
<A NAME=90>The hearts of all that he did angle for;</A><br>
|
204 |
+
<A NAME=91>Proceeded further; cut me off the heads</A><br>
|
205 |
+
<A NAME=92>Of all the favourites that the absent king</A><br>
|
206 |
+
<A NAME=93>In deputation left behind him here,</A><br>
|
207 |
+
<A NAME=94>When he was personal in the Irish war.</A><br>
|
208 |
+
</blockquote>
|
209 |
+
|
210 |
+
<A NAME=speech22><b>SIR WALTER BLUNT</b></a>
|
211 |
+
<blockquote>
|
212 |
+
<A NAME=95>Tut, I came not to hear this.</A><br>
|
213 |
+
</blockquote>
|
214 |
+
|
215 |
+
<A NAME=speech23><b>HOTSPUR</b></a>
|
216 |
+
<blockquote>
|
217 |
+
<A NAME=96>Then to the point.</A><br>
|
218 |
+
<A NAME=97>In short time after, he deposed the king;</A><br>
|
219 |
+
<A NAME=98>Soon after that, deprived him of his life;</A><br>
|
220 |
+
<A NAME=99>And in the neck of that, task'd the whole state:</A><br>
|
221 |
+
<A NAME=100>To make that worse, suffer'd his kinsman March,</A><br>
|
222 |
+
<A NAME=101>Who is, if every owner were well placed,</A><br>
|
223 |
+
<A NAME=102>Indeed his king, to be engaged in Wales,</A><br>
|
224 |
+
<A NAME=103>There without ransom to lie forfeited;</A><br>
|
225 |
+
<A NAME=104>Disgraced me in my happy victories,</A><br>
|
226 |
+
<A NAME=105>Sought to entrap me by intelligence;</A><br>
|
227 |
+
<A NAME=106>Rated mine uncle from the council-board;</A><br>
|
228 |
+
<A NAME=107>In rage dismiss'd my father from the court;</A><br>
|
229 |
+
<A NAME=108>Broke oath on oath, committed wrong on wrong,</A><br>
|
230 |
+
<A NAME=109>And in conclusion drove us to seek out</A><br>
|
231 |
+
<A NAME=110>This head of safety; and withal to pry</A><br>
|
232 |
+
<A NAME=111>Into his title, the which we find</A><br>
|
233 |
+
<A NAME=112>Too indirect for long continuance.</A><br>
|
234 |
+
</blockquote>
|
235 |
+
|
236 |
+
<A NAME=speech24><b>SIR WALTER BLUNT</b></a>
|
237 |
+
<blockquote>
|
238 |
+
<A NAME=113>Shall I return this answer to the king?</A><br>
|
239 |
+
</blockquote>
|
240 |
+
|
241 |
+
<A NAME=speech25><b>HOTSPUR</b></a>
|
242 |
+
<blockquote>
|
243 |
+
<A NAME=114>Not so, Sir Walter: we'll withdraw awhile.</A><br>
|
244 |
+
<A NAME=115>Go to the king; and let there be impawn'd</A><br>
|
245 |
+
<A NAME=116>Some surety for a safe return again,</A><br>
|
246 |
+
<A NAME=117>And in the morning early shall my uncle</A><br>
|
247 |
+
<A NAME=118>Bring him our purposes: and so farewell.</A><br>
|
248 |
+
</blockquote>
|
249 |
+
|
250 |
+
<A NAME=speech26><b>SIR WALTER BLUNT</b></a>
|
251 |
+
<blockquote>
|
252 |
+
<A NAME=119>I would you would accept of grace and love.</A><br>
|
253 |
+
</blockquote>
|
254 |
+
|
255 |
+
<A NAME=speech27><b>HOTSPUR</b></a>
|
256 |
+
<blockquote>
|
257 |
+
<A NAME=120>And may be so we shall.</A><br>
|
258 |
+
</blockquote>
|
259 |
+
|
260 |
+
<A NAME=speech28><b>SIR WALTER BLUNT</b></a>
|
261 |
+
<blockquote>
|
262 |
+
<A NAME=121>Pray God you do.</A><br>
|
263 |
+
<p><i>Exeunt</i></p>
|
264 |
+
</blockquote>
|
265 |
+
<table width="100%" bgcolor="#CCF6F6">
|
266 |
+
<tr><td class="nav" align="center">
|
267 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
268 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
269 |
+
| Act 4, Scene 3
|
270 |
+
<br>
|
271 |
+
<a href="1henryiv.4.2.html">Previous scene</A>
|
272 |
+
| <a href="1henryiv.4.4.html">Next scene</A>
|
273 |
+
</table>
|
274 |
+
|
275 |
+
</body>
|
276 |
+
</html>
|
277 |
+
|
278 |
+
|
data/1henryiv.4.4.html
ADDED
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. York. The ARCHBISHOP'S palace.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 4, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.4.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.5.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. York. The ARCHBISHOP'S palace.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter the ARCHBISHOP OF YORK and SIR MICHAEL</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>ARCHBISHOP OF YORK</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Hie, good Sir Michael; bear this sealed brief</A><br>
|
33 |
+
<A NAME=2>With winged haste to the lord marshal;</A><br>
|
34 |
+
<A NAME=3>This to my cousin Scroop, and all the rest</A><br>
|
35 |
+
<A NAME=4>To whom they are directed. If you knew</A><br>
|
36 |
+
<A NAME=5>How much they do to import, you would make haste.</A><br>
|
37 |
+
</blockquote>
|
38 |
+
|
39 |
+
<A NAME=speech2><b>SIR MICHAEL</b></a>
|
40 |
+
<blockquote>
|
41 |
+
<A NAME=6>My good lord,</A><br>
|
42 |
+
<A NAME=7>I guess their tenor.</A><br>
|
43 |
+
</blockquote>
|
44 |
+
|
45 |
+
<A NAME=speech3><b>ARCHBISHOP OF YORK</b></a>
|
46 |
+
<blockquote>
|
47 |
+
<A NAME=8>Like enough you do.</A><br>
|
48 |
+
<A NAME=9>To-morrow, good Sir Michael, is a day</A><br>
|
49 |
+
<A NAME=10>Wherein the fortune of ten thousand men</A><br>
|
50 |
+
<A NAME=11>Must bide the touch; for, sir, at Shrewsbury,</A><br>
|
51 |
+
<A NAME=12>As I am truly given to understand,</A><br>
|
52 |
+
<A NAME=13>The king with mighty and quick-raised power</A><br>
|
53 |
+
<A NAME=14>Meets with Lord Harry: and, I fear, Sir Michael,</A><br>
|
54 |
+
<A NAME=15>What with the sickness of Northumberland,</A><br>
|
55 |
+
<A NAME=16>Whose power was in the first proportion,</A><br>
|
56 |
+
<A NAME=17>And what with Owen Glendower's absence thence,</A><br>
|
57 |
+
<A NAME=18>Who with them was a rated sinew too</A><br>
|
58 |
+
<A NAME=19>And comes not in, o'er-ruled by prophecies,</A><br>
|
59 |
+
<A NAME=20>I fear the power of Percy is too weak</A><br>
|
60 |
+
<A NAME=21>To wage an instant trial with the king.</A><br>
|
61 |
+
</blockquote>
|
62 |
+
|
63 |
+
<A NAME=speech4><b>SIR MICHAEL</b></a>
|
64 |
+
<blockquote>
|
65 |
+
<A NAME=22>Why, my good lord, you need not fear;</A><br>
|
66 |
+
<A NAME=23>There is Douglas and Lord Mortimer.</A><br>
|
67 |
+
</blockquote>
|
68 |
+
|
69 |
+
<A NAME=speech5><b>ARCHBISHOP OF YORK</b></a>
|
70 |
+
<blockquote>
|
71 |
+
<A NAME=24>No, Mortimer is not there.</A><br>
|
72 |
+
</blockquote>
|
73 |
+
|
74 |
+
<A NAME=speech6><b>SIR MICHAEL</b></a>
|
75 |
+
<blockquote>
|
76 |
+
<A NAME=25>But there is Mordake, Vernon, Lord Harry Percy,</A><br>
|
77 |
+
<A NAME=26>And there is my Lord of Worcester and a head</A><br>
|
78 |
+
<A NAME=27>Of gallant warriors, noble gentlemen.</A><br>
|
79 |
+
</blockquote>
|
80 |
+
|
81 |
+
<A NAME=speech7><b>ARCHBISHOP OF YORK</b></a>
|
82 |
+
<blockquote>
|
83 |
+
<A NAME=28>And so there is: but yet the king hath drawn</A><br>
|
84 |
+
<A NAME=29>The special head of all the land together:</A><br>
|
85 |
+
<A NAME=30>The Prince of Wales, Lord John of Lancaster,</A><br>
|
86 |
+
<A NAME=31>The noble Westmoreland and warlike Blunt;</A><br>
|
87 |
+
<A NAME=32>And moe corrivals and dear men</A><br>
|
88 |
+
<A NAME=33>Of estimation and command in arms.</A><br>
|
89 |
+
</blockquote>
|
90 |
+
|
91 |
+
<A NAME=speech8><b>SIR MICHAEL</b></a>
|
92 |
+
<blockquote>
|
93 |
+
<A NAME=34>Doubt not, my lord, they shall be well opposed.</A><br>
|
94 |
+
</blockquote>
|
95 |
+
|
96 |
+
<A NAME=speech9><b>ARCHBISHOP OF YORK</b></a>
|
97 |
+
<blockquote>
|
98 |
+
<A NAME=35>I hope no less, yet needful 'tis to fear;</A><br>
|
99 |
+
<A NAME=36>And, to prevent the worst, Sir Michael, speed:</A><br>
|
100 |
+
<A NAME=37>For if Lord Percy thrive not, ere the king</A><br>
|
101 |
+
<A NAME=38>Dismiss his power, he means to visit us,</A><br>
|
102 |
+
<A NAME=39>For he hath heard of our confederacy,</A><br>
|
103 |
+
<A NAME=40>And 'tis but wisdom to make strong against him:</A><br>
|
104 |
+
<A NAME=41>Therefore make haste. I must go write again</A><br>
|
105 |
+
<A NAME=42>To other friends; and so farewell, Sir Michael.</A><br>
|
106 |
+
<p><i>Exeunt</i></p>
|
107 |
+
<table width="100%" bgcolor="#CCF6F6">
|
108 |
+
<tr><td class="nav" align="center">
|
109 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
110 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
111 |
+
| Act 4, Scene 4
|
112 |
+
<br>
|
113 |
+
<a href="1henryiv.4.3.html">Previous scene</A>
|
114 |
+
| <a href="1henryiv.5.1.html">Next scene</A>
|
115 |
+
</table>
|
116 |
+
|
117 |
+
</body>
|
118 |
+
</html>
|
119 |
+
|
120 |
+
|
data/1henryiv.5.1.html
ADDED
@@ -0,0 +1,262 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. KING HENRY IV's camp near Shrewsbury.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 5, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.4.4.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.5.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. KING HENRY IV's camp near Shrewsbury.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter KING HENRY, PRINCE HENRY, Lord John of LANCASTER, EARL OF WESTMORELAND, SIR WALTER BLUNT, and FALSTAFF</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>KING HENRY IV</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>How bloodily the sun begins to peer</A><br>
|
33 |
+
<A NAME=2>Above yon busky hill! the day looks pale</A><br>
|
34 |
+
<A NAME=3>At his distemperature.</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>PRINCE HENRY</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=4>The southern wind</A><br>
|
40 |
+
<A NAME=5>Doth play the trumpet to his purposes,</A><br>
|
41 |
+
<A NAME=6>And by his hollow whistling in the leaves</A><br>
|
42 |
+
<A NAME=7>Foretells a tempest and a blustering day.</A><br>
|
43 |
+
</blockquote>
|
44 |
+
|
45 |
+
<A NAME=speech3><b>KING HENRY IV</b></a>
|
46 |
+
<blockquote>
|
47 |
+
<A NAME=8>Then with the losers let it sympathize,</A><br>
|
48 |
+
<A NAME=9>For nothing can seem foul to those that win.</A><br>
|
49 |
+
<p><i>The trumpet sounds</i></p>
|
50 |
+
<p><i>Enter WORCESTER and VERNON</i></p>
|
51 |
+
<A NAME=10>How now, my Lord of Worcester! 'tis not well</A><br>
|
52 |
+
<A NAME=11>That you and I should meet upon such terms</A><br>
|
53 |
+
<A NAME=12>As now we meet. You have deceived our trust,</A><br>
|
54 |
+
<A NAME=13>And made us doff our easy robes of peace,</A><br>
|
55 |
+
<A NAME=14>To crush our old limbs in ungentle steel:</A><br>
|
56 |
+
<A NAME=15>This is not well, my lord, this is not well.</A><br>
|
57 |
+
<A NAME=16>What say you to it? will you again unknit</A><br>
|
58 |
+
<A NAME=17>This curlish knot of all-abhorred war?</A><br>
|
59 |
+
<A NAME=18>And move in that obedient orb again</A><br>
|
60 |
+
<A NAME=19>Where you did give a fair and natural light,</A><br>
|
61 |
+
<A NAME=20>And be no more an exhaled meteor,</A><br>
|
62 |
+
<A NAME=21>A prodigy of fear and a portent</A><br>
|
63 |
+
<A NAME=22>Of broached mischief to the unborn times?</A><br>
|
64 |
+
</blockquote>
|
65 |
+
|
66 |
+
<A NAME=speech4><b>EARL OF WORCESTER</b></a>
|
67 |
+
<blockquote>
|
68 |
+
<A NAME=23>Hear me, my liege:</A><br>
|
69 |
+
<A NAME=24>For mine own part, I could be well content</A><br>
|
70 |
+
<A NAME=25>To entertain the lag-end of my life</A><br>
|
71 |
+
<A NAME=26>With quiet hours; for I do protest,</A><br>
|
72 |
+
<A NAME=27>I have not sought the day of this dislike.</A><br>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech5><b>KING HENRY IV</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=28>You have not sought it! how comes it, then?</A><br>
|
78 |
+
</blockquote>
|
79 |
+
|
80 |
+
<A NAME=speech6><b>FALSTAFF</b></a>
|
81 |
+
<blockquote>
|
82 |
+
<A NAME=29>Rebellion lay in his way, and he found it.</A><br>
|
83 |
+
</blockquote>
|
84 |
+
|
85 |
+
<A NAME=speech7><b>PRINCE HENRY</b></a>
|
86 |
+
<blockquote>
|
87 |
+
<A NAME=30>Peace, chewet, peace!</A><br>
|
88 |
+
</blockquote>
|
89 |
+
|
90 |
+
<A NAME=speech8><b>EARL OF WORCESTER</b></a>
|
91 |
+
<blockquote>
|
92 |
+
<A NAME=31>It pleased your majesty to turn your looks</A><br>
|
93 |
+
<A NAME=32>Of favour from myself and all our house;</A><br>
|
94 |
+
<A NAME=33>And yet I must remember you, my lord,</A><br>
|
95 |
+
<A NAME=34>We were the first and dearest of your friends.</A><br>
|
96 |
+
<A NAME=35>For you my staff of office did I break</A><br>
|
97 |
+
<A NAME=36>In Richard's time; and posted day and night</A><br>
|
98 |
+
<A NAME=37>to meet you on the way, and kiss your hand,</A><br>
|
99 |
+
<A NAME=38>When yet you were in place and in account</A><br>
|
100 |
+
<A NAME=39>Nothing so strong and fortunate as I.</A><br>
|
101 |
+
<A NAME=40>It was myself, my brother and his son,</A><br>
|
102 |
+
<A NAME=41>That brought you home and boldly did outdare</A><br>
|
103 |
+
<A NAME=42>The dangers of the time. You swore to us,</A><br>
|
104 |
+
<A NAME=43>And you did swear that oath at Doncaster,</A><br>
|
105 |
+
<A NAME=44>That you did nothing purpose 'gainst the state;</A><br>
|
106 |
+
<A NAME=45>Nor claim no further than your new-fall'n right,</A><br>
|
107 |
+
<A NAME=46>The seat of Gaunt, dukedom of Lancaster:</A><br>
|
108 |
+
<A NAME=47>To this we swore our aid. But in short space</A><br>
|
109 |
+
<A NAME=48>It rain'd down fortune showering on your head;</A><br>
|
110 |
+
<A NAME=49>And such a flood of greatness fell on you,</A><br>
|
111 |
+
<A NAME=50>What with our help, what with the absent king,</A><br>
|
112 |
+
<A NAME=51>What with the injuries of a wanton time,</A><br>
|
113 |
+
<A NAME=52>The seeming sufferances that you had borne,</A><br>
|
114 |
+
<A NAME=53>And the contrarious winds that held the king</A><br>
|
115 |
+
<A NAME=54>So long in his unlucky Irish wars</A><br>
|
116 |
+
<A NAME=55>That all in England did repute him dead:</A><br>
|
117 |
+
<A NAME=56>And from this swarm of fair advantages</A><br>
|
118 |
+
<A NAME=57>You took occasion to be quickly woo'd</A><br>
|
119 |
+
<A NAME=58>To gripe the general sway into your hand;</A><br>
|
120 |
+
<A NAME=59>Forget your oath to us at Doncaster;</A><br>
|
121 |
+
<A NAME=60>And being fed by us you used us so</A><br>
|
122 |
+
<A NAME=61>As that ungentle hull, the cuckoo's bird,</A><br>
|
123 |
+
<A NAME=62>Useth the sparrow; did oppress our nest;</A><br>
|
124 |
+
<A NAME=63>Grew by our feeding to so great a bulk</A><br>
|
125 |
+
<A NAME=64>That even our love durst not come near your sight</A><br>
|
126 |
+
<A NAME=65>For fear of swallowing; but with nimble wing</A><br>
|
127 |
+
<A NAME=66>We were enforced, for safety sake, to fly</A><br>
|
128 |
+
<A NAME=67>Out of sight and raise this present head;</A><br>
|
129 |
+
<A NAME=68>Whereby we stand opposed by such means</A><br>
|
130 |
+
<A NAME=69>As you yourself have forged against yourself</A><br>
|
131 |
+
<A NAME=70>By unkind usage, dangerous countenance,</A><br>
|
132 |
+
<A NAME=71>And violation of all faith and troth</A><br>
|
133 |
+
<A NAME=72>Sworn to us in your younger enterprise.</A><br>
|
134 |
+
</blockquote>
|
135 |
+
|
136 |
+
<A NAME=speech9><b>KING HENRY IV</b></a>
|
137 |
+
<blockquote>
|
138 |
+
<A NAME=73>These things indeed you have articulate,</A><br>
|
139 |
+
<A NAME=74>Proclaim'd at market-crosses, read in churches,</A><br>
|
140 |
+
<A NAME=75>To face the garment of rebellion</A><br>
|
141 |
+
<A NAME=76>With some fine colour that may please the eye</A><br>
|
142 |
+
<A NAME=77>Of fickle changelings and poor discontents,</A><br>
|
143 |
+
<A NAME=78>Which gape and rub the elbow at the news</A><br>
|
144 |
+
<A NAME=79>Of hurlyburly innovation:</A><br>
|
145 |
+
<A NAME=80>And never yet did insurrection want</A><br>
|
146 |
+
<A NAME=81>Such water-colours to impaint his cause;</A><br>
|
147 |
+
<A NAME=82>Nor moody beggars, starving for a time</A><br>
|
148 |
+
<A NAME=83>Of pellmell havoc and confusion.</A><br>
|
149 |
+
</blockquote>
|
150 |
+
|
151 |
+
<A NAME=speech10><b>PRINCE HENRY</b></a>
|
152 |
+
<blockquote>
|
153 |
+
<A NAME=84>In both your armies there is many a soul</A><br>
|
154 |
+
<A NAME=85>Shall pay full dearly for this encounter,</A><br>
|
155 |
+
<A NAME=86>If once they join in trial. Tell your nephew,</A><br>
|
156 |
+
<A NAME=87>The Prince of Wales doth join with all the world</A><br>
|
157 |
+
<A NAME=88>In praise of Henry Percy: by my hopes,</A><br>
|
158 |
+
<A NAME=89>This present enterprise set off his head,</A><br>
|
159 |
+
<A NAME=90>I do not think a braver gentleman,</A><br>
|
160 |
+
<A NAME=91>More active-valiant or more valiant-young,</A><br>
|
161 |
+
<A NAME=92>More daring or more bold, is now alive</A><br>
|
162 |
+
<A NAME=93>To grace this latter age with noble deeds.</A><br>
|
163 |
+
<A NAME=94>For my part, I may speak it to my shame,</A><br>
|
164 |
+
<A NAME=95>I have a truant been to chivalry;</A><br>
|
165 |
+
<A NAME=96>And so I hear he doth account me too;</A><br>
|
166 |
+
<A NAME=97>Yet this before my father's majesty--</A><br>
|
167 |
+
<A NAME=98>I am content that he shall take the odds</A><br>
|
168 |
+
<A NAME=99>Of his great name and estimation,</A><br>
|
169 |
+
<A NAME=100>And will, to save the blood on either side,</A><br>
|
170 |
+
<A NAME=101>Try fortune with him in a single fight.</A><br>
|
171 |
+
</blockquote>
|
172 |
+
|
173 |
+
<A NAME=speech11><b>KING HENRY IV</b></a>
|
174 |
+
<blockquote>
|
175 |
+
<A NAME=102>And, Prince of Wales, so dare we venture thee,</A><br>
|
176 |
+
<A NAME=103>Albeit considerations infinite</A><br>
|
177 |
+
<A NAME=104>Do make against it. No, good Worcester, no,</A><br>
|
178 |
+
<A NAME=105>We love our people well; even those we love</A><br>
|
179 |
+
<A NAME=106>That are misled upon your cousin's part;</A><br>
|
180 |
+
<A NAME=107>And, will they take the offer of our grace,</A><br>
|
181 |
+
<A NAME=108>Both he and they and you, every man</A><br>
|
182 |
+
<A NAME=109>Shall be my friend again and I'll be his:</A><br>
|
183 |
+
<A NAME=110>So tell your cousin, and bring me word</A><br>
|
184 |
+
<A NAME=111>What he will do: but if he will not yield,</A><br>
|
185 |
+
<A NAME=112>Rebuke and dread correction wait on us</A><br>
|
186 |
+
<A NAME=113>And they shall do their office. So, be gone;</A><br>
|
187 |
+
<A NAME=114>We will not now be troubled with reply:</A><br>
|
188 |
+
<A NAME=115>We offer fair; take it advisedly.</A><br>
|
189 |
+
<p><i>Exeunt WORCESTER and VERNON</i></p>
|
190 |
+
</blockquote>
|
191 |
+
|
192 |
+
<A NAME=speech12><b>PRINCE HENRY</b></a>
|
193 |
+
<blockquote>
|
194 |
+
<A NAME=116>It will not be accepted, on my life:</A><br>
|
195 |
+
<A NAME=117>The Douglas and the Hotspur both together</A><br>
|
196 |
+
<A NAME=118>Are confident against the world in arms.</A><br>
|
197 |
+
</blockquote>
|
198 |
+
|
199 |
+
<A NAME=speech13><b>KING HENRY IV</b></a>
|
200 |
+
<blockquote>
|
201 |
+
<A NAME=119>Hence, therefore, every leader to his charge;</A><br>
|
202 |
+
<A NAME=120>For, on their answer, will we set on them:</A><br>
|
203 |
+
<A NAME=121>And God befriend us, as our cause is just!</A><br>
|
204 |
+
<p><i>Exeunt all but PRINCE HENRY and FALSTAFF</i></p>
|
205 |
+
</blockquote>
|
206 |
+
|
207 |
+
<A NAME=speech14><b>FALSTAFF</b></a>
|
208 |
+
<blockquote>
|
209 |
+
<A NAME=122>Hal, if thou see me down in the battle and bestride</A><br>
|
210 |
+
<A NAME=123>me, so; 'tis a point of friendship.</A><br>
|
211 |
+
</blockquote>
|
212 |
+
|
213 |
+
<A NAME=speech15><b>PRINCE HENRY</b></a>
|
214 |
+
<blockquote>
|
215 |
+
<A NAME=124>Nothing but a colossus can do thee that friendship.</A><br>
|
216 |
+
<A NAME=125>Say thy prayers, and farewell.</A><br>
|
217 |
+
</blockquote>
|
218 |
+
|
219 |
+
<A NAME=speech16><b>FALSTAFF</b></a>
|
220 |
+
<blockquote>
|
221 |
+
<A NAME=126>I would 'twere bed-time, Hal, and all well.</A><br>
|
222 |
+
</blockquote>
|
223 |
+
|
224 |
+
<A NAME=speech17><b>PRINCE HENRY</b></a>
|
225 |
+
<blockquote>
|
226 |
+
<A NAME=127>Why, thou owest God a death.</A><br>
|
227 |
+
<p><i>Exit PRINCE HENRY</i></p>
|
228 |
+
</blockquote>
|
229 |
+
|
230 |
+
<A NAME=speech18><b>FALSTAFF</b></a>
|
231 |
+
<blockquote>
|
232 |
+
<A NAME=128>'Tis not due yet; I would be loath to pay him before</A><br>
|
233 |
+
<A NAME=129>his day. What need I be so forward with him that</A><br>
|
234 |
+
<A NAME=130>calls not on me? Well, 'tis no matter; honour pricks</A><br>
|
235 |
+
<A NAME=131>me on. Yea, but how if honour prick me off when I</A><br>
|
236 |
+
<A NAME=132>come on? how then? Can honour set to a leg? no: or</A><br>
|
237 |
+
<A NAME=133>an arm? no: or take away the grief of a wound? no.</A><br>
|
238 |
+
<A NAME=134>Honour hath no skill in surgery, then? no. What is</A><br>
|
239 |
+
<A NAME=135>honour? a word. What is in that word honour? what</A><br>
|
240 |
+
<A NAME=136>is that honour? air. A trim reckoning! Who hath it?</A><br>
|
241 |
+
<A NAME=137>he that died o' Wednesday. Doth he feel it? no.</A><br>
|
242 |
+
<A NAME=138>Doth he hear it? no. 'Tis insensible, then. Yea,</A><br>
|
243 |
+
<A NAME=139>to the dead. But will it not live with the living?</A><br>
|
244 |
+
<A NAME=140>no. Why? detraction will not suffer it. Therefore</A><br>
|
245 |
+
<A NAME=141>I'll none of it. Honour is a mere scutcheon: and so</A><br>
|
246 |
+
<A NAME=142>ends my catechism.</A><br>
|
247 |
+
<p><i>Exit</i></p>
|
248 |
+
</blockquote>
|
249 |
+
<table width="100%" bgcolor="#CCF6F6">
|
250 |
+
<tr><td class="nav" align="center">
|
251 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
252 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
253 |
+
| Act 5, Scene 1
|
254 |
+
<br>
|
255 |
+
<a href="1henryiv.4.4.html">Previous scene</A>
|
256 |
+
| <a href="1henryiv.5.2.html">Next scene</A>
|
257 |
+
</table>
|
258 |
+
|
259 |
+
</body>
|
260 |
+
</html>
|
261 |
+
|
262 |
+
|
data/1henryiv.5.2.html
ADDED
@@ -0,0 +1,234 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. The rebel camp.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 5, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.5.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.5.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. The rebel camp.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter WORCESTER and VERNON</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>EARL OF WORCESTER</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>O, no, my nephew must not know, Sir Richard,</A><br>
|
33 |
+
<A NAME=2>The liberal and kind offer of the king.</A><br>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>VERNON</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=3>'Twere best he did.</A><br>
|
39 |
+
</blockquote>
|
40 |
+
|
41 |
+
<A NAME=speech3><b>EARL OF WORCESTER</b></a>
|
42 |
+
<blockquote>
|
43 |
+
<A NAME=4>Then are we all undone.</A><br>
|
44 |
+
<A NAME=5>It is not possible, it cannot be,</A><br>
|
45 |
+
<A NAME=6>The king should keep his word in loving us;</A><br>
|
46 |
+
<A NAME=7>He will suspect us still and find a time</A><br>
|
47 |
+
<A NAME=8>To punish this offence in other faults:</A><br>
|
48 |
+
<A NAME=9>Suspicion all our lives shall be stuck full of eyes;</A><br>
|
49 |
+
<A NAME=10>For treason is but trusted like the fox,</A><br>
|
50 |
+
<A NAME=11>Who, ne'er so tame, so cherish'd and lock'd up,</A><br>
|
51 |
+
<A NAME=12>Will have a wild trick of his ancestors.</A><br>
|
52 |
+
<A NAME=13>Look how we can, or sad or merrily,</A><br>
|
53 |
+
<A NAME=14>Interpretation will misquote our looks,</A><br>
|
54 |
+
<A NAME=15>And we shall feed like oxen at a stall,</A><br>
|
55 |
+
<A NAME=16>The better cherish'd, still the nearer death.</A><br>
|
56 |
+
<A NAME=17>My nephew's trespass may be well forgot;</A><br>
|
57 |
+
<A NAME=18>it hath the excuse of youth and heat of blood,</A><br>
|
58 |
+
<A NAME=19>And an adopted name of privilege,</A><br>
|
59 |
+
<A NAME=20>A hair-brain'd Hotspur, govern'd by a spleen:</A><br>
|
60 |
+
<A NAME=21>All his offences live upon my head</A><br>
|
61 |
+
<A NAME=22>And on his father's; we did train him on,</A><br>
|
62 |
+
<A NAME=23>And, his corruption being ta'en from us,</A><br>
|
63 |
+
<A NAME=24>We, as the spring of all, shall pay for all.</A><br>
|
64 |
+
<A NAME=25>Therefore, good cousin, let not Harry know,</A><br>
|
65 |
+
<A NAME=26>In any case, the offer of the king.</A><br>
|
66 |
+
</blockquote>
|
67 |
+
|
68 |
+
<A NAME=speech4><b>VERNON</b></a>
|
69 |
+
<blockquote>
|
70 |
+
<A NAME=27>Deliver what you will; I'll say 'tis so.</A><br>
|
71 |
+
<A NAME=28>Here comes your cousin.</A><br>
|
72 |
+
<p><i>Enter HOTSPUR and DOUGLAS</i></p>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech5><b>HOTSPUR</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=29>My uncle is return'd:</A><br>
|
78 |
+
<A NAME=30>Deliver up my Lord of Westmoreland.</A><br>
|
79 |
+
<A NAME=31>Uncle, what news?</A><br>
|
80 |
+
</blockquote>
|
81 |
+
|
82 |
+
<A NAME=speech6><b>EARL OF WORCESTER</b></a>
|
83 |
+
<blockquote>
|
84 |
+
<A NAME=32>The king will bid you battle presently.</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech7><b>EARL OF DOUGLAS</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=33>Defy him by the Lord of Westmoreland.</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech8><b>HOTSPUR</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=34>Lord Douglas, go you and tell him so.</A><br>
|
95 |
+
</blockquote>
|
96 |
+
|
97 |
+
<A NAME=speech9><b>EARL OF DOUGLAS</b></a>
|
98 |
+
<blockquote>
|
99 |
+
<A NAME=35>Marry, and shall, and very willingly.</A><br>
|
100 |
+
<p><i>Exit</i></p>
|
101 |
+
</blockquote>
|
102 |
+
|
103 |
+
<A NAME=speech10><b>EARL OF WORCESTER</b></a>
|
104 |
+
<blockquote>
|
105 |
+
<A NAME=36>There is no seeming mercy in the king.</A><br>
|
106 |
+
</blockquote>
|
107 |
+
|
108 |
+
<A NAME=speech11><b>HOTSPUR</b></a>
|
109 |
+
<blockquote>
|
110 |
+
<A NAME=37>Did you beg any? God forbid!</A><br>
|
111 |
+
</blockquote>
|
112 |
+
|
113 |
+
<A NAME=speech12><b>EARL OF WORCESTER</b></a>
|
114 |
+
<blockquote>
|
115 |
+
<A NAME=38>I told him gently of our grievances,</A><br>
|
116 |
+
<A NAME=39>Of his oath-breaking; which he mended thus,</A><br>
|
117 |
+
<A NAME=40>By now forswearing that he is forsworn:</A><br>
|
118 |
+
<A NAME=41>He calls us rebels, traitors; and will scourge</A><br>
|
119 |
+
<A NAME=42>With haughty arms this hateful name in us.</A><br>
|
120 |
+
<p><i>Re-enter the EARL OF DOUGLAS</i></p>
|
121 |
+
</blockquote>
|
122 |
+
|
123 |
+
<A NAME=speech13><b>EARL OF DOUGLAS</b></a>
|
124 |
+
<blockquote>
|
125 |
+
<A NAME=43>Arm, gentlemen; to arms! for I have thrown</A><br>
|
126 |
+
<A NAME=44>A brave defiance in King Henry's teeth,</A><br>
|
127 |
+
<A NAME=45>And Westmoreland, that was engaged, did bear it;</A><br>
|
128 |
+
<A NAME=46>Which cannot choose but bring him quickly on.</A><br>
|
129 |
+
</blockquote>
|
130 |
+
|
131 |
+
<A NAME=speech14><b>EARL OF WORCESTER</b></a>
|
132 |
+
<blockquote>
|
133 |
+
<A NAME=47>The Prince of Wales stepp'd forth before the king,</A><br>
|
134 |
+
<A NAME=48>And, nephew, challenged you to single fight.</A><br>
|
135 |
+
</blockquote>
|
136 |
+
|
137 |
+
<A NAME=speech15><b>HOTSPUR</b></a>
|
138 |
+
<blockquote>
|
139 |
+
<A NAME=49>O, would the quarrel lay upon our heads,</A><br>
|
140 |
+
<A NAME=50>And that no man might draw short breath today</A><br>
|
141 |
+
<A NAME=51>But I and Harry Monmouth! Tell me, tell me,</A><br>
|
142 |
+
<A NAME=52>How show'd his tasking? seem'd it in contempt?</A><br>
|
143 |
+
</blockquote>
|
144 |
+
|
145 |
+
<A NAME=speech16><b>VERNON</b></a>
|
146 |
+
<blockquote>
|
147 |
+
<A NAME=53>No, by my soul; I never in my life</A><br>
|
148 |
+
<A NAME=54>Did hear a challenge urged more modestly,</A><br>
|
149 |
+
<A NAME=55>Unless a brother should a brother dare</A><br>
|
150 |
+
<A NAME=56>To gentle exercise and proof of arms.</A><br>
|
151 |
+
<A NAME=57>He gave you all the duties of a man;</A><br>
|
152 |
+
<A NAME=58>Trimm'd up your praises with a princely tongue,</A><br>
|
153 |
+
<A NAME=59>Spoke to your deservings like a chronicle,</A><br>
|
154 |
+
<A NAME=60>Making you ever better than his praise</A><br>
|
155 |
+
<A NAME=61>By still dispraising praise valued in you;</A><br>
|
156 |
+
<A NAME=62>And, which became him like a prince indeed,</A><br>
|
157 |
+
<A NAME=63>He made a blushing cital of himself;</A><br>
|
158 |
+
<A NAME=64>And chid his truant youth with such a grace</A><br>
|
159 |
+
<A NAME=65>As if he master'd there a double spirit.</A><br>
|
160 |
+
<A NAME=66>Of teaching and of learning instantly.</A><br>
|
161 |
+
<A NAME=67>There did he pause: but let me tell the world,</A><br>
|
162 |
+
<A NAME=68>If he outlive the envy of this day,</A><br>
|
163 |
+
<A NAME=69>England did never owe so sweet a hope,</A><br>
|
164 |
+
<A NAME=70>So much misconstrued in his wantonness.</A><br>
|
165 |
+
</blockquote>
|
166 |
+
|
167 |
+
<A NAME=speech17><b>HOTSPUR</b></a>
|
168 |
+
<blockquote>
|
169 |
+
<A NAME=71>Cousin, I think thou art enamoured</A><br>
|
170 |
+
<A NAME=72>On his follies: never did I hear</A><br>
|
171 |
+
<A NAME=73>Of any prince so wild a libertine.</A><br>
|
172 |
+
<A NAME=74>But be he as he will, yet once ere night</A><br>
|
173 |
+
<A NAME=75>I will embrace him with a soldier's arm,</A><br>
|
174 |
+
<A NAME=76>That he shall shrink under my courtesy.</A><br>
|
175 |
+
<A NAME=77>Arm, arm with speed: and, fellows, soldiers, friends,</A><br>
|
176 |
+
<A NAME=78>Better consider what you have to do</A><br>
|
177 |
+
<A NAME=79>Than I, that have not well the gift of tongue,</A><br>
|
178 |
+
<A NAME=80>Can lift your blood up with persuasion.</A><br>
|
179 |
+
<p><i>Enter a Messenger</i></p>
|
180 |
+
</blockquote>
|
181 |
+
|
182 |
+
<A NAME=speech18><b>Messenger</b></a>
|
183 |
+
<blockquote>
|
184 |
+
<A NAME=81>My lord, here are letters for you.</A><br>
|
185 |
+
</blockquote>
|
186 |
+
|
187 |
+
<A NAME=speech19><b>HOTSPUR</b></a>
|
188 |
+
<blockquote>
|
189 |
+
<A NAME=82>I cannot read them now.</A><br>
|
190 |
+
<A NAME=83>O gentlemen, the time of life is short!</A><br>
|
191 |
+
<A NAME=84>To spend that shortness basely were too long,</A><br>
|
192 |
+
<A NAME=85>If life did ride upon a dial's point,</A><br>
|
193 |
+
<A NAME=86>Still ending at the arrival of an hour.</A><br>
|
194 |
+
<A NAME=87>An if we live, we live to tread on kings;</A><br>
|
195 |
+
<A NAME=88>If die, brave death, when princes die with us!</A><br>
|
196 |
+
<A NAME=89>Now, for our consciences, the arms are fair,</A><br>
|
197 |
+
<A NAME=90>When the intent of bearing them is just.</A><br>
|
198 |
+
<p><i>Enter another Messenger</i></p>
|
199 |
+
</blockquote>
|
200 |
+
|
201 |
+
<A NAME=speech20><b>Messenger</b></a>
|
202 |
+
<blockquote>
|
203 |
+
<A NAME=91>My lord, prepare; the king comes on apace.</A><br>
|
204 |
+
</blockquote>
|
205 |
+
|
206 |
+
<A NAME=speech21><b>HOTSPUR</b></a>
|
207 |
+
<blockquote>
|
208 |
+
<A NAME=92>I thank him, that he cuts me from my tale,</A><br>
|
209 |
+
<A NAME=93>For I profess not talking; only this--</A><br>
|
210 |
+
<A NAME=94>Let each man do his best: and here draw I</A><br>
|
211 |
+
<A NAME=95>A sword, whose temper I intend to stain</A><br>
|
212 |
+
<A NAME=96>With the best blood that I can meet withal</A><br>
|
213 |
+
<A NAME=97>In the adventure of this perilous day.</A><br>
|
214 |
+
<A NAME=98>Now, Esperance! Percy! and set on.</A><br>
|
215 |
+
<A NAME=99>Sound all the lofty instruments of war,</A><br>
|
216 |
+
<A NAME=100>And by that music let us all embrace;</A><br>
|
217 |
+
<A NAME=101>For, heaven to earth, some of us never shall</A><br>
|
218 |
+
<A NAME=102>A second time do such a courtesy.</A><br>
|
219 |
+
<p><i>The trumpets sound. They embrace, and exeunt</i></p>
|
220 |
+
</blockquote>
|
221 |
+
<table width="100%" bgcolor="#CCF6F6">
|
222 |
+
<tr><td class="nav" align="center">
|
223 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
224 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
225 |
+
| Act 5, Scene 2
|
226 |
+
<br>
|
227 |
+
<a href="1henryiv.5.1.html">Previous scene</A>
|
228 |
+
| <a href="1henryiv.5.3.html">Next scene</A>
|
229 |
+
</table>
|
230 |
+
|
231 |
+
</body>
|
232 |
+
</html>
|
233 |
+
|
234 |
+
|
data/1henryiv.5.3.html
ADDED
@@ -0,0 +1,203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. Plain between the camps.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 5, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.5.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.5.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. Plain between the camps.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>KING HENRY enters with his power. Alarum to the battle. Then enter DOUGLAS and SIR WALTER BLUNT</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>SIR WALTER BLUNT</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>What is thy name, that in the battle thus</A><br>
|
33 |
+
<A NAME=2>Thou crossest me? what honour dost thou seek</A><br>
|
34 |
+
<A NAME=3>Upon my head?</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>EARL OF DOUGLAS</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=4> Know then, my name is Douglas;</A><br>
|
40 |
+
<A NAME=5>And I do haunt thee in the battle thus</A><br>
|
41 |
+
<A NAME=6>Because some tell me that thou art a king.</A><br>
|
42 |
+
</blockquote>
|
43 |
+
|
44 |
+
<A NAME=speech3><b>SIR WALTER BLUNT</b></a>
|
45 |
+
<blockquote>
|
46 |
+
<A NAME=7>They tell thee true.</A><br>
|
47 |
+
</blockquote>
|
48 |
+
|
49 |
+
<A NAME=speech4><b>EARL OF DOUGLAS</b></a>
|
50 |
+
<blockquote>
|
51 |
+
<A NAME=8>The Lord of Stafford dear to-day hath bought</A><br>
|
52 |
+
<A NAME=9>Thy likeness, for instead of thee, King Harry,</A><br>
|
53 |
+
<A NAME=10>This sword hath ended him: so shall it thee,</A><br>
|
54 |
+
<A NAME=11>Unless thou yield thee as my prisoner.</A><br>
|
55 |
+
</blockquote>
|
56 |
+
|
57 |
+
<A NAME=speech5><b>SIR WALTER BLUNT</b></a>
|
58 |
+
<blockquote>
|
59 |
+
<A NAME=12>I was not born a yielder, thou proud Scot;</A><br>
|
60 |
+
<A NAME=13>And thou shalt find a king that will revenge</A><br>
|
61 |
+
<A NAME=14>Lord Stafford's death.</A><br>
|
62 |
+
<p><i>They fight. DOUGLAS kills SIR WALTER BLUNT. Enter HOTSPUR</i></p>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech6><b>HOTSPUR</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=15>O Douglas, hadst thou fought at Holmedon thus,</A><br>
|
68 |
+
<A NAME=16>never had triumph'd upon a Scot.</A><br>
|
69 |
+
</blockquote>
|
70 |
+
|
71 |
+
<A NAME=speech7><b>EARL OF DOUGLAS</b></a>
|
72 |
+
<blockquote>
|
73 |
+
<A NAME=17>All's done, all's won; here breathless lies the king.</A><br>
|
74 |
+
</blockquote>
|
75 |
+
|
76 |
+
<A NAME=speech8><b>HOTSPUR</b></a>
|
77 |
+
<blockquote>
|
78 |
+
<A NAME=18>Where?</A><br>
|
79 |
+
</blockquote>
|
80 |
+
|
81 |
+
<A NAME=speech9><b>EARL OF DOUGLAS</b></a>
|
82 |
+
<blockquote>
|
83 |
+
<A NAME=19>Here.</A><br>
|
84 |
+
</blockquote>
|
85 |
+
|
86 |
+
<A NAME=speech10><b>HOTSPUR</b></a>
|
87 |
+
<blockquote>
|
88 |
+
<A NAME=20>This, Douglas? no: I know this face full well:</A><br>
|
89 |
+
<A NAME=21>A gallant knight he was, his name was Blunt;</A><br>
|
90 |
+
<A NAME=22>Semblably furnish'd like the king himself.</A><br>
|
91 |
+
</blockquote>
|
92 |
+
|
93 |
+
<A NAME=speech11><b>EARL OF DOUGLAS</b></a>
|
94 |
+
<blockquote>
|
95 |
+
<A NAME=23>A fool go with thy soul, whither it goes!</A><br>
|
96 |
+
<A NAME=24>A borrow'd title hast thou bought too dear:</A><br>
|
97 |
+
<A NAME=25>Why didst thou tell me that thou wert a king?</A><br>
|
98 |
+
</blockquote>
|
99 |
+
|
100 |
+
<A NAME=speech12><b>HOTSPUR</b></a>
|
101 |
+
<blockquote>
|
102 |
+
<A NAME=26>The king hath many marching in his coats.</A><br>
|
103 |
+
</blockquote>
|
104 |
+
|
105 |
+
<A NAME=speech13><b>EARL OF DOUGLAS</b></a>
|
106 |
+
<blockquote>
|
107 |
+
<A NAME=27>Now, by my sword, I will kill all his coats;</A><br>
|
108 |
+
<A NAME=28>I'll murder all his wardrobe, piece by piece,</A><br>
|
109 |
+
<A NAME=29>Until I meet the king.</A><br>
|
110 |
+
</blockquote>
|
111 |
+
|
112 |
+
<A NAME=speech14><b>HOTSPUR</b></a>
|
113 |
+
<blockquote>
|
114 |
+
<A NAME=30>Up, and away!</A><br>
|
115 |
+
<A NAME=31>Our soldiers stand full fairly for the day.</A><br>
|
116 |
+
<p><i>Exeunt</i></p>
|
117 |
+
<p><i>Alarum. Enter FALSTAFF, solus</i></p>
|
118 |
+
</blockquote>
|
119 |
+
|
120 |
+
<A NAME=speech15><b>FALSTAFF</b></a>
|
121 |
+
<blockquote>
|
122 |
+
<A NAME=32>Though I could 'scape shot-free at London, I fear</A><br>
|
123 |
+
<A NAME=33>the shot here; here's no scoring but upon the pate.</A><br>
|
124 |
+
<A NAME=34>Soft! who are you? Sir Walter Blunt: there's honour</A><br>
|
125 |
+
<A NAME=35>for you! here's no vanity! I am as hot as moulten</A><br>
|
126 |
+
<A NAME=36>lead, and as heavy too: God keep lead out of me! I</A><br>
|
127 |
+
<A NAME=37>need no more weight than mine own bowels. I have</A><br>
|
128 |
+
<A NAME=38>led my ragamuffins where they are peppered: there's</A><br>
|
129 |
+
<A NAME=39>not three of my hundred and fifty left alive; and</A><br>
|
130 |
+
<A NAME=40>they are for the town's end, to beg during life.</A><br>
|
131 |
+
<A NAME=41>But who comes here?</A><br>
|
132 |
+
<p><i>Enter PRINCE HENRY</i></p>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech16><b>PRINCE HENRY</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=42>What, stand'st thou idle here? lend me thy sword:</A><br>
|
138 |
+
<A NAME=43>Many a nobleman lies stark and stiff</A><br>
|
139 |
+
<A NAME=44>Under the hoofs of vaunting enemies,</A><br>
|
140 |
+
<A NAME=45>Whose deaths are yet unrevenged: I prithee,</A><br>
|
141 |
+
<A NAME=46>lend me thy sword.</A><br>
|
142 |
+
</blockquote>
|
143 |
+
|
144 |
+
<A NAME=speech17><b>FALSTAFF</b></a>
|
145 |
+
<blockquote>
|
146 |
+
<A NAME=47>O Hal, I prithee, give me leave to breathe awhile.</A><br>
|
147 |
+
<A NAME=48>Turk Gregory never did such deeds in arms as I have</A><br>
|
148 |
+
<A NAME=49>done this day. I have paid Percy, I have made him sure.</A><br>
|
149 |
+
</blockquote>
|
150 |
+
|
151 |
+
<A NAME=speech18><b>PRINCE HENRY</b></a>
|
152 |
+
<blockquote>
|
153 |
+
<A NAME=50>He is, indeed; and living to kill thee. I prithee,</A><br>
|
154 |
+
<A NAME=51>lend me thy sword.</A><br>
|
155 |
+
</blockquote>
|
156 |
+
|
157 |
+
<A NAME=speech19><b>FALSTAFF</b></a>
|
158 |
+
<blockquote>
|
159 |
+
<A NAME=52>Nay, before God, Hal, if Percy be alive, thou get'st</A><br>
|
160 |
+
<A NAME=53>not my sword; but take my pistol, if thou wilt.</A><br>
|
161 |
+
</blockquote>
|
162 |
+
|
163 |
+
<A NAME=speech20><b>PRINCE HENRY</b></a>
|
164 |
+
<blockquote>
|
165 |
+
<A NAME=54>Give it to me: what, is it in the case?</A><br>
|
166 |
+
</blockquote>
|
167 |
+
|
168 |
+
<A NAME=speech21><b>FALSTAFF</b></a>
|
169 |
+
<blockquote>
|
170 |
+
<A NAME=55>Ay, Hal; 'tis hot, 'tis hot; there's that will sack a city.</A><br>
|
171 |
+
<p><i>PRINCE HENRY draws it out, and finds it to be a bottle of sack</i></p>
|
172 |
+
</blockquote>
|
173 |
+
|
174 |
+
<A NAME=speech22><b>PRINCE HENRY</b></a>
|
175 |
+
<blockquote>
|
176 |
+
<A NAME=56>What, is it a time to jest and dally now?</A><br>
|
177 |
+
<p><i>He throws the bottle at him. Exit</i></p>
|
178 |
+
</blockquote>
|
179 |
+
|
180 |
+
<A NAME=speech23><b>FALSTAFF</b></a>
|
181 |
+
<blockquote>
|
182 |
+
<A NAME=57>Well, if Percy be alive, I'll pierce him. If he do</A><br>
|
183 |
+
<A NAME=58>come in my way, so: if he do not, if I come in his</A><br>
|
184 |
+
<A NAME=59>willingly, let him make a carbonado of me. I like</A><br>
|
185 |
+
<A NAME=60>not such grinning honour as Sir Walter hath: give me</A><br>
|
186 |
+
<A NAME=61>life: which if I can save, so; if not, honour comes</A><br>
|
187 |
+
<A NAME=62>unlooked for, and there's an end.</A><br>
|
188 |
+
<p><i>Exit FALSTAFF</i></p>
|
189 |
+
</blockquote>
|
190 |
+
<table width="100%" bgcolor="#CCF6F6">
|
191 |
+
<tr><td class="nav" align="center">
|
192 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
193 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
194 |
+
| Act 5, Scene 3
|
195 |
+
<br>
|
196 |
+
<a href="1henryiv.5.2.html">Previous scene</A>
|
197 |
+
| <a href="1henryiv.5.4.html">Next scene</A>
|
198 |
+
</table>
|
199 |
+
|
200 |
+
</body>
|
201 |
+
</html>
|
202 |
+
|
203 |
+
|
data/1henryiv.5.4.html
ADDED
@@ -0,0 +1,379 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. Another part of the field.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 5, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.5.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryiv.5.5.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. Another part of the field.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Alarum. Excursions. Enter PRINCE HENRY, LORD JOHN OF LANCASTER, and EARL OF WESTMORELAND</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>KING HENRY IV</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>I prithee,</A><br>
|
33 |
+
<A NAME=2>Harry, withdraw thyself; thou bleed'st too much.</A><br>
|
34 |
+
<A NAME=3>Lord John of Lancaster, go you with him.</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>LANCASTER</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=4>Not I, my lord, unless I did bleed too.</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech3><b>PRINCE HENRY</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=5>I beseech your majesty, make up,</A><br>
|
45 |
+
<A NAME=6>Lest your retirement do amaze your friends.</A><br>
|
46 |
+
</blockquote>
|
47 |
+
|
48 |
+
<A NAME=speech4><b>KING HENRY IV</b></a>
|
49 |
+
<blockquote>
|
50 |
+
<A NAME=7>I will do so.</A><br>
|
51 |
+
<A NAME=8>My Lord of Westmoreland, lead him to his tent.</A><br>
|
52 |
+
</blockquote>
|
53 |
+
|
54 |
+
<A NAME=speech5><b>WESTMORELAND</b></a>
|
55 |
+
<blockquote>
|
56 |
+
<A NAME=9>Come, my lord, I'll lead you to your tent.</A><br>
|
57 |
+
</blockquote>
|
58 |
+
|
59 |
+
<A NAME=speech6><b>PRINCE HENRY</b></a>
|
60 |
+
<blockquote>
|
61 |
+
<A NAME=10>Lead me, my lord? I do not need your help:</A><br>
|
62 |
+
<A NAME=11>And God forbid a shallow scratch should drive</A><br>
|
63 |
+
<A NAME=12>The Prince of Wales from such a field as this,</A><br>
|
64 |
+
<A NAME=13>Where stain'd nobility lies trodden on,</A><br>
|
65 |
+
<A NAME=14>and rebels' arms triumph in massacres!</A><br>
|
66 |
+
</blockquote>
|
67 |
+
|
68 |
+
<A NAME=speech7><b>LANCASTER</b></a>
|
69 |
+
<blockquote>
|
70 |
+
<A NAME=15>We breathe too long: come, cousin Westmoreland,</A><br>
|
71 |
+
<A NAME=16>Our duty this way lies; for God's sake come.</A><br>
|
72 |
+
<p><i>Exeunt LANCASTER and WESTMORELAND</i></p>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech8><b>PRINCE HENRY</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=17>By God, thou hast deceived me, Lancaster;</A><br>
|
78 |
+
<A NAME=18>I did not think thee lord of such a spirit:</A><br>
|
79 |
+
<A NAME=19>Before, I loved thee as a brother, John;</A><br>
|
80 |
+
<A NAME=20>But now, I do respect thee as my soul.</A><br>
|
81 |
+
</blockquote>
|
82 |
+
|
83 |
+
<A NAME=speech9><b>KING HENRY IV</b></a>
|
84 |
+
<blockquote>
|
85 |
+
<A NAME=21>I saw him hold Lord Percy at the point</A><br>
|
86 |
+
<A NAME=22>With lustier maintenance than I did look for</A><br>
|
87 |
+
<A NAME=23>Of such an ungrown warrior.</A><br>
|
88 |
+
</blockquote>
|
89 |
+
|
90 |
+
<A NAME=speech10><b>PRINCE HENRY</b></a>
|
91 |
+
<blockquote>
|
92 |
+
<A NAME=24>O, this boy</A><br>
|
93 |
+
<A NAME=25>Lends mettle to us all!</A><br>
|
94 |
+
<p><i>Exit</i></p>
|
95 |
+
<p><i>Enter DOUGLAS</i></p>
|
96 |
+
</blockquote>
|
97 |
+
|
98 |
+
<A NAME=speech11><b>EARL OF DOUGLAS</b></a>
|
99 |
+
<blockquote>
|
100 |
+
<A NAME=26>Another king! they grow like Hydra's heads:</A><br>
|
101 |
+
<A NAME=27>I am the Douglas, fatal to all those</A><br>
|
102 |
+
<A NAME=28>That wear those colours on them: what art thou,</A><br>
|
103 |
+
<A NAME=29>That counterfeit'st the person of a king?</A><br>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech12><b>KING HENRY IV</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=30>The king himself; who, Douglas, grieves at heart</A><br>
|
109 |
+
<A NAME=31>So many of his shadows thou hast met</A><br>
|
110 |
+
<A NAME=32>And not the very king. I have two boys</A><br>
|
111 |
+
<A NAME=33>Seek Percy and thyself about the field:</A><br>
|
112 |
+
<A NAME=34>But, seeing thou fall'st on me so luckily,</A><br>
|
113 |
+
<A NAME=35>I will assay thee: so, defend thyself.</A><br>
|
114 |
+
</blockquote>
|
115 |
+
|
116 |
+
<A NAME=speech13><b>EARL OF DOUGLAS</b></a>
|
117 |
+
<blockquote>
|
118 |
+
<A NAME=36>I fear thou art another counterfeit;</A><br>
|
119 |
+
<A NAME=37>And yet, in faith, thou bear'st thee like a king:</A><br>
|
120 |
+
<A NAME=38>But mine I am sure thou art, whoe'er thou be,</A><br>
|
121 |
+
<A NAME=39>And thus I win thee.</A><br>
|
122 |
+
<p><i>They fight. KING HENRY being in danger, PRINCE HENRY enters</i></p>
|
123 |
+
</blockquote>
|
124 |
+
|
125 |
+
<A NAME=speech14><b>PRINCE HENRY</b></a>
|
126 |
+
<blockquote>
|
127 |
+
<A NAME=40>Hold up thy head, vile Scot, or thou art like</A><br>
|
128 |
+
<A NAME=41>Never to hold it up again! the spirits</A><br>
|
129 |
+
<A NAME=42>Of valiant Shirley, Stafford, Blunt, are in my arms:</A><br>
|
130 |
+
<A NAME=43>It is the Prince of Wales that threatens thee;</A><br>
|
131 |
+
<A NAME=44>Who never promiseth but he means to pay.</A><br>
|
132 |
+
<p><i>They fight: DOUGLAS flies</i></p>
|
133 |
+
<A NAME=45>Cheerly, my lord how fares your grace?</A><br>
|
134 |
+
<A NAME=46>Sir Nicholas Gawsey hath for succor sent,</A><br>
|
135 |
+
<A NAME=47>And so hath Clifton: I'll to Clifton straight.</A><br>
|
136 |
+
</blockquote>
|
137 |
+
|
138 |
+
<A NAME=speech15><b>KING HENRY IV</b></a>
|
139 |
+
<blockquote>
|
140 |
+
<A NAME=48>Stay, and breathe awhile:</A><br>
|
141 |
+
<A NAME=49>Thou hast redeem'd thy lost opinion,</A><br>
|
142 |
+
<A NAME=50>And show'd thou makest some tender of my life,</A><br>
|
143 |
+
<A NAME=51>In this fair rescue thou hast brought to me.</A><br>
|
144 |
+
</blockquote>
|
145 |
+
|
146 |
+
<A NAME=speech16><b>PRINCE HENRY</b></a>
|
147 |
+
<blockquote>
|
148 |
+
<A NAME=52>O God! they did me too much injury</A><br>
|
149 |
+
<A NAME=53>That ever said I hearken'd for your death.</A><br>
|
150 |
+
<A NAME=54>If it were so, I might have let alone</A><br>
|
151 |
+
<A NAME=55>The insulting hand of Douglas over you,</A><br>
|
152 |
+
<A NAME=56>Which would have been as speedy in your end</A><br>
|
153 |
+
<A NAME=57>As all the poisonous potions in the world</A><br>
|
154 |
+
<A NAME=58>And saved the treacherous labour of your son.</A><br>
|
155 |
+
</blockquote>
|
156 |
+
|
157 |
+
<A NAME=speech17><b>KING HENRY IV</b></a>
|
158 |
+
<blockquote>
|
159 |
+
<A NAME=59>Make up to Clifton: I'll to Sir Nicholas Gawsey.</A><br>
|
160 |
+
<p><i>Exit</i></p>
|
161 |
+
<p><i>Enter HOTSPUR</i></p>
|
162 |
+
</blockquote>
|
163 |
+
|
164 |
+
<A NAME=speech18><b>HOTSPUR</b></a>
|
165 |
+
<blockquote>
|
166 |
+
<A NAME=60>If I mistake not, thou art Harry Monmouth.</A><br>
|
167 |
+
</blockquote>
|
168 |
+
|
169 |
+
<A NAME=speech19><b>PRINCE HENRY</b></a>
|
170 |
+
<blockquote>
|
171 |
+
<A NAME=61>Thou speak'st as if I would deny my name.</A><br>
|
172 |
+
</blockquote>
|
173 |
+
|
174 |
+
<A NAME=speech20><b>HOTSPUR</b></a>
|
175 |
+
<blockquote>
|
176 |
+
<A NAME=62>My name is Harry Percy.</A><br>
|
177 |
+
</blockquote>
|
178 |
+
|
179 |
+
<A NAME=speech21><b>PRINCE HENRY</b></a>
|
180 |
+
<blockquote>
|
181 |
+
<A NAME=63>Why, then I see</A><br>
|
182 |
+
<A NAME=64>A very valiant rebel of the name.</A><br>
|
183 |
+
<A NAME=65>I am the Prince of Wales; and think not, Percy,</A><br>
|
184 |
+
<A NAME=66>To share with me in glory any more:</A><br>
|
185 |
+
<A NAME=67>Two stars keep not their motion in one sphere;</A><br>
|
186 |
+
<A NAME=68>Nor can one England brook a double reign,</A><br>
|
187 |
+
<A NAME=69>Of Harry Percy and the Prince of Wales.</A><br>
|
188 |
+
</blockquote>
|
189 |
+
|
190 |
+
<A NAME=speech22><b>HOTSPUR</b></a>
|
191 |
+
<blockquote>
|
192 |
+
<A NAME=70>Nor shall it, Harry; for the hour is come</A><br>
|
193 |
+
<A NAME=71>To end the one of us; and would to God</A><br>
|
194 |
+
<A NAME=72>Thy name in arms were now as great as mine!</A><br>
|
195 |
+
</blockquote>
|
196 |
+
|
197 |
+
<A NAME=speech23><b>PRINCE HENRY</b></a>
|
198 |
+
<blockquote>
|
199 |
+
<A NAME=73>I'll make it greater ere I part from thee;</A><br>
|
200 |
+
<A NAME=74>And all the budding honours on thy crest</A><br>
|
201 |
+
<A NAME=75>I'll crop, to make a garland for my head.</A><br>
|
202 |
+
</blockquote>
|
203 |
+
|
204 |
+
<A NAME=speech24><b>HOTSPUR</b></a>
|
205 |
+
<blockquote>
|
206 |
+
<A NAME=76>I can no longer brook thy vanities.</A><br>
|
207 |
+
<p><i>They fight</i></p>
|
208 |
+
<p><i>Enter FALSTAFF</i></p>
|
209 |
+
</blockquote>
|
210 |
+
|
211 |
+
<A NAME=speech25><b>FALSTAFF</b></a>
|
212 |
+
<blockquote>
|
213 |
+
<A NAME=77>Well said, Hal! to it Hal! Nay, you shall find no</A><br>
|
214 |
+
<A NAME=78>boy's play here, I can tell you.</A><br>
|
215 |
+
<p><i>Re-enter DOUGLAS; he fights with FALSTAFF, who falls down as if he were dead, and exit DOUGLAS. HOTSPUR is wounded, and falls</i></p>
|
216 |
+
</blockquote>
|
217 |
+
|
218 |
+
<A NAME=speech26><b>HOTSPUR</b></a>
|
219 |
+
<blockquote>
|
220 |
+
<A NAME=79>O, Harry, thou hast robb'd me of my youth!</A><br>
|
221 |
+
<A NAME=80>I better brook the loss of brittle life</A><br>
|
222 |
+
<A NAME=81>Than those proud titles thou hast won of me;</A><br>
|
223 |
+
<A NAME=82>They wound my thoughts worse than sword my flesh:</A><br>
|
224 |
+
<A NAME=83>But thought's the slave of life, and life time's fool;</A><br>
|
225 |
+
<A NAME=84>And time, that takes survey of all the world,</A><br>
|
226 |
+
<A NAME=85>Must have a stop. O, I could prophesy,</A><br>
|
227 |
+
<A NAME=86>But that the earthy and cold hand of death</A><br>
|
228 |
+
<A NAME=87>Lies on my tongue: no, Percy, thou art dust</A><br>
|
229 |
+
<A NAME=88>And food for--</A><br>
|
230 |
+
<p><i>Dies</i></p>
|
231 |
+
</blockquote>
|
232 |
+
|
233 |
+
<A NAME=speech27><b>PRINCE HENRY</b></a>
|
234 |
+
<blockquote>
|
235 |
+
<A NAME=89>For worms, brave Percy: fare thee well, great heart!</A><br>
|
236 |
+
<A NAME=90>Ill-weaved ambition, how much art thou shrunk!</A><br>
|
237 |
+
<A NAME=91>When that this body did contain a spirit,</A><br>
|
238 |
+
<A NAME=92>A kingdom for it was too small a bound;</A><br>
|
239 |
+
<A NAME=93>But now two paces of the vilest earth</A><br>
|
240 |
+
<A NAME=94>Is room enough: this earth that bears thee dead</A><br>
|
241 |
+
<A NAME=95>Bears not alive so stout a gentleman.</A><br>
|
242 |
+
<A NAME=96>If thou wert sensible of courtesy,</A><br>
|
243 |
+
<A NAME=97>I should not make so dear a show of zeal:</A><br>
|
244 |
+
<A NAME=98>But let my favours hide thy mangled face;</A><br>
|
245 |
+
<A NAME=99>And, even in thy behalf, I'll thank myself</A><br>
|
246 |
+
<A NAME=100>For doing these fair rites of tenderness.</A><br>
|
247 |
+
<A NAME=101>Adieu, and take thy praise with thee to heaven!</A><br>
|
248 |
+
<A NAME=102>Thy ignominy sleep with thee in the grave,</A><br>
|
249 |
+
<A NAME=103>But not remember'd in thy epitaph!</A><br>
|
250 |
+
<p><i>He spieth FALSTAFF on the ground</i></p>
|
251 |
+
<A NAME=104>What, old acquaintance! could not all this flesh</A><br>
|
252 |
+
<A NAME=105>Keep in a little life? Poor Jack, farewell!</A><br>
|
253 |
+
<A NAME=106>I could have better spared a better man:</A><br>
|
254 |
+
<A NAME=107>O, I should have a heavy miss of thee,</A><br>
|
255 |
+
<A NAME=108>If I were much in love with vanity!</A><br>
|
256 |
+
<A NAME=109>Death hath not struck so fat a deer to-day,</A><br>
|
257 |
+
<A NAME=110>Though many dearer, in this bloody fray.</A><br>
|
258 |
+
<A NAME=111>Embowell'd will I see thee by and by:</A><br>
|
259 |
+
<A NAME=112>Till then in blood by noble Percy lie.</A><br>
|
260 |
+
<p><i>Exit PRINCE HENRY</i></p>
|
261 |
+
</blockquote>
|
262 |
+
|
263 |
+
<A NAME=speech28><b>FALSTAFF</b></a>
|
264 |
+
<blockquote>
|
265 |
+
<A NAME=113>[Rising up] Embowelled! if thou embowel me to-day,</A><br>
|
266 |
+
<A NAME=114>I'll give you leave to powder me and eat me too</A><br>
|
267 |
+
<A NAME=115>to-morrow. 'Sblood,'twas time to counterfeit, or</A><br>
|
268 |
+
<A NAME=116>that hot termagant Scot had paid me scot and lot too.</A><br>
|
269 |
+
<A NAME=117>Counterfeit? I lie, I am no counterfeit: to die,</A><br>
|
270 |
+
<A NAME=118>is to be a counterfeit; for he is but the</A><br>
|
271 |
+
<A NAME=119>counterfeit of a man who hath not the life of a man:</A><br>
|
272 |
+
<A NAME=120>but to counterfeit dying, when a man thereby</A><br>
|
273 |
+
<A NAME=121>liveth, is to be no counterfeit, but the true and</A><br>
|
274 |
+
<A NAME=122>perfect image of life indeed. The better part of</A><br>
|
275 |
+
<A NAME=123>valour is discretion; in the which better part I</A><br>
|
276 |
+
<A NAME=124>have saved my life.'Zounds, I am afraid of this</A><br>
|
277 |
+
<A NAME=125>gunpowder Percy, though he be dead: how, if he</A><br>
|
278 |
+
<A NAME=126>should counterfeit too and rise? by my faith, I am</A><br>
|
279 |
+
<A NAME=127>afraid he would prove the better counterfeit.</A><br>
|
280 |
+
<A NAME=128>Therefore I'll make him sure; yea, and I'll swear I</A><br>
|
281 |
+
<A NAME=129>killed him. Why may not he rise as well as I?</A><br>
|
282 |
+
<A NAME=130>Nothing confutes me but eyes, and nobody sees me.</A><br>
|
283 |
+
<A NAME=131>Therefore, sirrah,</A><br>
|
284 |
+
<p><i>Stabbing him</i></p>
|
285 |
+
<A NAME=132>with a new wound in your thigh, come you along with me.</A><br>
|
286 |
+
<p><i>Takes up HOTSPUR on his back</i></p>
|
287 |
+
<p><i>Re-enter PRINCE HENRY and LORD JOHN OF LANCASTER</i></p>
|
288 |
+
</blockquote>
|
289 |
+
|
290 |
+
<A NAME=speech29><b>PRINCE HENRY</b></a>
|
291 |
+
<blockquote>
|
292 |
+
<A NAME=133>Come, brother John; full bravely hast thou flesh'd</A><br>
|
293 |
+
<A NAME=134>Thy maiden sword.</A><br>
|
294 |
+
</blockquote>
|
295 |
+
|
296 |
+
<A NAME=speech30><b>LANCASTER</b></a>
|
297 |
+
<blockquote>
|
298 |
+
<A NAME=135> But, soft! whom have we here?</A><br>
|
299 |
+
<A NAME=136>Did you not tell me this fat man was dead?</A><br>
|
300 |
+
</blockquote>
|
301 |
+
|
302 |
+
<A NAME=speech31><b>PRINCE HENRY</b></a>
|
303 |
+
<blockquote>
|
304 |
+
<A NAME=137>I did; I saw him dead,</A><br>
|
305 |
+
<A NAME=138>Breathless and bleeding on the ground. Art</A><br>
|
306 |
+
<A NAME=139>thou alive?</A><br>
|
307 |
+
<A NAME=140>Or is it fantasy that plays upon our eyesight?</A><br>
|
308 |
+
<A NAME=141>I prithee, speak; we will not trust our eyes</A><br>
|
309 |
+
<A NAME=142>Without our ears: thou art not what thou seem'st.</A><br>
|
310 |
+
</blockquote>
|
311 |
+
|
312 |
+
<A NAME=speech32><b>FALSTAFF</b></a>
|
313 |
+
<blockquote>
|
314 |
+
<A NAME=143>No, that's certain; I am not a double man: but if I</A><br>
|
315 |
+
<A NAME=144>be not Jack Falstaff, then am I a Jack. There is Percy:</A><br>
|
316 |
+
<p><i>Throwing the body down</i></p>
|
317 |
+
<A NAME=145>if your father will do me any honour, so; if not, let</A><br>
|
318 |
+
<A NAME=146>him kill the next Percy himself. I look to be either</A><br>
|
319 |
+
<A NAME=147>earl or duke, I can assure you.</A><br>
|
320 |
+
</blockquote>
|
321 |
+
|
322 |
+
<A NAME=speech33><b>PRINCE HENRY</b></a>
|
323 |
+
<blockquote>
|
324 |
+
<A NAME=148>Why, Percy I killed myself and saw thee dead.</A><br>
|
325 |
+
</blockquote>
|
326 |
+
|
327 |
+
<A NAME=speech34><b>FALSTAFF</b></a>
|
328 |
+
<blockquote>
|
329 |
+
<A NAME=149>Didst thou? Lord, Lord, how this world is given to</A><br>
|
330 |
+
<A NAME=150>lying! I grant you I was down and out of breath;</A><br>
|
331 |
+
<A NAME=151>and so was he: but we rose both at an instant and</A><br>
|
332 |
+
<A NAME=152>fought a long hour by Shrewsbury clock. If I may be</A><br>
|
333 |
+
<A NAME=153>believed, so; if not, let them that should reward</A><br>
|
334 |
+
<A NAME=154>valour bear the sin upon their own heads. I'll take</A><br>
|
335 |
+
<A NAME=155>it upon my death, I gave him this wound in the</A><br>
|
336 |
+
<A NAME=156>thigh: if the man were alive and would deny it,</A><br>
|
337 |
+
<A NAME=157>'zounds, I would make him eat a piece of my sword.</A><br>
|
338 |
+
</blockquote>
|
339 |
+
|
340 |
+
<A NAME=speech35><b>LANCASTER</b></a>
|
341 |
+
<blockquote>
|
342 |
+
<A NAME=158>This is the strangest tale that ever I heard.</A><br>
|
343 |
+
</blockquote>
|
344 |
+
|
345 |
+
<A NAME=speech36><b>PRINCE HENRY</b></a>
|
346 |
+
<blockquote>
|
347 |
+
<A NAME=159>This is the strangest fellow, brother John.</A><br>
|
348 |
+
<A NAME=160>Come, bring your luggage nobly on your back:</A><br>
|
349 |
+
<A NAME=161>For my part, if a lie may do thee grace,</A><br>
|
350 |
+
<A NAME=162>I'll gild it with the happiest terms I have.</A><br>
|
351 |
+
<p><i>A retreat is sounded</i></p>
|
352 |
+
<A NAME=163>The trumpet sounds retreat; the day is ours.</A><br>
|
353 |
+
<A NAME=164>Come, brother, let us to the highest of the field,</A><br>
|
354 |
+
<A NAME=165>To see what friends are living, who are dead.</A><br>
|
355 |
+
<p><i>Exeunt PRINCE HENRY and LANCASTER</i></p>
|
356 |
+
</blockquote>
|
357 |
+
|
358 |
+
<A NAME=speech37><b>FALSTAFF</b></a>
|
359 |
+
<blockquote>
|
360 |
+
<A NAME=166>I'll follow, as they say, for reward. He that</A><br>
|
361 |
+
<A NAME=167>rewards me, God reward him! If I do grow great,</A><br>
|
362 |
+
<A NAME=168>I'll grow less; for I'll purge, and leave sack, and</A><br>
|
363 |
+
<A NAME=169>live cleanly as a nobleman should do.</A><br>
|
364 |
+
<p><i>Exit</i></p>
|
365 |
+
</blockquote>
|
366 |
+
<table width="100%" bgcolor="#CCF6F6">
|
367 |
+
<tr><td class="nav" align="center">
|
368 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
369 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
370 |
+
| Act 5, Scene 4
|
371 |
+
<br>
|
372 |
+
<a href="1henryiv.5.3.html">Previous scene</A>
|
373 |
+
| <a href="1henryiv.5.5.html">Next scene</A>
|
374 |
+
</table>
|
375 |
+
|
376 |
+
</body>
|
377 |
+
</html>
|
378 |
+
|
379 |
+
|
data/1henryiv.5.5.html
ADDED
@@ -0,0 +1,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE V. Another part of the field.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryiv/">Henry IV, part 1</A>
|
18 |
+
| Act 5, Scene 5
|
19 |
+
<br>
|
20 |
+
<a href="1henryiv.5.4.html">Previous scene</A>
|
21 |
+
</table>
|
22 |
+
|
23 |
+
<H3>SCENE V. Another part of the field.</H3>
|
24 |
+
|
25 |
+
<p><blockquote>
|
26 |
+
<i>The trumpets sound. Enter KING HENRY IV, PRINCE HENRY, LORD JOHN LANCASTER, EARL OF WESTMORELAND, with WORCESTER and VERNON prisoners</i>
|
27 |
+
</blockquote>
|
28 |
+
|
29 |
+
<A NAME=speech1><b>KING HENRY IV</b></a>
|
30 |
+
<blockquote>
|
31 |
+
<A NAME=1>Thus ever did rebellion find rebuke.</A><br>
|
32 |
+
<A NAME=2>Ill-spirited Worcester! did not we send grace,</A><br>
|
33 |
+
<A NAME=3>Pardon and terms of love to all of you?</A><br>
|
34 |
+
<A NAME=4>And wouldst thou turn our offers contrary?</A><br>
|
35 |
+
<A NAME=5>Misuse the tenor of thy kinsman's trust?</A><br>
|
36 |
+
<A NAME=6>Three knights upon our party slain to-day,</A><br>
|
37 |
+
<A NAME=7>A noble earl and many a creature else</A><br>
|
38 |
+
<A NAME=8>Had been alive this hour,</A><br>
|
39 |
+
<A NAME=9>If like a Christian thou hadst truly borne</A><br>
|
40 |
+
<A NAME=10>Betwixt our armies true intelligence.</A><br>
|
41 |
+
</blockquote>
|
42 |
+
|
43 |
+
<A NAME=speech2><b>EARL OF WORCESTER</b></a>
|
44 |
+
<blockquote>
|
45 |
+
<A NAME=11>What I have done my safety urged me to;</A><br>
|
46 |
+
<A NAME=12>And I embrace this fortune patiently,</A><br>
|
47 |
+
<A NAME=13>Since not to be avoided it falls on me.</A><br>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech3><b>KING HENRY IV</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=14>Bear Worcester to the death and Vernon too:</A><br>
|
53 |
+
<A NAME=15>Other offenders we will pause upon.</A><br>
|
54 |
+
<p><i>Exeunt WORCESTER and VERNON, guarded</i></p>
|
55 |
+
<A NAME=16>How goes the field?</A><br>
|
56 |
+
</blockquote>
|
57 |
+
|
58 |
+
<A NAME=speech4><b>PRINCE HENRY</b></a>
|
59 |
+
<blockquote>
|
60 |
+
<A NAME=17>The noble Scot, Lord Douglas, when he saw</A><br>
|
61 |
+
<A NAME=18>The fortune of the day quite turn'd from him,</A><br>
|
62 |
+
<A NAME=19>The noble Percy slain, and all his men</A><br>
|
63 |
+
<A NAME=20>Upon the foot of fear, fled with the rest;</A><br>
|
64 |
+
<A NAME=21>And falling from a hill, he was so bruised</A><br>
|
65 |
+
<A NAME=22>That the pursuers took him. At my tent</A><br>
|
66 |
+
<A NAME=23>The Douglas is; and I beseech your grace</A><br>
|
67 |
+
<A NAME=24>I may dispose of him.</A><br>
|
68 |
+
</blockquote>
|
69 |
+
|
70 |
+
<A NAME=speech5><b>KING HENRY IV</b></a>
|
71 |
+
<blockquote>
|
72 |
+
<A NAME=25>With all my heart.</A><br>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech6><b>PRINCE HENRY</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=26>Then, brother John of Lancaster, to you</A><br>
|
78 |
+
<A NAME=27>This honourable bounty shall belong:</A><br>
|
79 |
+
<A NAME=28>Go to the Douglas, and deliver him</A><br>
|
80 |
+
<A NAME=29>Up to his pleasure, ransomless and free:</A><br>
|
81 |
+
<A NAME=30>His valour shown upon our crests to-day</A><br>
|
82 |
+
<A NAME=31>Hath taught us how to cherish such high deeds</A><br>
|
83 |
+
<A NAME=32>Even in the bosom of our adversaries.</A><br>
|
84 |
+
</blockquote>
|
85 |
+
|
86 |
+
<A NAME=speech7><b>LANCASTER</b></a>
|
87 |
+
<blockquote>
|
88 |
+
<A NAME=33>I thank your grace for this high courtesy,</A><br>
|
89 |
+
<A NAME=34>Which I shall give away immediately.</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech8><b>KING HENRY IV</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=35>Then this remains, that we divide our power.</A><br>
|
95 |
+
<A NAME=36>You, son John, and my cousin Westmoreland</A><br>
|
96 |
+
<A NAME=37>Towards York shall bend you with your dearest speed,</A><br>
|
97 |
+
<A NAME=38>To meet Northumberland and the prelate Scroop,</A><br>
|
98 |
+
<A NAME=39>Who, as we hear, are busily in arms:</A><br>
|
99 |
+
<A NAME=40>Myself and you, son Harry, will towards Wales,</A><br>
|
100 |
+
<A NAME=41>To fight with Glendower and the Earl of March.</A><br>
|
101 |
+
<A NAME=42>Rebellion in this land shall lose his sway,</A><br>
|
102 |
+
<A NAME=43>Meeting the cheque of such another day:</A><br>
|
103 |
+
<A NAME=44>And since this business so fair is done,</A><br>
|
104 |
+
<A NAME=45>Let us not leave till all our own be won.</A><br>
|
105 |
+
<p><i>Exeunt</i></p>
|
106 |
+
|
data/1henryvi.1.1.html
ADDED
@@ -0,0 +1,352 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. Westminster Abbey.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 1, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.1.2.html">Next scene</A>
|
21 |
+
</table>
|
22 |
+
|
23 |
+
<h3>SCENE I. Westminster Abbey.</H3>
|
24 |
+
|
25 |
+
<p><blockquote>
|
26 |
+
<i>Dead March. Enter the Funeral of KING HENRY the Fifth, attended on by Dukes of BEDFORD, Regent of France; GLOUCESTER, Protector; and EXETER, Earl of WARWICK, the BISHOP OF WINCHESTER, Heralds, & c</i>
|
27 |
+
</blockquote>
|
28 |
+
|
29 |
+
<A NAME=speech1><b>BEDFORD</b></a>
|
30 |
+
<blockquote>
|
31 |
+
<A NAME=1>Hung be the heavens with black, yield day to night!</A><br>
|
32 |
+
<A NAME=2>Comets, importing change of times and states,</A><br>
|
33 |
+
<A NAME=3>Brandish your crystal tresses in the sky,</A><br>
|
34 |
+
<A NAME=4>And with them scourge the bad revolting stars</A><br>
|
35 |
+
<A NAME=5>That have consented unto Henry's death!</A><br>
|
36 |
+
<A NAME=6>King Henry the Fifth, too famous to live long!</A><br>
|
37 |
+
<A NAME=7>England ne'er lost a king of so much worth.</A><br>
|
38 |
+
</blockquote>
|
39 |
+
|
40 |
+
<A NAME=speech2><b>GLOUCESTER</b></a>
|
41 |
+
<blockquote>
|
42 |
+
<A NAME=8>England ne'er had a king until his time.</A><br>
|
43 |
+
<A NAME=9>Virtue he had, deserving to command:</A><br>
|
44 |
+
<A NAME=10>His brandish'd sword did blind men with his beams:</A><br>
|
45 |
+
<A NAME=11>His arms spread wider than a dragon's wings;</A><br>
|
46 |
+
<A NAME=12>His sparking eyes, replete with wrathful fire,</A><br>
|
47 |
+
<A NAME=13>More dazzled and drove back his enemies</A><br>
|
48 |
+
<A NAME=14>Than mid-day sun fierce bent against their faces.</A><br>
|
49 |
+
<A NAME=15>What should I say? his deeds exceed all speech:</A><br>
|
50 |
+
<A NAME=16>He ne'er lift up his hand but conquered.</A><br>
|
51 |
+
</blockquote>
|
52 |
+
|
53 |
+
<A NAME=speech3><b>EXETER</b></a>
|
54 |
+
<blockquote>
|
55 |
+
<A NAME=17>We mourn in black: why mourn we not in blood?</A><br>
|
56 |
+
<A NAME=18>Henry is dead and never shall revive:</A><br>
|
57 |
+
<A NAME=19>Upon a wooden coffin we attend,</A><br>
|
58 |
+
<A NAME=20>And death's dishonourable victory</A><br>
|
59 |
+
<A NAME=21>We with our stately presence glorify,</A><br>
|
60 |
+
<A NAME=22>Like captives bound to a triumphant car.</A><br>
|
61 |
+
<A NAME=23>What! shall we curse the planets of mishap</A><br>
|
62 |
+
<A NAME=24>That plotted thus our glory's overthrow?</A><br>
|
63 |
+
<A NAME=25>Or shall we think the subtle-witted French</A><br>
|
64 |
+
<A NAME=26>Conjurers and sorcerers, that afraid of him</A><br>
|
65 |
+
<A NAME=27>By magic verses have contrived his end?</A><br>
|
66 |
+
<A NAME=28>BISHOP</A><br>
|
67 |
+
</blockquote>
|
68 |
+
|
69 |
+
<A NAME=speech4><b>OF WINCHESTER</b></a>
|
70 |
+
<blockquote>
|
71 |
+
<A NAME=29>He was a king bless'd of the King of kings.</A><br>
|
72 |
+
<A NAME=30>Unto the French the dreadful judgement-day</A><br>
|
73 |
+
<A NAME=31>So dreadful will not be as was his sight.</A><br>
|
74 |
+
<A NAME=32>The battles of the Lord of hosts he fought:</A><br>
|
75 |
+
<A NAME=33>The church's prayers made him so prosperous.</A><br>
|
76 |
+
</blockquote>
|
77 |
+
|
78 |
+
<A NAME=speech5><b>GLOUCESTER</b></a>
|
79 |
+
<blockquote>
|
80 |
+
<A NAME=34>The church! where is it? Had not churchmen pray'd,</A><br>
|
81 |
+
<A NAME=35>His thread of life had not so soon decay'd:</A><br>
|
82 |
+
<A NAME=36>None do you like but an effeminate prince,</A><br>
|
83 |
+
<A NAME=37>Whom, like a school-boy, you may over-awe.</A><br>
|
84 |
+
<A NAME=38>BISHOP</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech6><b>OF WINCHESTER</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=39>Gloucester, whate'er we like, thou art protector</A><br>
|
90 |
+
<A NAME=40>And lookest to command the prince and realm.</A><br>
|
91 |
+
<A NAME=41>Thy wife is proud; she holdeth thee in awe,</A><br>
|
92 |
+
<A NAME=42>More than God or religious churchmen may.</A><br>
|
93 |
+
</blockquote>
|
94 |
+
|
95 |
+
<A NAME=speech7><b>GLOUCESTER</b></a>
|
96 |
+
<blockquote>
|
97 |
+
<A NAME=43>Name not religion, for thou lovest the flesh,</A><br>
|
98 |
+
<A NAME=44>And ne'er throughout the year to church thou go'st</A><br>
|
99 |
+
<A NAME=45>Except it be to pray against thy foes.</A><br>
|
100 |
+
</blockquote>
|
101 |
+
|
102 |
+
<A NAME=speech8><b>BEDFORD</b></a>
|
103 |
+
<blockquote>
|
104 |
+
<A NAME=46>Cease, cease these jars and rest your minds in peace:</A><br>
|
105 |
+
<A NAME=47>Let's to the altar: heralds, wait on us:</A><br>
|
106 |
+
<A NAME=48>Instead of gold, we'll offer up our arms:</A><br>
|
107 |
+
<A NAME=49>Since arms avail not now that Henry's dead.</A><br>
|
108 |
+
<A NAME=50>Posterity, await for wretched years,</A><br>
|
109 |
+
<A NAME=51>When at their mothers' moist eyes babes shall suck,</A><br>
|
110 |
+
<A NAME=52>Our isle be made a nourish of salt tears,</A><br>
|
111 |
+
<A NAME=53>And none but women left to wail the dead.</A><br>
|
112 |
+
<A NAME=54>Henry the Fifth, thy ghost I invocate:</A><br>
|
113 |
+
<A NAME=55>Prosper this realm, keep it from civil broils,</A><br>
|
114 |
+
<A NAME=56>Combat with adverse planets in the heavens!</A><br>
|
115 |
+
<A NAME=57>A far more glorious star thy soul will make</A><br>
|
116 |
+
<A NAME=58>Than Julius Caesar or bright--</A><br>
|
117 |
+
<p><i>Enter a Messenger</i></p>
|
118 |
+
</blockquote>
|
119 |
+
|
120 |
+
<A NAME=speech9><b>Messenger</b></a>
|
121 |
+
<blockquote>
|
122 |
+
<A NAME=59>My honourable lords, health to you all!</A><br>
|
123 |
+
<A NAME=60>Sad tidings bring I to you out of France,</A><br>
|
124 |
+
<A NAME=61>Of loss, of slaughter and discomfiture:</A><br>
|
125 |
+
<A NAME=62>Guienne, Champagne, Rheims, Orleans,</A><br>
|
126 |
+
<A NAME=63>Paris, Guysors, Poictiers, are all quite lost.</A><br>
|
127 |
+
</blockquote>
|
128 |
+
|
129 |
+
<A NAME=speech10><b>BEDFORD</b></a>
|
130 |
+
<blockquote>
|
131 |
+
<A NAME=64>What say'st thou, man, before dead Henry's corse?</A><br>
|
132 |
+
<A NAME=65>Speak softly, or the loss of those great towns</A><br>
|
133 |
+
<A NAME=66>Will make him burst his lead and rise from death.</A><br>
|
134 |
+
</blockquote>
|
135 |
+
|
136 |
+
<A NAME=speech11><b>GLOUCESTER</b></a>
|
137 |
+
<blockquote>
|
138 |
+
<A NAME=67>Is Paris lost? is Rouen yielded up?</A><br>
|
139 |
+
<A NAME=68>If Henry were recall'd to life again,</A><br>
|
140 |
+
<A NAME=69>These news would cause him once more yield the ghost.</A><br>
|
141 |
+
</blockquote>
|
142 |
+
|
143 |
+
<A NAME=speech12><b>EXETER</b></a>
|
144 |
+
<blockquote>
|
145 |
+
<A NAME=70>How were they lost? what treachery was used?</A><br>
|
146 |
+
</blockquote>
|
147 |
+
|
148 |
+
<A NAME=speech13><b>Messenger</b></a>
|
149 |
+
<blockquote>
|
150 |
+
<A NAME=71>No treachery; but want of men and money.</A><br>
|
151 |
+
<A NAME=72>Amongst the soldiers this is muttered,</A><br>
|
152 |
+
<A NAME=73>That here you maintain several factions,</A><br>
|
153 |
+
<A NAME=74>And whilst a field should be dispatch'd and fought,</A><br>
|
154 |
+
<A NAME=75>You are disputing of your generals:</A><br>
|
155 |
+
<A NAME=76>One would have lingering wars with little cost;</A><br>
|
156 |
+
<A NAME=77>Another would fly swift, but wanteth wings;</A><br>
|
157 |
+
<A NAME=78>A third thinks, without expense at all,</A><br>
|
158 |
+
<A NAME=79>By guileful fair words peace may be obtain'd.</A><br>
|
159 |
+
<A NAME=80>Awake, awake, English nobility!</A><br>
|
160 |
+
<A NAME=81>Let not sloth dim your horrors new-begot:</A><br>
|
161 |
+
<A NAME=82>Cropp'd are the flower-de-luces in your arms;</A><br>
|
162 |
+
<A NAME=83>Of England's coat one half is cut away.</A><br>
|
163 |
+
</blockquote>
|
164 |
+
|
165 |
+
<A NAME=speech14><b>EXETER</b></a>
|
166 |
+
<blockquote>
|
167 |
+
<A NAME=84>Were our tears wanting to this funeral,</A><br>
|
168 |
+
<A NAME=85>These tidings would call forth their flowing tides.</A><br>
|
169 |
+
</blockquote>
|
170 |
+
|
171 |
+
<A NAME=speech15><b>BEDFORD</b></a>
|
172 |
+
<blockquote>
|
173 |
+
<A NAME=86>Me they concern; Regent I am of France.</A><br>
|
174 |
+
<A NAME=87>Give me my steeled coat. I'll fight for France.</A><br>
|
175 |
+
<A NAME=88>Away with these disgraceful wailing robes!</A><br>
|
176 |
+
<A NAME=89>Wounds will I lend the French instead of eyes,</A><br>
|
177 |
+
<A NAME=90>To weep their intermissive miseries.</A><br>
|
178 |
+
<p><i>Enter to them another Messenger</i></p>
|
179 |
+
</blockquote>
|
180 |
+
|
181 |
+
<A NAME=speech16><b>Messenger</b></a>
|
182 |
+
<blockquote>
|
183 |
+
<A NAME=91>Lords, view these letters full of bad mischance.</A><br>
|
184 |
+
<A NAME=92>France is revolted from the English quite,</A><br>
|
185 |
+
<A NAME=93>Except some petty towns of no import:</A><br>
|
186 |
+
<A NAME=94>The Dauphin Charles is crowned king of Rheims;</A><br>
|
187 |
+
<A NAME=95>The Bastard of Orleans with him is join'd;</A><br>
|
188 |
+
<A NAME=96>Reignier, Duke of Anjou, doth take his part;</A><br>
|
189 |
+
<A NAME=97>The Duke of Alencon flieth to his side.</A><br>
|
190 |
+
</blockquote>
|
191 |
+
|
192 |
+
<A NAME=speech17><b>EXETER</b></a>
|
193 |
+
<blockquote>
|
194 |
+
<A NAME=98>The Dauphin crowned king! all fly to him!</A><br>
|
195 |
+
<A NAME=99>O, whither shall we fly from this reproach?</A><br>
|
196 |
+
</blockquote>
|
197 |
+
|
198 |
+
<A NAME=speech18><b>GLOUCESTER</b></a>
|
199 |
+
<blockquote>
|
200 |
+
<A NAME=100>We will not fly, but to our enemies' throats.</A><br>
|
201 |
+
<A NAME=101>Bedford, if thou be slack, I'll fight it out.</A><br>
|
202 |
+
</blockquote>
|
203 |
+
|
204 |
+
<A NAME=speech19><b>BEDFORD</b></a>
|
205 |
+
<blockquote>
|
206 |
+
<A NAME=102>Gloucester, why doubt'st thou of my forwardness?</A><br>
|
207 |
+
<A NAME=103>An army have I muster'd in my thoughts,</A><br>
|
208 |
+
<A NAME=104>Wherewith already France is overrun.</A><br>
|
209 |
+
<p><i>Enter another Messenger</i></p>
|
210 |
+
</blockquote>
|
211 |
+
|
212 |
+
<A NAME=speech20><b>Messenger</b></a>
|
213 |
+
<blockquote>
|
214 |
+
<A NAME=105>My gracious lords, to add to your laments,</A><br>
|
215 |
+
<A NAME=106>Wherewith you now bedew King Henry's hearse,</A><br>
|
216 |
+
<A NAME=107>I must inform you of a dismal fight</A><br>
|
217 |
+
<A NAME=108>Betwixt the stout Lord Talbot and the French.</A><br>
|
218 |
+
<A NAME=109>BISHOP</A><br>
|
219 |
+
</blockquote>
|
220 |
+
|
221 |
+
<A NAME=speech21><b>OF WINCHESTER</b></a>
|
222 |
+
<blockquote>
|
223 |
+
<A NAME=110>What! wherein Talbot overcame? is't so?</A><br>
|
224 |
+
</blockquote>
|
225 |
+
|
226 |
+
<A NAME=speech22><b>Messenger</b></a>
|
227 |
+
<blockquote>
|
228 |
+
<A NAME=111>O, no; wherein Lord Talbot was o'erthrown:</A><br>
|
229 |
+
<A NAME=112>The circumstance I'll tell you more at large.</A><br>
|
230 |
+
<A NAME=113>The tenth of August last this dreadful lord,</A><br>
|
231 |
+
<A NAME=114>Retiring from the siege of Orleans,</A><br>
|
232 |
+
<A NAME=115>Having full scarce six thousand in his troop.</A><br>
|
233 |
+
<A NAME=116>By three and twenty thousand of the French</A><br>
|
234 |
+
<A NAME=117>Was round encompassed and set upon.</A><br>
|
235 |
+
<A NAME=118>No leisure had he to enrank his men;</A><br>
|
236 |
+
<A NAME=119>He wanted pikes to set before his archers;</A><br>
|
237 |
+
<A NAME=120>Instead whereof sharp stakes pluck'd out of hedges</A><br>
|
238 |
+
<A NAME=121>They pitched in the ground confusedly,</A><br>
|
239 |
+
<A NAME=122>To keep the horsemen off from breaking in.</A><br>
|
240 |
+
<A NAME=123>More than three hours the fight continued;</A><br>
|
241 |
+
<A NAME=124>Where valiant Talbot above human thought</A><br>
|
242 |
+
<A NAME=125>Enacted wonders with his sword and lance:</A><br>
|
243 |
+
<A NAME=126>Hundreds he sent to hell, and none durst stand him;</A><br>
|
244 |
+
<A NAME=127>Here, there, and every where, enraged he flew:</A><br>
|
245 |
+
<A NAME=128>The French exclaim'd, the devil was in arms;</A><br>
|
246 |
+
<A NAME=129>All the whole army stood agazed on him:</A><br>
|
247 |
+
<A NAME=130>His soldiers spying his undaunted spirit</A><br>
|
248 |
+
<A NAME=131>A Talbot! a Talbot! cried out amain</A><br>
|
249 |
+
<A NAME=132>And rush'd into the bowels of the battle.</A><br>
|
250 |
+
<A NAME=133>Here had the conquest fully been seal'd up,</A><br>
|
251 |
+
<A NAME=134>If Sir John Fastolfe had not play'd the coward:</A><br>
|
252 |
+
<A NAME=135>He, being in the vaward, placed behind</A><br>
|
253 |
+
<A NAME=136>With purpose to relieve and follow them,</A><br>
|
254 |
+
<A NAME=137>Cowardly fled, not having struck one stroke.</A><br>
|
255 |
+
<A NAME=138>Hence grew the general wreck and massacre;</A><br>
|
256 |
+
<A NAME=139>Enclosed were they with their enemies:</A><br>
|
257 |
+
<A NAME=140>A base Walloon, to win the Dauphin's grace,</A><br>
|
258 |
+
<A NAME=141>Thrust Talbot with a spear into the back,</A><br>
|
259 |
+
<A NAME=142>Whom all France with their chief assembled strength</A><br>
|
260 |
+
<A NAME=143>Durst not presume to look once in the face.</A><br>
|
261 |
+
</blockquote>
|
262 |
+
|
263 |
+
<A NAME=speech23><b>BEDFORD</b></a>
|
264 |
+
<blockquote>
|
265 |
+
<A NAME=144>Is Talbot slain? then I will slay myself,</A><br>
|
266 |
+
<A NAME=145>For living idly here in pomp and ease,</A><br>
|
267 |
+
<A NAME=146>Whilst such a worthy leader, wanting aid,</A><br>
|
268 |
+
<A NAME=147>Unto his dastard foemen is betray'd.</A><br>
|
269 |
+
</blockquote>
|
270 |
+
|
271 |
+
<A NAME=speech24><b>Messenger</b></a>
|
272 |
+
<blockquote>
|
273 |
+
<A NAME=148>O no, he lives; but is took prisoner,</A><br>
|
274 |
+
<A NAME=149>And Lord Scales with him and Lord Hungerford:</A><br>
|
275 |
+
<A NAME=150>Most of the rest slaughter'd or took likewise.</A><br>
|
276 |
+
</blockquote>
|
277 |
+
|
278 |
+
<A NAME=speech25><b>BEDFORD</b></a>
|
279 |
+
<blockquote>
|
280 |
+
<A NAME=151>His ransom there is none but I shall pay:</A><br>
|
281 |
+
<A NAME=152>I'll hale the Dauphin headlong from his throne:</A><br>
|
282 |
+
<A NAME=153>His crown shall be the ransom of my friend;</A><br>
|
283 |
+
<A NAME=154>Four of their lords I'll change for one of ours.</A><br>
|
284 |
+
<A NAME=155>Farewell, my masters; to my task will I;</A><br>
|
285 |
+
<A NAME=156>Bonfires in France forthwith I am to make,</A><br>
|
286 |
+
<A NAME=157>To keep our great Saint George's feast withal:</A><br>
|
287 |
+
<A NAME=158>Ten thousand soldiers with me I will take,</A><br>
|
288 |
+
<A NAME=159>Whose bloody deeds shall make all Europe quake.</A><br>
|
289 |
+
</blockquote>
|
290 |
+
|
291 |
+
<A NAME=speech26><b>Messenger</b></a>
|
292 |
+
<blockquote>
|
293 |
+
<A NAME=160>So you had need; for Orleans is besieged;</A><br>
|
294 |
+
<A NAME=161>The English army is grown weak and faint:</A><br>
|
295 |
+
<A NAME=162>The Earl of Salisbury craveth supply,</A><br>
|
296 |
+
<A NAME=163>And hardly keeps his men from mutiny,</A><br>
|
297 |
+
<A NAME=164>Since they, so few, watch such a multitude.</A><br>
|
298 |
+
</blockquote>
|
299 |
+
|
300 |
+
<A NAME=speech27><b>EXETER</b></a>
|
301 |
+
<blockquote>
|
302 |
+
<A NAME=165>Remember, lords, your oaths to Henry sworn,</A><br>
|
303 |
+
<A NAME=166>Either to quell the Dauphin utterly,</A><br>
|
304 |
+
<A NAME=167>Or bring him in obedience to your yoke.</A><br>
|
305 |
+
</blockquote>
|
306 |
+
|
307 |
+
<A NAME=speech28><b>BEDFORD</b></a>
|
308 |
+
<blockquote>
|
309 |
+
<A NAME=168>I do remember it; and here take my leave,</A><br>
|
310 |
+
<A NAME=169>To go about my preparation.</A><br>
|
311 |
+
<p><i>Exit</i></p>
|
312 |
+
</blockquote>
|
313 |
+
|
314 |
+
<A NAME=speech29><b>GLOUCESTER</b></a>
|
315 |
+
<blockquote>
|
316 |
+
<A NAME=170>I'll to the Tower with all the haste I can,</A><br>
|
317 |
+
<A NAME=171>To view the artillery and munition;</A><br>
|
318 |
+
<A NAME=172>And then I will proclaim young Henry king.</A><br>
|
319 |
+
<p><i>Exit</i></p>
|
320 |
+
</blockquote>
|
321 |
+
|
322 |
+
<A NAME=speech30><b>EXETER</b></a>
|
323 |
+
<blockquote>
|
324 |
+
<A NAME=173>To Eltham will I, where the young king is,</A><br>
|
325 |
+
<A NAME=174>Being ordain'd his special governor,</A><br>
|
326 |
+
<A NAME=175>And for his safety there I'll best devise.</A><br>
|
327 |
+
<p><i>Exit</i></p>
|
328 |
+
<A NAME=176>BISHOP</A><br>
|
329 |
+
</blockquote>
|
330 |
+
|
331 |
+
<A NAME=speech31><b>OF WINCHESTER</b></a>
|
332 |
+
<blockquote>
|
333 |
+
<A NAME=177>Each hath his place and function to attend:</A><br>
|
334 |
+
<A NAME=178>I am left out; for me nothing remains.</A><br>
|
335 |
+
<A NAME=179>But long I will not be Jack out of office:</A><br>
|
336 |
+
<A NAME=180>The king from Eltham I intend to steal</A><br>
|
337 |
+
<A NAME=181>And sit at chiefest stern of public weal.</A><br>
|
338 |
+
<p><i>Exeunt</i></p>
|
339 |
+
</blockquote>
|
340 |
+
<table width="100%" bgcolor="#CCF6F6">
|
341 |
+
<tr><td class="nav" align="center">
|
342 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
343 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
344 |
+
| Act 1, Scene 1
|
345 |
+
<br>
|
346 |
+
<a href="1henryvi.1.2.html">Next scene</A>
|
347 |
+
</table>
|
348 |
+
|
349 |
+
</body>
|
350 |
+
</html>
|
351 |
+
|
352 |
+
|
data/1henryvi.1.2.html
ADDED
@@ -0,0 +1,357 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. France. Before Orleans.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 1, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.1.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.1.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. France. Before Orleans.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Sound a flourish. Enter CHARLES, ALENCON, and REIGNIER, marching with drum and Soldiers</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>CHARLES</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Mars his true moving, even as in the heavens</A><br>
|
33 |
+
<A NAME=2>So in the earth, to this day is not known:</A><br>
|
34 |
+
<A NAME=3>Late did he shine upon the English side;</A><br>
|
35 |
+
<A NAME=4>Now we are victors; upon us he smiles.</A><br>
|
36 |
+
<A NAME=5>What towns of any moment but we have?</A><br>
|
37 |
+
<A NAME=6>At pleasure here we lie near Orleans;</A><br>
|
38 |
+
<A NAME=7>Otherwhiles the famish'd English, like pale ghosts,</A><br>
|
39 |
+
<A NAME=8>Faintly besiege us one hour in a month.</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech2><b>ALENCON</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=9>They want their porridge and their fat bull-beeves:</A><br>
|
45 |
+
<A NAME=10>Either they must be dieted like mules</A><br>
|
46 |
+
<A NAME=11>And have their provender tied to their mouths</A><br>
|
47 |
+
<A NAME=12>Or piteous they will look, like drowned mice.</A><br>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech3><b>REIGNIER</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=13>Let's raise the siege: why live we idly here?</A><br>
|
53 |
+
<A NAME=14>Talbot is taken, whom we wont to fear:</A><br>
|
54 |
+
<A NAME=15>Remaineth none but mad-brain'd Salisbury;</A><br>
|
55 |
+
<A NAME=16>And he may well in fretting spend his gall,</A><br>
|
56 |
+
<A NAME=17>Nor men nor money hath he to make war.</A><br>
|
57 |
+
</blockquote>
|
58 |
+
|
59 |
+
<A NAME=speech4><b>CHARLES</b></a>
|
60 |
+
<blockquote>
|
61 |
+
<A NAME=18>Sound, sound alarum! we will rush on them.</A><br>
|
62 |
+
<A NAME=19>Now for the honour of the forlorn French!</A><br>
|
63 |
+
<A NAME=20>Him I forgive my death that killeth me</A><br>
|
64 |
+
<A NAME=21>When he sees me go back one foot or fly.</A><br>
|
65 |
+
<p><i>Exeunt</i></p>
|
66 |
+
<p><i>Here alarum; they are beaten back by the English with great loss. Re-enter CHARLES, ALENCON, and REIGNIER</i></p>
|
67 |
+
</blockquote>
|
68 |
+
|
69 |
+
<A NAME=speech5><b>CHARLES</b></a>
|
70 |
+
<blockquote>
|
71 |
+
<A NAME=22>Who ever saw the like? what men have I!</A><br>
|
72 |
+
<A NAME=23>Dogs! cowards! dastards! I would ne'er have fled,</A><br>
|
73 |
+
<A NAME=24>But that they left me 'midst my enemies.</A><br>
|
74 |
+
</blockquote>
|
75 |
+
|
76 |
+
<A NAME=speech6><b>REIGNIER</b></a>
|
77 |
+
<blockquote>
|
78 |
+
<A NAME=25>Salisbury is a desperate homicide;</A><br>
|
79 |
+
<A NAME=26>He fighteth as one weary of his life.</A><br>
|
80 |
+
<A NAME=27>The other lords, like lions wanting food,</A><br>
|
81 |
+
<A NAME=28>Do rush upon us as their hungry prey.</A><br>
|
82 |
+
</blockquote>
|
83 |
+
|
84 |
+
<A NAME=speech7><b>ALENCON</b></a>
|
85 |
+
<blockquote>
|
86 |
+
<A NAME=29>Froissart, a countryman of ours, records,</A><br>
|
87 |
+
<A NAME=30>England all Olivers and Rowlands bred,</A><br>
|
88 |
+
<A NAME=31>During the time Edward the Third did reign.</A><br>
|
89 |
+
<A NAME=32>More truly now may this be verified;</A><br>
|
90 |
+
<A NAME=33>For none but Samsons and Goliases</A><br>
|
91 |
+
<A NAME=34>It sendeth forth to skirmish. One to ten!</A><br>
|
92 |
+
<A NAME=35>Lean, raw-boned rascals! who would e'er suppose</A><br>
|
93 |
+
<A NAME=36>They had such courage and audacity?</A><br>
|
94 |
+
</blockquote>
|
95 |
+
|
96 |
+
<A NAME=speech8><b>CHARLES</b></a>
|
97 |
+
<blockquote>
|
98 |
+
<A NAME=37>Let's leave this town; for they are hare-brain'd slaves,</A><br>
|
99 |
+
<A NAME=38>And hunger will enforce them to be more eager:</A><br>
|
100 |
+
<A NAME=39>Of old I know them; rather with their teeth</A><br>
|
101 |
+
<A NAME=40>The walls they'll tear down than forsake the siege.</A><br>
|
102 |
+
</blockquote>
|
103 |
+
|
104 |
+
<A NAME=speech9><b>REIGNIER</b></a>
|
105 |
+
<blockquote>
|
106 |
+
<A NAME=41>I think, by some odd gimmors or device</A><br>
|
107 |
+
<A NAME=42>Their arms are set like clocks, stiff to strike on;</A><br>
|
108 |
+
<A NAME=43>Else ne'er could they hold out so as they do.</A><br>
|
109 |
+
<A NAME=44>By my consent, we'll even let them alone.</A><br>
|
110 |
+
</blockquote>
|
111 |
+
|
112 |
+
<A NAME=speech10><b>ALENCON</b></a>
|
113 |
+
<blockquote>
|
114 |
+
<A NAME=45>Be it so.</A><br>
|
115 |
+
<p><i>Enter the BASTARD OF ORLEANS</i></p>
|
116 |
+
</blockquote>
|
117 |
+
|
118 |
+
<A NAME=speech11><b>BASTARD OF ORLEANS</b></a>
|
119 |
+
<blockquote>
|
120 |
+
<A NAME=46>Where's the Prince Dauphin? I have news for him.</A><br>
|
121 |
+
</blockquote>
|
122 |
+
|
123 |
+
<A NAME=speech12><b>CHARLES</b></a>
|
124 |
+
<blockquote>
|
125 |
+
<A NAME=47>Bastard of Orleans, thrice welcome to us.</A><br>
|
126 |
+
</blockquote>
|
127 |
+
|
128 |
+
<A NAME=speech13><b>BASTARD OF ORLEANS</b></a>
|
129 |
+
<blockquote>
|
130 |
+
<A NAME=48>Methinks your looks are sad, your cheer appall'd:</A><br>
|
131 |
+
<A NAME=49>Hath the late overthrow wrought this offence?</A><br>
|
132 |
+
<A NAME=50>Be not dismay'd, for succor is at hand:</A><br>
|
133 |
+
<A NAME=51>A holy maid hither with me I bring,</A><br>
|
134 |
+
<A NAME=52>Which by a vision sent to her from heaven</A><br>
|
135 |
+
<A NAME=53>Ordained is to raise this tedious siege</A><br>
|
136 |
+
<A NAME=54>And drive the English forth the bounds of France.</A><br>
|
137 |
+
<A NAME=55>The spirit of deep prophecy she hath,</A><br>
|
138 |
+
<A NAME=56>Exceeding the nine sibyls of old Rome:</A><br>
|
139 |
+
<A NAME=57>What's past and what's to come she can descry.</A><br>
|
140 |
+
<A NAME=58>Speak, shall I call her in? Believe my words,</A><br>
|
141 |
+
<A NAME=59>For they are certain and unfallible.</A><br>
|
142 |
+
</blockquote>
|
143 |
+
|
144 |
+
<A NAME=speech14><b>CHARLES</b></a>
|
145 |
+
<blockquote>
|
146 |
+
<A NAME=60>Go, call her in.</A><br>
|
147 |
+
<p><i>Exit BASTARD OF ORLEANS</i></p>
|
148 |
+
<A NAME=61>But first, to try her skill,</A><br>
|
149 |
+
<A NAME=62>Reignier, stand thou as Dauphin in my place:</A><br>
|
150 |
+
<A NAME=63>Question her proudly; let thy looks be stern:</A><br>
|
151 |
+
<A NAME=64>By this means shall we sound what skill she hath.</A><br>
|
152 |
+
<p><i>Re-enter the BASTARD OF ORLEANS, with JOAN LA PUCELLE</i></p>
|
153 |
+
</blockquote>
|
154 |
+
|
155 |
+
<A NAME=speech15><b>REIGNIER</b></a>
|
156 |
+
<blockquote>
|
157 |
+
<A NAME=65>Fair maid, is't thou wilt do these wondrous feats?</A><br>
|
158 |
+
</blockquote>
|
159 |
+
|
160 |
+
<A NAME=speech16><b>JOAN LA PUCELLE</b></a>
|
161 |
+
<blockquote>
|
162 |
+
<A NAME=66>Reignier, is't thou that thinkest to beguile me?</A><br>
|
163 |
+
<A NAME=67>Where is the Dauphin? Come, come from behind;</A><br>
|
164 |
+
<A NAME=68>I know thee well, though never seen before.</A><br>
|
165 |
+
<A NAME=69>Be not amazed, there's nothing hid from me:</A><br>
|
166 |
+
<A NAME=70>In private will I talk with thee apart.</A><br>
|
167 |
+
<A NAME=71>Stand back, you lords, and give us leave awhile.</A><br>
|
168 |
+
</blockquote>
|
169 |
+
|
170 |
+
<A NAME=speech17><b>REIGNIER</b></a>
|
171 |
+
<blockquote>
|
172 |
+
<A NAME=72>She takes upon her bravely at first dash.</A><br>
|
173 |
+
</blockquote>
|
174 |
+
|
175 |
+
<A NAME=speech18><b>JOAN LA PUCELLE</b></a>
|
176 |
+
<blockquote>
|
177 |
+
<A NAME=73>Dauphin, I am by birth a shepherd's daughter,</A><br>
|
178 |
+
<A NAME=74>My wit untrain'd in any kind of art.</A><br>
|
179 |
+
<A NAME=75>Heaven and our Lady gracious hath it pleased</A><br>
|
180 |
+
<A NAME=76>To shine on my contemptible estate:</A><br>
|
181 |
+
<A NAME=77>Lo, whilst I waited on my tender lambs,</A><br>
|
182 |
+
<A NAME=78>And to sun's parching heat display'd my cheeks,</A><br>
|
183 |
+
<A NAME=79>God's mother deigned to appear to me</A><br>
|
184 |
+
<A NAME=80>And in a vision full of majesty</A><br>
|
185 |
+
<A NAME=81>Will'd me to leave my base vocation</A><br>
|
186 |
+
<A NAME=82>And free my country from calamity:</A><br>
|
187 |
+
<A NAME=83>Her aid she promised and assured success:</A><br>
|
188 |
+
<A NAME=84>In complete glory she reveal'd herself;</A><br>
|
189 |
+
<A NAME=85>And, whereas I was black and swart before,</A><br>
|
190 |
+
<A NAME=86>With those clear rays which she infused on me</A><br>
|
191 |
+
<A NAME=87>That beauty am I bless'd with which you see.</A><br>
|
192 |
+
<A NAME=88>Ask me what question thou canst possible,</A><br>
|
193 |
+
<A NAME=89>And I will answer unpremeditated:</A><br>
|
194 |
+
<A NAME=90>My courage try by combat, if thou darest,</A><br>
|
195 |
+
<A NAME=91>And thou shalt find that I exceed my sex.</A><br>
|
196 |
+
<A NAME=92>Resolve on this, thou shalt be fortunate,</A><br>
|
197 |
+
<A NAME=93>If thou receive me for thy warlike mate.</A><br>
|
198 |
+
</blockquote>
|
199 |
+
|
200 |
+
<A NAME=speech19><b>CHARLES</b></a>
|
201 |
+
<blockquote>
|
202 |
+
<A NAME=94>Thou hast astonish'd me with thy high terms:</A><br>
|
203 |
+
<A NAME=95>Only this proof I'll of thy valour make,</A><br>
|
204 |
+
<A NAME=96>In single combat thou shalt buckle with me,</A><br>
|
205 |
+
<A NAME=97>And if thou vanquishest, thy words are true;</A><br>
|
206 |
+
<A NAME=98>Otherwise I renounce all confidence.</A><br>
|
207 |
+
</blockquote>
|
208 |
+
|
209 |
+
<A NAME=speech20><b>JOAN LA PUCELLE</b></a>
|
210 |
+
<blockquote>
|
211 |
+
<A NAME=99>I am prepared: here is my keen-edged sword,</A><br>
|
212 |
+
<A NAME=100>Deck'd with five flower-de-luces on each side;</A><br>
|
213 |
+
<A NAME=101>The which at Touraine, in Saint Katharine's</A><br>
|
214 |
+
<A NAME=102>churchyard,</A><br>
|
215 |
+
<A NAME=103>Out of a great deal of old iron I chose forth.</A><br>
|
216 |
+
</blockquote>
|
217 |
+
|
218 |
+
<A NAME=speech21><b>CHARLES</b></a>
|
219 |
+
<blockquote>
|
220 |
+
<A NAME=104>Then come, o' God's name; I fear no woman.</A><br>
|
221 |
+
</blockquote>
|
222 |
+
|
223 |
+
<A NAME=speech22><b>JOAN LA PUCELLE</b></a>
|
224 |
+
<blockquote>
|
225 |
+
<A NAME=105>And while I live, I'll ne'er fly from a man.</A><br>
|
226 |
+
<p><i>Here they fight, and JOAN LA PUCELLE overcomes</i></p>
|
227 |
+
</blockquote>
|
228 |
+
|
229 |
+
<A NAME=speech23><b>CHARLES</b></a>
|
230 |
+
<blockquote>
|
231 |
+
<A NAME=106>Stay, stay thy hands! thou art an Amazon</A><br>
|
232 |
+
<A NAME=107>And fightest with the sword of Deborah.</A><br>
|
233 |
+
</blockquote>
|
234 |
+
|
235 |
+
<A NAME=speech24><b>JOAN LA PUCELLE</b></a>
|
236 |
+
<blockquote>
|
237 |
+
<A NAME=108>Christ's mother helps me, else I were too weak.</A><br>
|
238 |
+
</blockquote>
|
239 |
+
|
240 |
+
<A NAME=speech25><b>CHARLES</b></a>
|
241 |
+
<blockquote>
|
242 |
+
<A NAME=109>Whoe'er helps thee, 'tis thou that must help me:</A><br>
|
243 |
+
<A NAME=110>Impatiently I burn with thy desire;</A><br>
|
244 |
+
<A NAME=111>My heart and hands thou hast at once subdued.</A><br>
|
245 |
+
<A NAME=112>Excellent Pucelle, if thy name be so,</A><br>
|
246 |
+
<A NAME=113>Let me thy servant and not sovereign be:</A><br>
|
247 |
+
<A NAME=114>'Tis the French Dauphin sueth to thee thus.</A><br>
|
248 |
+
</blockquote>
|
249 |
+
|
250 |
+
<A NAME=speech26><b>JOAN LA PUCELLE</b></a>
|
251 |
+
<blockquote>
|
252 |
+
<A NAME=115>I must not yield to any rites of love,</A><br>
|
253 |
+
<A NAME=116>For my profession's sacred from above:</A><br>
|
254 |
+
<A NAME=117>When I have chased all thy foes from hence,</A><br>
|
255 |
+
<A NAME=118>Then will I think upon a recompense.</A><br>
|
256 |
+
</blockquote>
|
257 |
+
|
258 |
+
<A NAME=speech27><b>CHARLES</b></a>
|
259 |
+
<blockquote>
|
260 |
+
<A NAME=119>Meantime look gracious on thy prostrate thrall.</A><br>
|
261 |
+
</blockquote>
|
262 |
+
|
263 |
+
<A NAME=speech28><b>REIGNIER</b></a>
|
264 |
+
<blockquote>
|
265 |
+
<A NAME=120>My lord, methinks, is very long in talk.</A><br>
|
266 |
+
</blockquote>
|
267 |
+
|
268 |
+
<A NAME=speech29><b>ALENCON</b></a>
|
269 |
+
<blockquote>
|
270 |
+
<A NAME=121>Doubtless he shrives this woman to her smock;</A><br>
|
271 |
+
<A NAME=122>Else ne'er could he so long protract his speech.</A><br>
|
272 |
+
</blockquote>
|
273 |
+
|
274 |
+
<A NAME=speech30><b>REIGNIER</b></a>
|
275 |
+
<blockquote>
|
276 |
+
<A NAME=123>Shall we disturb him, since he keeps no mean?</A><br>
|
277 |
+
</blockquote>
|
278 |
+
|
279 |
+
<A NAME=speech31><b>ALENCON</b></a>
|
280 |
+
<blockquote>
|
281 |
+
<A NAME=124>He may mean more than we poor men do know:</A><br>
|
282 |
+
<A NAME=125>These women are shrewd tempters with their tongues.</A><br>
|
283 |
+
</blockquote>
|
284 |
+
|
285 |
+
<A NAME=speech32><b>REIGNIER</b></a>
|
286 |
+
<blockquote>
|
287 |
+
<A NAME=126>My lord, where are you? what devise you on?</A><br>
|
288 |
+
<A NAME=127>Shall we give over Orleans, or no?</A><br>
|
289 |
+
</blockquote>
|
290 |
+
|
291 |
+
<A NAME=speech33><b>JOAN LA PUCELLE</b></a>
|
292 |
+
<blockquote>
|
293 |
+
<A NAME=128>Why, no, I say, distrustful recreants!</A><br>
|
294 |
+
<A NAME=129>Fight till the last gasp; I will be your guard.</A><br>
|
295 |
+
</blockquote>
|
296 |
+
|
297 |
+
<A NAME=speech34><b>CHARLES</b></a>
|
298 |
+
<blockquote>
|
299 |
+
<A NAME=130>What she says I'll confirm: we'll fight it out.</A><br>
|
300 |
+
</blockquote>
|
301 |
+
|
302 |
+
<A NAME=speech35><b>JOAN LA PUCELLE</b></a>
|
303 |
+
<blockquote>
|
304 |
+
<A NAME=131>Assign'd am I to be the English scourge.</A><br>
|
305 |
+
<A NAME=132>This night the siege assuredly I'll raise:</A><br>
|
306 |
+
<A NAME=133>Expect Saint Martin's summer, halcyon days,</A><br>
|
307 |
+
<A NAME=134>Since I have entered into these wars.</A><br>
|
308 |
+
<A NAME=135>Glory is like a circle in the water,</A><br>
|
309 |
+
<A NAME=136>Which never ceaseth to enlarge itself</A><br>
|
310 |
+
<A NAME=137>Till by broad spreading it disperse to nought.</A><br>
|
311 |
+
<A NAME=138>With Henry's death the English circle ends;</A><br>
|
312 |
+
<A NAME=139>Dispersed are the glories it included.</A><br>
|
313 |
+
<A NAME=140>Now am I like that proud insulting ship</A><br>
|
314 |
+
<A NAME=141>Which Caesar and his fortune bare at once.</A><br>
|
315 |
+
</blockquote>
|
316 |
+
|
317 |
+
<A NAME=speech36><b>CHARLES</b></a>
|
318 |
+
<blockquote>
|
319 |
+
<A NAME=142>Was Mahomet inspired with a dove?</A><br>
|
320 |
+
<A NAME=143>Thou with an eagle art inspired then.</A><br>
|
321 |
+
<A NAME=144>Helen, the mother of great Constantine,</A><br>
|
322 |
+
<A NAME=145>Nor yet Saint Philip's daughters, were like thee.</A><br>
|
323 |
+
<A NAME=146>Bright star of Venus, fall'n down on the earth,</A><br>
|
324 |
+
<A NAME=147>How may I reverently worship thee enough?</A><br>
|
325 |
+
</blockquote>
|
326 |
+
|
327 |
+
<A NAME=speech37><b>ALENCON</b></a>
|
328 |
+
<blockquote>
|
329 |
+
<A NAME=148>Leave off delays, and let us raise the siege.</A><br>
|
330 |
+
</blockquote>
|
331 |
+
|
332 |
+
<A NAME=speech38><b>REIGNIER</b></a>
|
333 |
+
<blockquote>
|
334 |
+
<A NAME=149>Woman, do what thou canst to save our honours;</A><br>
|
335 |
+
<A NAME=150>Drive them from Orleans and be immortalized.</A><br>
|
336 |
+
</blockquote>
|
337 |
+
|
338 |
+
<A NAME=speech39><b>CHARLES</b></a>
|
339 |
+
<blockquote>
|
340 |
+
<A NAME=151>Presently we'll try: come, let's away about it:</A><br>
|
341 |
+
<A NAME=152>No prophet will I trust, if she prove false.</A><br>
|
342 |
+
<p><i>Exeunt</i></p>
|
343 |
+
</blockquote>
|
344 |
+
<table width="100%" bgcolor="#CCF6F6">
|
345 |
+
<tr><td class="nav" align="center">
|
346 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
347 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
348 |
+
| Act 1, Scene 2
|
349 |
+
<br>
|
350 |
+
<a href="1henryvi.1.1.html">Previous scene</A>
|
351 |
+
| <a href="1henryvi.1.3.html">Next scene</A>
|
352 |
+
</table>
|
353 |
+
|
354 |
+
</body>
|
355 |
+
</html>
|
356 |
+
|
357 |
+
|
data/1henryvi.1.3.html
ADDED
@@ -0,0 +1,271 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. London. Before the Tower.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 1, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.1.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.1.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. London. Before the Tower.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter GLOUCESTER, with his Serving-men in blue coats</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>GLOUCESTER</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>I am come to survey the Tower this day:</A><br>
|
33 |
+
<A NAME=2>Since Henry's death, I fear, there is conveyance.</A><br>
|
34 |
+
<A NAME=3>Where be these warders, that they wait not here?</A><br>
|
35 |
+
<A NAME=4>Open the gates; 'tis Gloucester that calls.</A><br>
|
36 |
+
</blockquote>
|
37 |
+
|
38 |
+
<A NAME=speech2><b>First Warder</b></a>
|
39 |
+
<blockquote>
|
40 |
+
<A NAME=5>[Within] Who's there that knocks so imperiously?</A><br>
|
41 |
+
<A NAME=6>First Serving-Man It is the noble Duke of Gloucester.</A><br>
|
42 |
+
</blockquote>
|
43 |
+
|
44 |
+
<A NAME=speech3><b>Second Warder</b></a>
|
45 |
+
<blockquote>
|
46 |
+
<A NAME=7>[Within] Whoe'er he be, you may not be let in.</A><br>
|
47 |
+
<A NAME=8>First Serving-Man Villains, answer you so the lord protector?</A><br>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech4><b>First Warder</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=9>[Within] The Lord protect him! so we answer him:</A><br>
|
53 |
+
<A NAME=10>We do no otherwise than we are will'd.</A><br>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech5><b>GLOUCESTER</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=11>Who willed you? or whose will stands but mine?</A><br>
|
59 |
+
<A NAME=12>There's none protector of the realm but I.</A><br>
|
60 |
+
<A NAME=13>Break up the gates, I'll be your warrantize.</A><br>
|
61 |
+
<A NAME=14>Shall I be flouted thus by dunghill grooms?</A><br>
|
62 |
+
<p><i>Gloucester's men rush at the Tower Gates, and WOODVILE the Lieutenant speaks within</i></p>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech6><b>WOODVILE</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=15>What noise is this? what traitors have we here?</A><br>
|
68 |
+
</blockquote>
|
69 |
+
|
70 |
+
<A NAME=speech7><b>GLOUCESTER</b></a>
|
71 |
+
<blockquote>
|
72 |
+
<A NAME=16>Lieutenant, is it you whose voice I hear?</A><br>
|
73 |
+
<A NAME=17>Open the gates; here's Gloucester that would enter.</A><br>
|
74 |
+
</blockquote>
|
75 |
+
|
76 |
+
<A NAME=speech8><b>WOODVILE</b></a>
|
77 |
+
<blockquote>
|
78 |
+
<A NAME=18>Have patience, noble duke; I may not open;</A><br>
|
79 |
+
<A NAME=19>The Cardinal of Winchester forbids:</A><br>
|
80 |
+
<A NAME=20>From him I have express commandment</A><br>
|
81 |
+
<A NAME=21>That thou nor none of thine shall be let in.</A><br>
|
82 |
+
</blockquote>
|
83 |
+
|
84 |
+
<A NAME=speech9><b>GLOUCESTER</b></a>
|
85 |
+
<blockquote>
|
86 |
+
<A NAME=22>Faint-hearted Woodvile, prizest him 'fore me?</A><br>
|
87 |
+
<A NAME=23>Arrogant Winchester, that haughty prelate,</A><br>
|
88 |
+
<A NAME=24>Whom Henry, our late sovereign, ne'er could brook?</A><br>
|
89 |
+
<A NAME=25>Thou art no friend to God or to the king:</A><br>
|
90 |
+
<A NAME=26>Open the gates, or I'll shut thee out shortly.</A><br>
|
91 |
+
<A NAME=27>Serving-Men Open the gates unto the lord protector,</A><br>
|
92 |
+
<A NAME=28>Or we'll burst them open, if that you come not quickly.</A><br>
|
93 |
+
<p><i>Enter to the Protector at the Tower Gates BISHOP OF WINCHESTER and his men in tawny coats</i></p>
|
94 |
+
<A NAME=29>BISHOP</A><br>
|
95 |
+
</blockquote>
|
96 |
+
|
97 |
+
<A NAME=speech10><b>OF WINCHESTER</b></a>
|
98 |
+
<blockquote>
|
99 |
+
<A NAME=30>How now, ambitious Humphry! what means this?</A><br>
|
100 |
+
</blockquote>
|
101 |
+
|
102 |
+
<A NAME=speech11><b>GLOUCESTER</b></a>
|
103 |
+
<blockquote>
|
104 |
+
<A NAME=31>Peel'd priest, dost thou command me to be shut out?</A><br>
|
105 |
+
<A NAME=32>BISHOP</A><br>
|
106 |
+
</blockquote>
|
107 |
+
|
108 |
+
<A NAME=speech12><b>OF WINCHESTER</b></a>
|
109 |
+
<blockquote>
|
110 |
+
<A NAME=33>I do, thou most usurping proditor,</A><br>
|
111 |
+
<A NAME=34>And not protector, of the king or realm.</A><br>
|
112 |
+
</blockquote>
|
113 |
+
|
114 |
+
<A NAME=speech13><b>GLOUCESTER</b></a>
|
115 |
+
<blockquote>
|
116 |
+
<A NAME=35>Stand back, thou manifest conspirator,</A><br>
|
117 |
+
<A NAME=36>Thou that contrivedst to murder our dead lord;</A><br>
|
118 |
+
<A NAME=37>Thou that givest whores indulgences to sin:</A><br>
|
119 |
+
<A NAME=38>I'll canvass thee in thy broad cardinal's hat,</A><br>
|
120 |
+
<A NAME=39>If thou proceed in this thy insolence.</A><br>
|
121 |
+
<A NAME=40>BISHOP</A><br>
|
122 |
+
</blockquote>
|
123 |
+
|
124 |
+
<A NAME=speech14><b>OF WINCHESTER</b></a>
|
125 |
+
<blockquote>
|
126 |
+
<A NAME=41>Nay, stand thou back, I will not budge a foot:</A><br>
|
127 |
+
<A NAME=42>This be Damascus, be thou cursed Cain,</A><br>
|
128 |
+
<A NAME=43>To slay thy brother Abel, if thou wilt.</A><br>
|
129 |
+
</blockquote>
|
130 |
+
|
131 |
+
<A NAME=speech15><b>GLOUCESTER</b></a>
|
132 |
+
<blockquote>
|
133 |
+
<A NAME=44>I will not slay thee, but I'll drive thee back:</A><br>
|
134 |
+
<A NAME=45>Thy scarlet robes as a child's bearing-cloth</A><br>
|
135 |
+
<A NAME=46>I'll use to carry thee out of this place.</A><br>
|
136 |
+
<A NAME=47>BISHOP</A><br>
|
137 |
+
</blockquote>
|
138 |
+
|
139 |
+
<A NAME=speech16><b>OF WINCHESTER</b></a>
|
140 |
+
<blockquote>
|
141 |
+
<A NAME=48>Do what thou darest; I beard thee to thy face.</A><br>
|
142 |
+
</blockquote>
|
143 |
+
|
144 |
+
<A NAME=speech17><b>GLOUCESTER</b></a>
|
145 |
+
<blockquote>
|
146 |
+
<A NAME=49>What! am I dared and bearded to my face?</A><br>
|
147 |
+
<A NAME=50>Draw, men, for all this privileged place;</A><br>
|
148 |
+
<A NAME=51>Blue coats to tawny coats. Priest, beware your beard,</A><br>
|
149 |
+
<A NAME=52>I mean to tug it and to cuff you soundly:</A><br>
|
150 |
+
<A NAME=53>Under my feet I stamp thy cardinal's hat:</A><br>
|
151 |
+
<A NAME=54>In spite of pope or dignities of church,</A><br>
|
152 |
+
<A NAME=55>Here by the cheeks I'll drag thee up and down.</A><br>
|
153 |
+
<A NAME=56>BISHOP</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech18><b>OF WINCHESTER</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=57>Gloucester, thou wilt answer this before the pope.</A><br>
|
159 |
+
</blockquote>
|
160 |
+
|
161 |
+
<A NAME=speech19><b>GLOUCESTER</b></a>
|
162 |
+
<blockquote>
|
163 |
+
<A NAME=58>Winchester goose, I cry, a rope! a rope!</A><br>
|
164 |
+
<A NAME=59>Now beat them hence; why do you let them stay?</A><br>
|
165 |
+
<A NAME=60>Thee I'll chase hence, thou wolf in sheep's array.</A><br>
|
166 |
+
<A NAME=61>Out, tawny coats! out, scarlet hypocrite!</A><br>
|
167 |
+
<p><i>Here GLOUCESTER's men beat out BISHOP OF WINCHESTER's men, and enter in the hurly- burly the Mayor of London and his Officers</i></p>
|
168 |
+
</blockquote>
|
169 |
+
|
170 |
+
<A NAME=speech20><b>Mayor</b></a>
|
171 |
+
<blockquote>
|
172 |
+
<A NAME=62>Fie, lords! that you, being supreme magistrates,</A><br>
|
173 |
+
<A NAME=63>Thus contumeliously should break the peace!</A><br>
|
174 |
+
</blockquote>
|
175 |
+
|
176 |
+
<A NAME=speech21><b>GLOUCESTER</b></a>
|
177 |
+
<blockquote>
|
178 |
+
<A NAME=64>Peace, mayor! thou know'st little of my wrongs:</A><br>
|
179 |
+
<A NAME=65>Here's Beaufort, that regards nor God nor king,</A><br>
|
180 |
+
<A NAME=66>Hath here distrain'd the Tower to his use.</A><br>
|
181 |
+
<A NAME=67>BISHOP</A><br>
|
182 |
+
</blockquote>
|
183 |
+
|
184 |
+
<A NAME=speech22><b>OF WINCHESTER</b></a>
|
185 |
+
<blockquote>
|
186 |
+
<A NAME=68>Here's Gloucester, a foe to citizens,</A><br>
|
187 |
+
<A NAME=69>One that still motions war and never peace,</A><br>
|
188 |
+
<A NAME=70>O'ercharging your free purses with large fines,</A><br>
|
189 |
+
<A NAME=71>That seeks to overthrow religion,</A><br>
|
190 |
+
<A NAME=72>Because he is protector of the realm,</A><br>
|
191 |
+
<A NAME=73>And would have armour here out of the Tower,</A><br>
|
192 |
+
<A NAME=74>To crown himself king and suppress the prince.</A><br>
|
193 |
+
</blockquote>
|
194 |
+
|
195 |
+
<A NAME=speech23><b>GLOUCESTER</b></a>
|
196 |
+
<blockquote>
|
197 |
+
<A NAME=75>I will not answer thee with words, but blows.</A><br>
|
198 |
+
<p><i>Here they skirmish again</i></p>
|
199 |
+
</blockquote>
|
200 |
+
|
201 |
+
<A NAME=speech24><b>Mayor</b></a>
|
202 |
+
<blockquote>
|
203 |
+
<A NAME=76>Naught rests for me in this tumultuous strife</A><br>
|
204 |
+
<A NAME=77>But to make open proclamation:</A><br>
|
205 |
+
<A NAME=78>Come, officer; as loud as e'er thou canst,</A><br>
|
206 |
+
<A NAME=79>Cry.</A><br>
|
207 |
+
</blockquote>
|
208 |
+
|
209 |
+
<A NAME=speech25><b>Officer</b></a>
|
210 |
+
<blockquote>
|
211 |
+
<A NAME=80>All manner of men assembled here in arms this day</A><br>
|
212 |
+
<A NAME=81>against God's peace and the king's, we charge and</A><br>
|
213 |
+
<A NAME=82>command you, in his highness' name, to repair to</A><br>
|
214 |
+
<A NAME=83>your several dwelling-places; and not to wear,</A><br>
|
215 |
+
<A NAME=84>handle, or use any sword, weapon, or dagger,</A><br>
|
216 |
+
<A NAME=85>henceforward, upon pain of death.</A><br>
|
217 |
+
</blockquote>
|
218 |
+
|
219 |
+
<A NAME=speech26><b>GLOUCESTER</b></a>
|
220 |
+
<blockquote>
|
221 |
+
<A NAME=86>Cardinal, I'll be no breaker of the law:</A><br>
|
222 |
+
<A NAME=87>But we shall meet, and break our minds at large.</A><br>
|
223 |
+
<A NAME=88>BISHOP</A><br>
|
224 |
+
</blockquote>
|
225 |
+
|
226 |
+
<A NAME=speech27><b>OF WINCHESTER</b></a>
|
227 |
+
<blockquote>
|
228 |
+
<A NAME=89>Gloucester, we will meet; to thy cost, be sure:</A><br>
|
229 |
+
<A NAME=90>Thy heart-blood I will have for this day's work.</A><br>
|
230 |
+
</blockquote>
|
231 |
+
|
232 |
+
<A NAME=speech28><b>Mayor</b></a>
|
233 |
+
<blockquote>
|
234 |
+
<A NAME=91>I'll call for clubs, if you will not away.</A><br>
|
235 |
+
<A NAME=92>This cardinal's more haughty than the devil.</A><br>
|
236 |
+
</blockquote>
|
237 |
+
|
238 |
+
<A NAME=speech29><b>GLOUCESTER</b></a>
|
239 |
+
<blockquote>
|
240 |
+
<A NAME=93>Mayor, farewell: thou dost but what thou mayst.</A><br>
|
241 |
+
<A NAME=94>BISHOP</A><br>
|
242 |
+
</blockquote>
|
243 |
+
|
244 |
+
<A NAME=speech30><b>OF WINCHESTER</b></a>
|
245 |
+
<blockquote>
|
246 |
+
<A NAME=95>Abominable Gloucester, guard thy head;</A><br>
|
247 |
+
<A NAME=96>For I intend to have it ere long.</A><br>
|
248 |
+
<p><i>Exeunt, severally, GLOUCESTER and BISHOP OF WINCHESTER with their Serving-men</i></p>
|
249 |
+
</blockquote>
|
250 |
+
|
251 |
+
<A NAME=speech31><b>Mayor</b></a>
|
252 |
+
<blockquote>
|
253 |
+
<A NAME=97>See the coast clear'd, and then we will depart.</A><br>
|
254 |
+
<A NAME=98>Good God, these nobles should such stomachs bear!</A><br>
|
255 |
+
<A NAME=99>I myself fight not once in forty year.</A><br>
|
256 |
+
<p><i>Exeunt</i></p>
|
257 |
+
</blockquote>
|
258 |
+
<table width="100%" bgcolor="#CCF6F6">
|
259 |
+
<tr><td class="nav" align="center">
|
260 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
261 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
262 |
+
| Act 1, Scene 3
|
263 |
+
<br>
|
264 |
+
<a href="1henryvi.1.2.html">Previous scene</A>
|
265 |
+
| <a href="1henryvi.1.4.html">Next scene</A>
|
266 |
+
</table>
|
267 |
+
|
268 |
+
</body>
|
269 |
+
</html>
|
270 |
+
|
271 |
+
|
data/1henryvi.1.4.html
ADDED
@@ -0,0 +1,224 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. Orleans.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 1, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.1.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.1.5.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. Orleans.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter, on the walls, a Master Gunner and his Boy</i>
|
28 |
+
</blockquote>
|
29 |
+
<blockquote>
|
30 |
+
<A NAME=1>Master-Gunner Sirrah, thou know'st how Orleans is besieged,</A><br>
|
31 |
+
<A NAME=2>And how the English have the suburbs won.</A><br>
|
32 |
+
</blockquote>
|
33 |
+
|
34 |
+
<A NAME=speech1><b>Boy</b></a>
|
35 |
+
<blockquote>
|
36 |
+
<A NAME=3>Father, I know; and oft have shot at them,</A><br>
|
37 |
+
<A NAME=4>Howe'er unfortunate I miss'd my aim.</A><br>
|
38 |
+
<A NAME=5>Master-Gunner But now thou shalt not. Be thou ruled by me:</A><br>
|
39 |
+
<A NAME=6>Chief master-gunner am I of this town;</A><br>
|
40 |
+
<A NAME=7>Something I must do to procure me grace.</A><br>
|
41 |
+
<A NAME=8>The prince's espials have informed me</A><br>
|
42 |
+
<A NAME=9>How the English, in the suburbs close intrench'd,</A><br>
|
43 |
+
<A NAME=10>Wont, through a secret grate of iron bars</A><br>
|
44 |
+
<A NAME=11>In yonder tower, to overpeer the city,</A><br>
|
45 |
+
<A NAME=12>And thence discover how with most advantage</A><br>
|
46 |
+
<A NAME=13>They may vex us with shot, or with assault.</A><br>
|
47 |
+
<A NAME=14>To intercept this inconvenience,</A><br>
|
48 |
+
<A NAME=15>A piece of ordnance 'gainst it I have placed;</A><br>
|
49 |
+
<A NAME=16>And even these three days have I watch'd,</A><br>
|
50 |
+
<A NAME=17>If I could see them.</A><br>
|
51 |
+
<A NAME=18>Now do thou watch, for I can stay no longer.</A><br>
|
52 |
+
<A NAME=19>If thou spy'st any, run and bring me word;</A><br>
|
53 |
+
<A NAME=20>And thou shalt find me at the governor's.</A><br>
|
54 |
+
<p><i>Exit</i></p>
|
55 |
+
</blockquote>
|
56 |
+
|
57 |
+
<A NAME=speech2><b>Boy</b></a>
|
58 |
+
<blockquote>
|
59 |
+
<A NAME=21>Father, I warrant you; take you no care;</A><br>
|
60 |
+
<A NAME=22>I'll never trouble you, if I may spy them.</A><br>
|
61 |
+
<p><i>Exit</i></p>
|
62 |
+
<p><i>Enter, on the turrets, SALISBURY and TALBOT, GLANSDALE, GARGRAVE, and others</i></p>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech3><b>SALISBURY</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=23>Talbot, my life, my joy, again return'd!</A><br>
|
68 |
+
<A NAME=24>How wert thou handled being prisoner?</A><br>
|
69 |
+
<A NAME=25>Or by what means got'st thou to be released?</A><br>
|
70 |
+
<A NAME=26>Discourse, I prithee, on this turret's top.</A><br>
|
71 |
+
</blockquote>
|
72 |
+
|
73 |
+
<A NAME=speech4><b>TALBOT</b></a>
|
74 |
+
<blockquote>
|
75 |
+
<A NAME=27>The Duke of Bedford had a prisoner</A><br>
|
76 |
+
<A NAME=28>Call'd the brave Lord Ponton de Santrailles;</A><br>
|
77 |
+
<A NAME=29>For him was I exchanged and ransomed.</A><br>
|
78 |
+
<A NAME=30>But with a baser man of arms by far</A><br>
|
79 |
+
<A NAME=31>Once in contempt they would have barter'd me:</A><br>
|
80 |
+
<A NAME=32>Which I, disdaining, scorn'd; and craved death,</A><br>
|
81 |
+
<A NAME=33>Rather than I would be so vile esteem'd.</A><br>
|
82 |
+
<A NAME=34>In fine, redeem'd I was as I desired.</A><br>
|
83 |
+
<A NAME=35>But, O! the treacherous Fastolfe wounds my heart,</A><br>
|
84 |
+
<A NAME=36>Whom with my bare fists I would execute,</A><br>
|
85 |
+
<A NAME=37>If I now had him brought into my power.</A><br>
|
86 |
+
</blockquote>
|
87 |
+
|
88 |
+
<A NAME=speech5><b>SALISBURY</b></a>
|
89 |
+
<blockquote>
|
90 |
+
<A NAME=38>Yet tell'st thou not how thou wert entertain'd.</A><br>
|
91 |
+
</blockquote>
|
92 |
+
|
93 |
+
<A NAME=speech6><b>TALBOT</b></a>
|
94 |
+
<blockquote>
|
95 |
+
<A NAME=39>With scoffs and scorns and contumelious taunts.</A><br>
|
96 |
+
<A NAME=40>In open market-place produced they me,</A><br>
|
97 |
+
<A NAME=41>To be a public spectacle to all:</A><br>
|
98 |
+
<A NAME=42>Here, said they, is the terror of the French,</A><br>
|
99 |
+
<A NAME=43>The scarecrow that affrights our children so.</A><br>
|
100 |
+
<A NAME=44>Then broke I from the officers that led me,</A><br>
|
101 |
+
<A NAME=45>And with my nails digg'd stones out of the ground,</A><br>
|
102 |
+
<A NAME=46>To hurl at the beholders of my shame:</A><br>
|
103 |
+
<A NAME=47>My grisly countenance made others fly;</A><br>
|
104 |
+
<A NAME=48>None durst come near for fear of sudden death.</A><br>
|
105 |
+
<A NAME=49>In iron walls they deem'd me not secure;</A><br>
|
106 |
+
<A NAME=50>So great fear of my name 'mongst them was spread,</A><br>
|
107 |
+
<A NAME=51>That they supposed I could rend bars of steel,</A><br>
|
108 |
+
<A NAME=52>And spurn in pieces posts of adamant:</A><br>
|
109 |
+
<A NAME=53>Wherefore a guard of chosen shot I had,</A><br>
|
110 |
+
<A NAME=54>That walked about me every minute-while;</A><br>
|
111 |
+
<A NAME=55>And if I did but stir out of my bed,</A><br>
|
112 |
+
<A NAME=56>Ready they were to shoot me to the heart.</A><br>
|
113 |
+
<p><i>Enter the Boy with a linstock</i></p>
|
114 |
+
</blockquote>
|
115 |
+
|
116 |
+
<A NAME=speech7><b>SALISBURY</b></a>
|
117 |
+
<blockquote>
|
118 |
+
<A NAME=57>I grieve to hear what torments you endured,</A><br>
|
119 |
+
<A NAME=58>But we will be revenged sufficiently</A><br>
|
120 |
+
<A NAME=59>Now it is supper-time in Orleans:</A><br>
|
121 |
+
<A NAME=60>Here, through this grate, I count each one</A><br>
|
122 |
+
<A NAME=61>and view the Frenchmen how they fortify:</A><br>
|
123 |
+
<A NAME=62>Let us look in; the sight will much delight thee.</A><br>
|
124 |
+
<A NAME=63>Sir Thomas Gargrave, and Sir William Glansdale,</A><br>
|
125 |
+
<A NAME=64>Let me have your express opinions</A><br>
|
126 |
+
<A NAME=65>Where is best place to make our battery next.</A><br>
|
127 |
+
</blockquote>
|
128 |
+
|
129 |
+
<A NAME=speech8><b>GARGRAVE</b></a>
|
130 |
+
<blockquote>
|
131 |
+
<A NAME=66>I think, at the north gate; for there stand lords.</A><br>
|
132 |
+
</blockquote>
|
133 |
+
|
134 |
+
<A NAME=speech9><b>GLANSDALE</b></a>
|
135 |
+
<blockquote>
|
136 |
+
<A NAME=67>And I, here, at the bulwark of the bridge.</A><br>
|
137 |
+
</blockquote>
|
138 |
+
|
139 |
+
<A NAME=speech10><b>TALBOT</b></a>
|
140 |
+
<blockquote>
|
141 |
+
<A NAME=68>For aught I see, this city must be famish'd,</A><br>
|
142 |
+
<A NAME=69>Or with light skirmishes enfeebled.</A><br>
|
143 |
+
<p><i>Here they shoot. SALISBURY and GARGRAVE fall</i></p>
|
144 |
+
</blockquote>
|
145 |
+
|
146 |
+
<A NAME=speech11><b>SALISBURY</b></a>
|
147 |
+
<blockquote>
|
148 |
+
<A NAME=70>O Lord, have mercy on us, wretched sinners!</A><br>
|
149 |
+
</blockquote>
|
150 |
+
|
151 |
+
<A NAME=speech12><b>GARGRAVE</b></a>
|
152 |
+
<blockquote>
|
153 |
+
<A NAME=71>O Lord, have mercy on me, woful man!</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech13><b>TALBOT</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=72>What chance is this that suddenly hath cross'd us?</A><br>
|
159 |
+
<A NAME=73>Speak, Salisbury; at least, if thou canst speak:</A><br>
|
160 |
+
<A NAME=74>How farest thou, mirror of all martial men?</A><br>
|
161 |
+
<A NAME=75>One of thy eyes and thy cheek's side struck off!</A><br>
|
162 |
+
<A NAME=76>Accursed tower! accursed fatal hand</A><br>
|
163 |
+
<A NAME=77>That hath contrived this woful tragedy!</A><br>
|
164 |
+
<A NAME=78>In thirteen battles Salisbury o'ercame;</A><br>
|
165 |
+
<A NAME=79>Henry the Fifth he first train'd to the wars;</A><br>
|
166 |
+
<A NAME=80>Whilst any trump did sound, or drum struck up,</A><br>
|
167 |
+
<A NAME=81>His sword did ne'er leave striking in the field.</A><br>
|
168 |
+
<A NAME=82>Yet livest thou, Salisbury? though thy speech doth fail,</A><br>
|
169 |
+
<A NAME=83>One eye thou hast, to look to heaven for grace:</A><br>
|
170 |
+
<A NAME=84>The sun with one eye vieweth all the world.</A><br>
|
171 |
+
<A NAME=85>Heaven, be thou gracious to none alive,</A><br>
|
172 |
+
<A NAME=86>If Salisbury wants mercy at thy hands!</A><br>
|
173 |
+
<A NAME=87>Bear hence his body; I will help to bury it.</A><br>
|
174 |
+
<A NAME=88>Sir Thomas Gargrave, hast thou any life?</A><br>
|
175 |
+
<A NAME=89>Speak unto Talbot; nay, look up to him.</A><br>
|
176 |
+
<A NAME=90>Salisbury, cheer thy spirit with this comfort;</A><br>
|
177 |
+
<A NAME=91>Thou shalt not die whiles--</A><br>
|
178 |
+
<A NAME=92>He beckons with his hand and smiles on me.</A><br>
|
179 |
+
<A NAME=93>As who should say 'When I am dead and gone,</A><br>
|
180 |
+
<A NAME=94>Remember to avenge me on the French.'</A><br>
|
181 |
+
<A NAME=95>Plantagenet, I will; and like thee, Nero,</A><br>
|
182 |
+
<A NAME=96>Play on the lute, beholding the towns burn:</A><br>
|
183 |
+
<A NAME=97>Wretched shall France be only in my name.</A><br>
|
184 |
+
<p><i>Here an alarum, and it thunders and lightens</i></p>
|
185 |
+
<A NAME=98>What stir is this? what tumult's in the heavens?</A><br>
|
186 |
+
<A NAME=99>Whence cometh this alarum and the noise?</A><br>
|
187 |
+
<p><i>Enter a Messenger</i></p>
|
188 |
+
</blockquote>
|
189 |
+
|
190 |
+
<A NAME=speech14><b>Messenger</b></a>
|
191 |
+
<blockquote>
|
192 |
+
<A NAME=100>My lord, my lord, the French have gathered head:</A><br>
|
193 |
+
<A NAME=101>The Dauphin, with one Joan la Pucelle join'd,</A><br>
|
194 |
+
<A NAME=102>A holy prophetess new risen up,</A><br>
|
195 |
+
<A NAME=103>Is come with a great power to raise the siege.</A><br>
|
196 |
+
<p><i>Here SALISBURY lifteth himself up and groans</i></p>
|
197 |
+
</blockquote>
|
198 |
+
|
199 |
+
<A NAME=speech15><b>TALBOT</b></a>
|
200 |
+
<blockquote>
|
201 |
+
<A NAME=104>Hear, hear how dying Salisbury doth groan!</A><br>
|
202 |
+
<A NAME=105>It irks his heart he cannot be revenged.</A><br>
|
203 |
+
<A NAME=106>Frenchmen, I'll be a Salisbury to you:</A><br>
|
204 |
+
<A NAME=107>Pucelle or puzzel, dolphin or dogfish,</A><br>
|
205 |
+
<A NAME=108>Your hearts I'll stamp out with my horse's heels,</A><br>
|
206 |
+
<A NAME=109>And make a quagmire of your mingled brains.</A><br>
|
207 |
+
<A NAME=110>Convey me Salisbury into his tent,</A><br>
|
208 |
+
<A NAME=111>And then we'll try what these dastard Frenchmen dare.</A><br>
|
209 |
+
<p><i>Alarum. Exeunt</i></p>
|
210 |
+
</blockquote>
|
211 |
+
<table width="100%" bgcolor="#CCF6F6">
|
212 |
+
<tr><td class="nav" align="center">
|
213 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
214 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
215 |
+
| Act 1, Scene 4
|
216 |
+
<br>
|
217 |
+
<a href="1henryvi.1.3.html">Previous scene</A>
|
218 |
+
| <a href="1henryvi.1.5.html">Next scene</A>
|
219 |
+
</table>
|
220 |
+
|
221 |
+
</body>
|
222 |
+
</html>
|
223 |
+
|
224 |
+
|
data/1henryvi.1.5.html
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE V. The same.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 1, Scene 5
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.1.4.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.1.6.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE V. The same.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Here an alarum again: and TALBOT pursueth the DAUPHIN, and driveth him: then enter JOAN LA PUCELLE, driving Englishmen before her, and exit after them then re-enter TALBOT</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>TALBOT</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Where is my strength, my valour, and my force?</A><br>
|
33 |
+
<A NAME=2>Our English troops retire, I cannot stay them:</A><br>
|
34 |
+
<A NAME=3>A woman clad in armour chaseth them.</A><br>
|
35 |
+
<p><i>Re-enter JOAN LA PUCELLE</i></p>
|
36 |
+
<A NAME=4>Here, here she comes. I'll have a bout with thee;</A><br>
|
37 |
+
<A NAME=5>Devil or devil's dam, I'll conjure thee:</A><br>
|
38 |
+
<A NAME=6>Blood will I draw on thee, thou art a witch,</A><br>
|
39 |
+
<A NAME=7>And straightway give thy soul to him thou servest.</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech2><b>JOAN LA PUCELLE</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=8>Come, come, 'tis only I that must disgrace thee.</A><br>
|
45 |
+
<p><i>Here they fight</i></p>
|
46 |
+
</blockquote>
|
47 |
+
|
48 |
+
<A NAME=speech3><b>TALBOT</b></a>
|
49 |
+
<blockquote>
|
50 |
+
<A NAME=9>Heavens, can you suffer hell so to prevail?</A><br>
|
51 |
+
<A NAME=10>My breast I'll burst with straining of my courage</A><br>
|
52 |
+
<A NAME=11>And from my shoulders crack my arms asunder.</A><br>
|
53 |
+
<A NAME=12>But I will chastise this high-minded strumpet.</A><br>
|
54 |
+
<p><i>They fight again</i></p>
|
55 |
+
</blockquote>
|
56 |
+
|
57 |
+
<A NAME=speech4><b>JOAN LA PUCELLE</b></a>
|
58 |
+
<blockquote>
|
59 |
+
<A NAME=13>Talbot, farewell; thy hour is not yet come:</A><br>
|
60 |
+
<A NAME=14>I must go victual Orleans forthwith.</A><br>
|
61 |
+
<p><i>A short alarum; then enter the town with soldiers</i></p>
|
62 |
+
<A NAME=15>O'ertake me, if thou canst; I scorn thy strength.</A><br>
|
63 |
+
<A NAME=16>Go, go, cheer up thy hungry-starved men;</A><br>
|
64 |
+
<A NAME=17>Help Salisbury to make his testament:</A><br>
|
65 |
+
<A NAME=18>This day is ours, as many more shall be.</A><br>
|
66 |
+
<p><i>Exit</i></p>
|
67 |
+
</blockquote>
|
68 |
+
|
69 |
+
<A NAME=speech5><b>TALBOT</b></a>
|
70 |
+
<blockquote>
|
71 |
+
<A NAME=19>My thoughts are whirled like a potter's wheel;</A><br>
|
72 |
+
<A NAME=20>I know not where I am, nor what I do;</A><br>
|
73 |
+
<A NAME=21>A witch, by fear, not force, like Hannibal,</A><br>
|
74 |
+
<A NAME=22>Drives back our troops and conquers as she lists:</A><br>
|
75 |
+
<A NAME=23>So bees with smoke and doves with noisome stench</A><br>
|
76 |
+
<A NAME=24>Are from their hives and houses driven away.</A><br>
|
77 |
+
<A NAME=25>They call'd us for our fierceness English dogs;</A><br>
|
78 |
+
<A NAME=26>Now, like to whelps, we crying run away.</A><br>
|
79 |
+
<p><i>A short alarum</i></p>
|
80 |
+
<A NAME=27>Hark, countrymen! either renew the fight,</A><br>
|
81 |
+
<A NAME=28>Or tear the lions out of England's coat;</A><br>
|
82 |
+
<A NAME=29>Renounce your soil, give sheep in lions' stead:</A><br>
|
83 |
+
<A NAME=30>Sheep run not half so treacherous from the wolf,</A><br>
|
84 |
+
<A NAME=31>Or horse or oxen from the leopard,</A><br>
|
85 |
+
<A NAME=32>As you fly from your oft-subdued slaves.</A><br>
|
86 |
+
<p><i>Alarum. Here another skirmish</i></p>
|
87 |
+
<A NAME=33>It will not be: retire into your trenches:</A><br>
|
88 |
+
<A NAME=34>You all consented unto Salisbury's death,</A><br>
|
89 |
+
<A NAME=35>For none would strike a stroke in his revenge.</A><br>
|
90 |
+
<A NAME=36>Pucelle is enter'd into Orleans,</A><br>
|
91 |
+
<A NAME=37>In spite of us or aught that we could do.</A><br>
|
92 |
+
<A NAME=38>O, would I were to die with Salisbury!</A><br>
|
93 |
+
<A NAME=39>The shame hereof will make me hide my head.</A><br>
|
94 |
+
<p><i>Exit TALBOT. Alarum; retreat; flourish</i></p>
|
95 |
+
</blockquote>
|
96 |
+
<table width="100%" bgcolor="#CCF6F6">
|
97 |
+
<tr><td class="nav" align="center">
|
98 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
99 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
100 |
+
| Act 1, Scene 5
|
101 |
+
<br>
|
102 |
+
<a href="1henryvi.1.4.html">Previous scene</A>
|
103 |
+
| <a href="1henryvi.1.6.html">Next scene</A>
|
104 |
+
</table>
|
105 |
+
|
106 |
+
</body>
|
107 |
+
</html>
|
108 |
+
|
109 |
+
|
data/1henryvi.1.6.html
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE VI. The same.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 1, Scene 6
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.1.5.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.2.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE VI. The same.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter, on the walls, JOAN LA PUCELLE, CHARLES, REIGNIER, ALENCON, and Soldiers</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>JOAN LA PUCELLE</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Advance our waving colours on the walls;</A><br>
|
33 |
+
<A NAME=2>Rescued is Orleans from the English</A><br>
|
34 |
+
<A NAME=3>Thus Joan la Pucelle hath perform'd her word.</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>CHARLES</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=4>Divinest creature, Astraea's daughter,</A><br>
|
40 |
+
<A NAME=5>How shall I honour thee for this success?</A><br>
|
41 |
+
<A NAME=6>Thy promises are like Adonis' gardens</A><br>
|
42 |
+
<A NAME=7>That one day bloom'd and fruitful were the next.</A><br>
|
43 |
+
<A NAME=8>France, triumph in thy glorious prophetess!</A><br>
|
44 |
+
<A NAME=9>Recover'd is the town of Orleans:</A><br>
|
45 |
+
<A NAME=10>More blessed hap did ne'er befall our state.</A><br>
|
46 |
+
</blockquote>
|
47 |
+
|
48 |
+
<A NAME=speech3><b>REIGNIER</b></a>
|
49 |
+
<blockquote>
|
50 |
+
<A NAME=11>Why ring not out the bells aloud throughout the town?</A><br>
|
51 |
+
<A NAME=12>Dauphin, command the citizens make bonfires</A><br>
|
52 |
+
<A NAME=13>And feast and banquet in the open streets,</A><br>
|
53 |
+
<A NAME=14>To celebrate the joy that God hath given us.</A><br>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech4><b>ALENCON</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=15>All France will be replete with mirth and joy,</A><br>
|
59 |
+
<A NAME=16>When they shall hear how we have play'd the men.</A><br>
|
60 |
+
</blockquote>
|
61 |
+
|
62 |
+
<A NAME=speech5><b>CHARLES</b></a>
|
63 |
+
<blockquote>
|
64 |
+
<A NAME=17>'Tis Joan, not we, by whom the day is won;</A><br>
|
65 |
+
<A NAME=18>For which I will divide my crown with her,</A><br>
|
66 |
+
<A NAME=19>And all the priests and friars in my realm</A><br>
|
67 |
+
<A NAME=20>Shall in procession sing her endless praise.</A><br>
|
68 |
+
<A NAME=21>A statelier pyramis to her I'll rear</A><br>
|
69 |
+
<A NAME=22>Than Rhodope's or Memphis' ever was:</A><br>
|
70 |
+
<A NAME=23>In memory of her when she is dead,</A><br>
|
71 |
+
<A NAME=24>Her ashes, in an urn more precious</A><br>
|
72 |
+
<A NAME=25>Than the rich-jewel'd of Darius,</A><br>
|
73 |
+
<A NAME=26>Transported shall be at high festivals</A><br>
|
74 |
+
<A NAME=27>Before the kings and queens of France.</A><br>
|
75 |
+
<A NAME=28>No longer on Saint Denis will we cry,</A><br>
|
76 |
+
<A NAME=29>But Joan la Pucelle shall be France's saint.</A><br>
|
77 |
+
<A NAME=30>Come in, and let us banquet royally,</A><br>
|
78 |
+
<A NAME=31>After this golden day of victory.</A><br>
|
79 |
+
<p><i>Flourish. Exeunt</i></p>
|
80 |
+
<table width="100%" bgcolor="#CCF6F6">
|
81 |
+
<tr><td class="nav" align="center">
|
82 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
83 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
84 |
+
| Act 1, Scene 6
|
85 |
+
<br>
|
86 |
+
<a href="1henryvi.1.5.html">Previous scene</A>
|
87 |
+
| <a href="1henryvi.2.1.html">Next scene</A>
|
88 |
+
</table>
|
89 |
+
|
90 |
+
</body>
|
91 |
+
</html>
|
92 |
+
|
93 |
+
|
data/1henryvi.2.1.html
ADDED
@@ -0,0 +1,262 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. Before Orleans.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 2, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.1.6.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.2.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. Before Orleans.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter a Sergeant of a band with two Sentinels</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>Sergeant</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Sirs, take your places and be vigilant:</A><br>
|
33 |
+
<A NAME=2>If any noise or soldier you perceive</A><br>
|
34 |
+
<A NAME=3>Near to the walls, by some apparent sign</A><br>
|
35 |
+
<A NAME=4>Let us have knowledge at the court of guard.</A><br>
|
36 |
+
</blockquote>
|
37 |
+
|
38 |
+
<A NAME=speech2><b>First Sentinel</b></a>
|
39 |
+
<blockquote>
|
40 |
+
<A NAME=5>Sergeant, you shall.</A><br>
|
41 |
+
<p><i>Exit Sergeant</i></p>
|
42 |
+
<A NAME=6>Thus are poor servitors,</A><br>
|
43 |
+
<A NAME=7>When others sleep upon their quiet beds,</A><br>
|
44 |
+
<A NAME=8>Constrain'd to watch in darkness, rain and cold.</A><br>
|
45 |
+
<p><i>Enter TALBOT, BEDFORD, BURGUNDY, and Forces, with scaling-ladders, their drums beating a dead march</i></p>
|
46 |
+
</blockquote>
|
47 |
+
|
48 |
+
<A NAME=speech3><b>TALBOT</b></a>
|
49 |
+
<blockquote>
|
50 |
+
<A NAME=9>Lord Regent, and redoubted Burgundy,</A><br>
|
51 |
+
<A NAME=10>By whose approach the regions of Artois,</A><br>
|
52 |
+
<A NAME=11>Wallon and Picardy are friends to us,</A><br>
|
53 |
+
<A NAME=12>This happy night the Frenchmen are secure,</A><br>
|
54 |
+
<A NAME=13>Having all day caroused and banqueted:</A><br>
|
55 |
+
<A NAME=14>Embrace we then this opportunity</A><br>
|
56 |
+
<A NAME=15>As fitting best to quittance their deceit</A><br>
|
57 |
+
<A NAME=16>Contrived by art and baleful sorcery.</A><br>
|
58 |
+
</blockquote>
|
59 |
+
|
60 |
+
<A NAME=speech4><b>BEDFORD</b></a>
|
61 |
+
<blockquote>
|
62 |
+
<A NAME=17>Coward of France! how much he wrongs his fame,</A><br>
|
63 |
+
<A NAME=18>Despairing of his own arm's fortitude,</A><br>
|
64 |
+
<A NAME=19>To join with witches and the help of hell!</A><br>
|
65 |
+
</blockquote>
|
66 |
+
|
67 |
+
<A NAME=speech5><b>BURGUNDY</b></a>
|
68 |
+
<blockquote>
|
69 |
+
<A NAME=20>Traitors have never other company.</A><br>
|
70 |
+
<A NAME=21>But what's that Pucelle whom they term so pure?</A><br>
|
71 |
+
</blockquote>
|
72 |
+
|
73 |
+
<A NAME=speech6><b>TALBOT</b></a>
|
74 |
+
<blockquote>
|
75 |
+
<A NAME=22>A maid, they say.</A><br>
|
76 |
+
</blockquote>
|
77 |
+
|
78 |
+
<A NAME=speech7><b>BEDFORD</b></a>
|
79 |
+
<blockquote>
|
80 |
+
<A NAME=23> A maid! and be so martial!</A><br>
|
81 |
+
</blockquote>
|
82 |
+
|
83 |
+
<A NAME=speech8><b>BURGUNDY</b></a>
|
84 |
+
<blockquote>
|
85 |
+
<A NAME=24>Pray God she prove not masculine ere long,</A><br>
|
86 |
+
<A NAME=25>If underneath the standard of the French</A><br>
|
87 |
+
<A NAME=26>She carry armour as she hath begun.</A><br>
|
88 |
+
</blockquote>
|
89 |
+
|
90 |
+
<A NAME=speech9><b>TALBOT</b></a>
|
91 |
+
<blockquote>
|
92 |
+
<A NAME=27>Well, let them practise and converse with spirits:</A><br>
|
93 |
+
<A NAME=28>God is our fortress, in whose conquering name</A><br>
|
94 |
+
<A NAME=29>Let us resolve to scale their flinty bulwarks.</A><br>
|
95 |
+
</blockquote>
|
96 |
+
|
97 |
+
<A NAME=speech10><b>BEDFORD</b></a>
|
98 |
+
<blockquote>
|
99 |
+
<A NAME=30>Ascend, brave Talbot; we will follow thee.</A><br>
|
100 |
+
</blockquote>
|
101 |
+
|
102 |
+
<A NAME=speech11><b>TALBOT</b></a>
|
103 |
+
<blockquote>
|
104 |
+
<A NAME=31>Not all together: better far, I guess,</A><br>
|
105 |
+
<A NAME=32>That we do make our entrance several ways;</A><br>
|
106 |
+
<A NAME=33>That, if it chance the one of us do fail,</A><br>
|
107 |
+
<A NAME=34>The other yet may rise against their force.</A><br>
|
108 |
+
</blockquote>
|
109 |
+
|
110 |
+
<A NAME=speech12><b>BEDFORD</b></a>
|
111 |
+
<blockquote>
|
112 |
+
<A NAME=35>Agreed: I'll to yond corner.</A><br>
|
113 |
+
</blockquote>
|
114 |
+
|
115 |
+
<A NAME=speech13><b>BURGUNDY</b></a>
|
116 |
+
<blockquote>
|
117 |
+
<A NAME=36>And I to this.</A><br>
|
118 |
+
</blockquote>
|
119 |
+
|
120 |
+
<A NAME=speech14><b>TALBOT</b></a>
|
121 |
+
<blockquote>
|
122 |
+
<A NAME=37>And here will Talbot mount, or make his grave.</A><br>
|
123 |
+
<A NAME=38>Now, Salisbury, for thee, and for the right</A><br>
|
124 |
+
<A NAME=39>Of English Henry, shall this night appear</A><br>
|
125 |
+
<A NAME=40>How much in duty I am bound to both.</A><br>
|
126 |
+
</blockquote>
|
127 |
+
|
128 |
+
<A NAME=speech15><b>Sentinels</b></a>
|
129 |
+
<blockquote>
|
130 |
+
<A NAME=41>Arm! arm! the enemy doth make assault!</A><br>
|
131 |
+
<p><i>Cry: 'St. George,' 'A Talbot.'</i></p>
|
132 |
+
<p><i>The French leap over the walls in their shirts. Enter, several ways, the BASTARD OF ORLEANS, ALENCON, and REIGNIER, half ready, and half unready</i></p>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech16><b>ALENCON</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=42>How now, my lords! what, all unready so?</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech17><b>BASTARD OF ORLEANS</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=43>Unready! ay, and glad we 'scaped so well.</A><br>
|
143 |
+
</blockquote>
|
144 |
+
|
145 |
+
<A NAME=speech18><b>REIGNIER</b></a>
|
146 |
+
<blockquote>
|
147 |
+
<A NAME=44>'Twas time, I trow, to wake and leave our beds,</A><br>
|
148 |
+
<A NAME=45>Hearing alarums at our chamber-doors.</A><br>
|
149 |
+
</blockquote>
|
150 |
+
|
151 |
+
<A NAME=speech19><b>ALENCON</b></a>
|
152 |
+
<blockquote>
|
153 |
+
<A NAME=46>Of all exploits since first I follow'd arms,</A><br>
|
154 |
+
<A NAME=47>Ne'er heard I of a warlike enterprise</A><br>
|
155 |
+
<A NAME=48>More venturous or desperate than this.</A><br>
|
156 |
+
</blockquote>
|
157 |
+
|
158 |
+
<A NAME=speech20><b>BASTARD OF ORLEANS</b></a>
|
159 |
+
<blockquote>
|
160 |
+
<A NAME=49>I think this Talbot be a fiend of hell.</A><br>
|
161 |
+
</blockquote>
|
162 |
+
|
163 |
+
<A NAME=speech21><b>REIGNIER</b></a>
|
164 |
+
<blockquote>
|
165 |
+
<A NAME=50>If not of hell, the heavens, sure, favour him.</A><br>
|
166 |
+
</blockquote>
|
167 |
+
|
168 |
+
<A NAME=speech22><b>ALENCON</b></a>
|
169 |
+
<blockquote>
|
170 |
+
<A NAME=51>Here cometh Charles: I marvel how he sped.</A><br>
|
171 |
+
</blockquote>
|
172 |
+
|
173 |
+
<A NAME=speech23><b>BASTARD OF ORLEANS</b></a>
|
174 |
+
<blockquote>
|
175 |
+
<A NAME=52>Tut, holy Joan was his defensive guard.</A><br>
|
176 |
+
<p><i>Enter CHARLES and JOAN LA PUCELLE</i></p>
|
177 |
+
</blockquote>
|
178 |
+
|
179 |
+
<A NAME=speech24><b>CHARLES</b></a>
|
180 |
+
<blockquote>
|
181 |
+
<A NAME=53>Is this thy cunning, thou deceitful dame?</A><br>
|
182 |
+
<A NAME=54>Didst thou at first, to flatter us withal,</A><br>
|
183 |
+
<A NAME=55>Make us partakers of a little gain,</A><br>
|
184 |
+
<A NAME=56>That now our loss might be ten times so much?</A><br>
|
185 |
+
</blockquote>
|
186 |
+
|
187 |
+
<A NAME=speech25><b>JOAN LA PUCELLE</b></a>
|
188 |
+
<blockquote>
|
189 |
+
<A NAME=57>Wherefore is Charles impatient with his friend!</A><br>
|
190 |
+
<A NAME=58>At all times will you have my power alike?</A><br>
|
191 |
+
<A NAME=59>Sleeping or waking must I still prevail,</A><br>
|
192 |
+
<A NAME=60>Or will you blame and lay the fault on me?</A><br>
|
193 |
+
<A NAME=61>Improvident soldiers! had your watch been good,</A><br>
|
194 |
+
<A NAME=62>This sudden mischief never could have fall'n.</A><br>
|
195 |
+
</blockquote>
|
196 |
+
|
197 |
+
<A NAME=speech26><b>CHARLES</b></a>
|
198 |
+
<blockquote>
|
199 |
+
<A NAME=63>Duke of Alencon, this was your default,</A><br>
|
200 |
+
<A NAME=64>That, being captain of the watch to-night,</A><br>
|
201 |
+
<A NAME=65>Did look no better to that weighty charge.</A><br>
|
202 |
+
</blockquote>
|
203 |
+
|
204 |
+
<A NAME=speech27><b>ALENCON</b></a>
|
205 |
+
<blockquote>
|
206 |
+
<A NAME=66>Had all your quarters been as safely kept</A><br>
|
207 |
+
<A NAME=67>As that whereof I had the government,</A><br>
|
208 |
+
<A NAME=68>We had not been thus shamefully surprised.</A><br>
|
209 |
+
</blockquote>
|
210 |
+
|
211 |
+
<A NAME=speech28><b>BASTARD OF ORLEANS</b></a>
|
212 |
+
<blockquote>
|
213 |
+
<A NAME=69>Mine was secure.</A><br>
|
214 |
+
</blockquote>
|
215 |
+
|
216 |
+
<A NAME=speech29><b>REIGNIER</b></a>
|
217 |
+
<blockquote>
|
218 |
+
<A NAME=70> And so was mine, my lord.</A><br>
|
219 |
+
</blockquote>
|
220 |
+
|
221 |
+
<A NAME=speech30><b>CHARLES</b></a>
|
222 |
+
<blockquote>
|
223 |
+
<A NAME=71>And, for myself, most part of all this night,</A><br>
|
224 |
+
<A NAME=72>Within her quarter and mine own precinct</A><br>
|
225 |
+
<A NAME=73>I was employ'd in passing to and fro,</A><br>
|
226 |
+
<A NAME=74>About relieving of the sentinels:</A><br>
|
227 |
+
<A NAME=75>Then how or which way should they first break in?</A><br>
|
228 |
+
</blockquote>
|
229 |
+
|
230 |
+
<A NAME=speech31><b>JOAN LA PUCELLE</b></a>
|
231 |
+
<blockquote>
|
232 |
+
<A NAME=76>Question, my lords, no further of the case,</A><br>
|
233 |
+
<A NAME=77>How or which way: 'tis sure they found some place</A><br>
|
234 |
+
<A NAME=78>But weakly guarded, where the breach was made.</A><br>
|
235 |
+
<A NAME=79>And now there rests no other shift but this;</A><br>
|
236 |
+
<A NAME=80>To gather our soldiers, scatter'd and dispersed,</A><br>
|
237 |
+
<A NAME=81>And lay new platforms to endamage them.</A><br>
|
238 |
+
<p><i>Alarum. Enter an English Soldier, crying 'A Talbot! a Talbot!' They fly, leaving their clothes behind</i></p>
|
239 |
+
</blockquote>
|
240 |
+
|
241 |
+
<A NAME=speech32><b>Soldier</b></a>
|
242 |
+
<blockquote>
|
243 |
+
<A NAME=82>I'll be so bold to take what they have left.</A><br>
|
244 |
+
<A NAME=83>The cry of Talbot serves me for a sword;</A><br>
|
245 |
+
<A NAME=84>For I have loaden me with many spoils,</A><br>
|
246 |
+
<A NAME=85>Using no other weapon but his name.</A><br>
|
247 |
+
<p><i>Exit</i></p>
|
248 |
+
</blockquote>
|
249 |
+
<table width="100%" bgcolor="#CCF6F6">
|
250 |
+
<tr><td class="nav" align="center">
|
251 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
252 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
253 |
+
| Act 2, Scene 1
|
254 |
+
<br>
|
255 |
+
<a href="1henryvi.1.6.html">Previous scene</A>
|
256 |
+
| <a href="1henryvi.2.2.html">Next scene</A>
|
257 |
+
</table>
|
258 |
+
|
259 |
+
</body>
|
260 |
+
</html>
|
261 |
+
|
262 |
+
|
data/1henryvi.2.2.html
ADDED
@@ -0,0 +1,155 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. Orleans. Within the town.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 2, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.2.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.2.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. Orleans. Within the town.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter TALBOT, BEDFORD, BURGUNDY, a Captain, and others</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>BEDFORD</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>The day begins to break, and night is fled,</A><br>
|
33 |
+
<A NAME=2>Whose pitchy mantle over-veil'd the earth.</A><br>
|
34 |
+
<A NAME=3>Here sound retreat, and cease our hot pursuit.</A><br>
|
35 |
+
<p><i>Retreat sounded</i></p>
|
36 |
+
</blockquote>
|
37 |
+
|
38 |
+
<A NAME=speech2><b>TALBOT</b></a>
|
39 |
+
<blockquote>
|
40 |
+
<A NAME=4>Bring forth the body of old Salisbury,</A><br>
|
41 |
+
<A NAME=5>And here advance it in the market-place,</A><br>
|
42 |
+
<A NAME=6>The middle centre of this cursed town.</A><br>
|
43 |
+
<A NAME=7>Now have I paid my vow unto his soul;</A><br>
|
44 |
+
<A NAME=8>For every drop of blood was drawn from him,</A><br>
|
45 |
+
<A NAME=9>There hath at least five Frenchmen died tonight.</A><br>
|
46 |
+
<A NAME=10>And that hereafter ages may behold</A><br>
|
47 |
+
<A NAME=11>What ruin happen'd in revenge of him,</A><br>
|
48 |
+
<A NAME=12>Within their chiefest temple I'll erect</A><br>
|
49 |
+
<A NAME=13>A tomb, wherein his corpse shall be interr'd:</A><br>
|
50 |
+
<A NAME=14>Upon the which, that every one may read,</A><br>
|
51 |
+
<A NAME=15>Shall be engraved the sack of Orleans,</A><br>
|
52 |
+
<A NAME=16>The treacherous manner of his mournful death</A><br>
|
53 |
+
<A NAME=17>And what a terror he had been to France.</A><br>
|
54 |
+
<A NAME=18>But, lords, in all our bloody massacre,</A><br>
|
55 |
+
<A NAME=19>I muse we met not with the Dauphin's grace,</A><br>
|
56 |
+
<A NAME=20>His new-come champion, virtuous Joan of Arc,</A><br>
|
57 |
+
<A NAME=21>Nor any of his false confederates.</A><br>
|
58 |
+
</blockquote>
|
59 |
+
|
60 |
+
<A NAME=speech3><b>BEDFORD</b></a>
|
61 |
+
<blockquote>
|
62 |
+
<A NAME=22>'Tis thought, Lord Talbot, when the fight began,</A><br>
|
63 |
+
<A NAME=23>Roused on the sudden from their drowsy beds,</A><br>
|
64 |
+
<A NAME=24>They did amongst the troops of armed men</A><br>
|
65 |
+
<A NAME=25>Leap o'er the walls for refuge in the field.</A><br>
|
66 |
+
</blockquote>
|
67 |
+
|
68 |
+
<A NAME=speech4><b>BURGUNDY</b></a>
|
69 |
+
<blockquote>
|
70 |
+
<A NAME=26>Myself, as far as I could well discern</A><br>
|
71 |
+
<A NAME=27>For smoke and dusky vapours of the night,</A><br>
|
72 |
+
<A NAME=28>Am sure I scared the Dauphin and his trull,</A><br>
|
73 |
+
<A NAME=29>When arm in arm they both came swiftly running,</A><br>
|
74 |
+
<A NAME=30>Like to a pair of loving turtle-doves</A><br>
|
75 |
+
<A NAME=31>That could not live asunder day or night.</A><br>
|
76 |
+
<A NAME=32>After that things are set in order here,</A><br>
|
77 |
+
<A NAME=33>We'll follow them with all the power we have.</A><br>
|
78 |
+
<p><i>Enter a Messenger</i></p>
|
79 |
+
</blockquote>
|
80 |
+
|
81 |
+
<A NAME=speech5><b>Messenger</b></a>
|
82 |
+
<blockquote>
|
83 |
+
<A NAME=34>All hail, my lords! which of this princely train</A><br>
|
84 |
+
<A NAME=35>Call ye the warlike Talbot, for his acts</A><br>
|
85 |
+
<A NAME=36>So much applauded through the realm of France?</A><br>
|
86 |
+
</blockquote>
|
87 |
+
|
88 |
+
<A NAME=speech6><b>TALBOT</b></a>
|
89 |
+
<blockquote>
|
90 |
+
<A NAME=37>Here is the Talbot: who would speak with him?</A><br>
|
91 |
+
</blockquote>
|
92 |
+
|
93 |
+
<A NAME=speech7><b>Messenger</b></a>
|
94 |
+
<blockquote>
|
95 |
+
<A NAME=38>The virtuous lady, Countess of Auvergne,</A><br>
|
96 |
+
<A NAME=39>With modesty admiring thy renown,</A><br>
|
97 |
+
<A NAME=40>By me entreats, great lord, thou wouldst vouchsafe</A><br>
|
98 |
+
<A NAME=41>To visit her poor castle where she lies,</A><br>
|
99 |
+
<A NAME=42>That she may boast she hath beheld the man</A><br>
|
100 |
+
<A NAME=43>Whose glory fills the world with loud report.</A><br>
|
101 |
+
</blockquote>
|
102 |
+
|
103 |
+
<A NAME=speech8><b>BURGUNDY</b></a>
|
104 |
+
<blockquote>
|
105 |
+
<A NAME=44>Is it even so? Nay, then, I see our wars</A><br>
|
106 |
+
<A NAME=45>Will turn unto a peaceful comic sport,</A><br>
|
107 |
+
<A NAME=46>When ladies crave to be encounter'd with.</A><br>
|
108 |
+
<A NAME=47>You may not, my lord, despise her gentle suit.</A><br>
|
109 |
+
</blockquote>
|
110 |
+
|
111 |
+
<A NAME=speech9><b>TALBOT</b></a>
|
112 |
+
<blockquote>
|
113 |
+
<A NAME=48>Ne'er trust me then; for when a world of men</A><br>
|
114 |
+
<A NAME=49>Could not prevail with all their oratory,</A><br>
|
115 |
+
<A NAME=50>Yet hath a woman's kindness over-ruled:</A><br>
|
116 |
+
<A NAME=51>And therefore tell her I return great thanks,</A><br>
|
117 |
+
<A NAME=52>And in submission will attend on her.</A><br>
|
118 |
+
<A NAME=53>Will not your honours bear me company?</A><br>
|
119 |
+
</blockquote>
|
120 |
+
|
121 |
+
<A NAME=speech10><b>BEDFORD</b></a>
|
122 |
+
<blockquote>
|
123 |
+
<A NAME=54>No, truly; it is more than manners will:</A><br>
|
124 |
+
<A NAME=55>And I have heard it said, unbidden guests</A><br>
|
125 |
+
<A NAME=56>Are often welcomest when they are gone.</A><br>
|
126 |
+
</blockquote>
|
127 |
+
|
128 |
+
<A NAME=speech11><b>TALBOT</b></a>
|
129 |
+
<blockquote>
|
130 |
+
<A NAME=57>Well then, alone, since there's no remedy,</A><br>
|
131 |
+
<A NAME=58>I mean to prove this lady's courtesy.</A><br>
|
132 |
+
<A NAME=59>Come hither, captain.</A><br>
|
133 |
+
<p><i>Whispers</i></p>
|
134 |
+
<A NAME=60>You perceive my mind?</A><br>
|
135 |
+
</blockquote>
|
136 |
+
|
137 |
+
<A NAME=speech12><b>Captain</b></a>
|
138 |
+
<blockquote>
|
139 |
+
<A NAME=61>I do, my lord, and mean accordingly.</A><br>
|
140 |
+
<p><i>Exeunt</i></p>
|
141 |
+
</blockquote>
|
142 |
+
<table width="100%" bgcolor="#CCF6F6">
|
143 |
+
<tr><td class="nav" align="center">
|
144 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
145 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
146 |
+
| Act 2, Scene 2
|
147 |
+
<br>
|
148 |
+
<a href="1henryvi.2.1.html">Previous scene</A>
|
149 |
+
| <a href="1henryvi.2.3.html">Next scene</A>
|
150 |
+
</table>
|
151 |
+
|
152 |
+
</body>
|
153 |
+
</html>
|
154 |
+
|
155 |
+
|
data/1henryvi.2.3.html
ADDED
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. Auvergne. The COUNTESS's castle.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 2, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.2.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.2.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. Auvergne. The COUNTESS's castle.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter the COUNTESS and her Porter</i>
|
28 |
+
</blockquote>
|
29 |
+
<blockquote>
|
30 |
+
<A NAME=1>COUNTESS</A><br>
|
31 |
+
</blockquote>
|
32 |
+
|
33 |
+
<A NAME=speech1><b>OF AUVERGNE</b></a>
|
34 |
+
<blockquote>
|
35 |
+
<A NAME=2>Porter, remember what I gave in charge;</A><br>
|
36 |
+
<A NAME=3>And when you have done so, bring the keys to me.</A><br>
|
37 |
+
</blockquote>
|
38 |
+
|
39 |
+
<A NAME=speech2><b>Porter</b></a>
|
40 |
+
<blockquote>
|
41 |
+
<A NAME=4>Madam, I will.</A><br>
|
42 |
+
<p><i>Exit</i></p>
|
43 |
+
<A NAME=5>COUNTESS</A><br>
|
44 |
+
</blockquote>
|
45 |
+
|
46 |
+
<A NAME=speech3><b>OF AUVERGNE</b></a>
|
47 |
+
<blockquote>
|
48 |
+
<A NAME=6>The plot is laid: if all things fall out right,</A><br>
|
49 |
+
<A NAME=7>I shall as famous be by this exploit</A><br>
|
50 |
+
<A NAME=8>As Scythian Tomyris by Cyrus' death.</A><br>
|
51 |
+
<A NAME=9>Great is the rumor of this dreadful knight,</A><br>
|
52 |
+
<A NAME=10>And his achievements of no less account:</A><br>
|
53 |
+
<A NAME=11>Fain would mine eyes be witness with mine ears,</A><br>
|
54 |
+
<A NAME=12>To give their censure of these rare reports.</A><br>
|
55 |
+
<p><i>Enter Messenger and TALBOT</i></p>
|
56 |
+
</blockquote>
|
57 |
+
|
58 |
+
<A NAME=speech4><b>Messenger</b></a>
|
59 |
+
<blockquote>
|
60 |
+
<A NAME=13>Madam,</A><br>
|
61 |
+
<A NAME=14>According as your ladyship desired,</A><br>
|
62 |
+
<A NAME=15>By message craved, so is Lord Talbot come.</A><br>
|
63 |
+
<A NAME=16>COUNTESS</A><br>
|
64 |
+
</blockquote>
|
65 |
+
|
66 |
+
<A NAME=speech5><b>OF AUVERGNE</b></a>
|
67 |
+
<blockquote>
|
68 |
+
<A NAME=17>And he is welcome. What! is this the man?</A><br>
|
69 |
+
</blockquote>
|
70 |
+
|
71 |
+
<A NAME=speech6><b>Messenger</b></a>
|
72 |
+
<blockquote>
|
73 |
+
<A NAME=18>Madam, it is.</A><br>
|
74 |
+
<A NAME=19>COUNTESS</A><br>
|
75 |
+
</blockquote>
|
76 |
+
|
77 |
+
<A NAME=speech7><b>OF AUVERGNE</b></a>
|
78 |
+
<blockquote>
|
79 |
+
<A NAME=20> Is this the scourge of France?</A><br>
|
80 |
+
<A NAME=21>Is this the Talbot, so much fear'd abroad</A><br>
|
81 |
+
<A NAME=22>That with his name the mothers still their babes?</A><br>
|
82 |
+
<A NAME=23>I see report is fabulous and false:</A><br>
|
83 |
+
<A NAME=24>I thought I should have seen some Hercules,</A><br>
|
84 |
+
<A NAME=25>A second Hector, for his grim aspect,</A><br>
|
85 |
+
<A NAME=26>And large proportion of his strong-knit limbs.</A><br>
|
86 |
+
<A NAME=27>Alas, this is a child, a silly dwarf!</A><br>
|
87 |
+
<A NAME=28>It cannot be this weak and writhled shrimp</A><br>
|
88 |
+
<A NAME=29>Should strike such terror to his enemies.</A><br>
|
89 |
+
</blockquote>
|
90 |
+
|
91 |
+
<A NAME=speech8><b>TALBOT</b></a>
|
92 |
+
<blockquote>
|
93 |
+
<A NAME=30>Madam, I have been bold to trouble you;</A><br>
|
94 |
+
<A NAME=31>But since your ladyship is not at leisure,</A><br>
|
95 |
+
<A NAME=32>I'll sort some other time to visit you.</A><br>
|
96 |
+
<A NAME=33>COUNTESS</A><br>
|
97 |
+
</blockquote>
|
98 |
+
|
99 |
+
<A NAME=speech9><b>OF AUVERGNE</b></a>
|
100 |
+
<blockquote>
|
101 |
+
<A NAME=34>What means he now? Go ask him whither he goes.</A><br>
|
102 |
+
</blockquote>
|
103 |
+
|
104 |
+
<A NAME=speech10><b>Messenger</b></a>
|
105 |
+
<blockquote>
|
106 |
+
<A NAME=35>Stay, my Lord Talbot; for my lady craves</A><br>
|
107 |
+
<A NAME=36>To know the cause of your abrupt departure.</A><br>
|
108 |
+
</blockquote>
|
109 |
+
|
110 |
+
<A NAME=speech11><b>TALBOT</b></a>
|
111 |
+
<blockquote>
|
112 |
+
<A NAME=37>Marry, for that she's in a wrong belief,</A><br>
|
113 |
+
<A NAME=38>I go to certify her Talbot's here.</A><br>
|
114 |
+
<p><i>Re-enter Porter with keys</i></p>
|
115 |
+
<A NAME=39>COUNTESS</A><br>
|
116 |
+
</blockquote>
|
117 |
+
|
118 |
+
<A NAME=speech12><b>OF AUVERGNE</b></a>
|
119 |
+
<blockquote>
|
120 |
+
<A NAME=40>If thou be he, then art thou prisoner.</A><br>
|
121 |
+
</blockquote>
|
122 |
+
|
123 |
+
<A NAME=speech13><b>TALBOT</b></a>
|
124 |
+
<blockquote>
|
125 |
+
<A NAME=41>Prisoner! to whom?</A><br>
|
126 |
+
<A NAME=42>COUNTESS</A><br>
|
127 |
+
</blockquote>
|
128 |
+
|
129 |
+
<A NAME=speech14><b>OF AUVERGNE</b></a>
|
130 |
+
<blockquote>
|
131 |
+
<A NAME=43>To me, blood-thirsty lord;</A><br>
|
132 |
+
<A NAME=44>And for that cause I trained thee to my house.</A><br>
|
133 |
+
<A NAME=45>Long time thy shadow hath been thrall to me,</A><br>
|
134 |
+
<A NAME=46>For in my gallery thy picture hangs:</A><br>
|
135 |
+
<A NAME=47>But now the substance shall endure the like,</A><br>
|
136 |
+
<A NAME=48>And I will chain these legs and arms of thine,</A><br>
|
137 |
+
<A NAME=49>That hast by tyranny these many years</A><br>
|
138 |
+
<A NAME=50>Wasted our country, slain our citizens</A><br>
|
139 |
+
<A NAME=51>And sent our sons and husbands captivate.</A><br>
|
140 |
+
</blockquote>
|
141 |
+
|
142 |
+
<A NAME=speech15><b>TALBOT</b></a>
|
143 |
+
<blockquote>
|
144 |
+
<A NAME=52>Ha, ha, ha!</A><br>
|
145 |
+
<A NAME=53>COUNTESS</A><br>
|
146 |
+
</blockquote>
|
147 |
+
|
148 |
+
<A NAME=speech16><b>OF AUVERGNE</b></a>
|
149 |
+
<blockquote>
|
150 |
+
<A NAME=54>Laughest thou, wretch? thy mirth shall turn to moan.</A><br>
|
151 |
+
</blockquote>
|
152 |
+
|
153 |
+
<A NAME=speech17><b>TALBOT</b></a>
|
154 |
+
<blockquote>
|
155 |
+
<A NAME=55>I laugh to see your ladyship so fond</A><br>
|
156 |
+
<A NAME=56>To think that you have aught but Talbot's shadow</A><br>
|
157 |
+
<A NAME=57>Whereon to practise your severity.</A><br>
|
158 |
+
<A NAME=58>COUNTESS</A><br>
|
159 |
+
</blockquote>
|
160 |
+
|
161 |
+
<A NAME=speech18><b>OF AUVERGNE</b></a>
|
162 |
+
<blockquote>
|
163 |
+
<A NAME=59>Why, art not thou the man?</A><br>
|
164 |
+
</blockquote>
|
165 |
+
|
166 |
+
<A NAME=speech19><b>TALBOT</b></a>
|
167 |
+
<blockquote>
|
168 |
+
<A NAME=60>I am indeed.</A><br>
|
169 |
+
<A NAME=61>COUNTESS</A><br>
|
170 |
+
</blockquote>
|
171 |
+
|
172 |
+
<A NAME=speech20><b>OF AUVERGNE</b></a>
|
173 |
+
<blockquote>
|
174 |
+
<A NAME=62>Then have I substance too.</A><br>
|
175 |
+
</blockquote>
|
176 |
+
|
177 |
+
<A NAME=speech21><b>TALBOT</b></a>
|
178 |
+
<blockquote>
|
179 |
+
<A NAME=63>No, no, I am but shadow of myself:</A><br>
|
180 |
+
<A NAME=64>You are deceived, my substance is not here;</A><br>
|
181 |
+
<A NAME=65>For what you see is but the smallest part</A><br>
|
182 |
+
<A NAME=66>And least proportion of humanity:</A><br>
|
183 |
+
<A NAME=67>I tell you, madam, were the whole frame here,</A><br>
|
184 |
+
<A NAME=68>It is of such a spacious lofty pitch,</A><br>
|
185 |
+
<A NAME=69>Your roof were not sufficient to contain't.</A><br>
|
186 |
+
<A NAME=70>COUNTESS</A><br>
|
187 |
+
</blockquote>
|
188 |
+
|
189 |
+
<A NAME=speech22><b>OF AUVERGNE</b></a>
|
190 |
+
<blockquote>
|
191 |
+
<A NAME=71>This is a riddling merchant for the nonce;</A><br>
|
192 |
+
<A NAME=72>He will be here, and yet he is not here:</A><br>
|
193 |
+
<A NAME=73>How can these contrarieties agree?</A><br>
|
194 |
+
</blockquote>
|
195 |
+
|
196 |
+
<A NAME=speech23><b>TALBOT</b></a>
|
197 |
+
<blockquote>
|
198 |
+
<A NAME=74>That will I show you presently.</A><br>
|
199 |
+
<p><i>Winds his horn. Drums strike up: a peal of ordnance. Enter soldiers</i></p>
|
200 |
+
<A NAME=75>How say you, madam? are you now persuaded</A><br>
|
201 |
+
<A NAME=76>That Talbot is but shadow of himself?</A><br>
|
202 |
+
<A NAME=77>These are his substance, sinews, arms and strength,</A><br>
|
203 |
+
<A NAME=78>With which he yoketh your rebellious necks,</A><br>
|
204 |
+
<A NAME=79>Razeth your cities and subverts your towns</A><br>
|
205 |
+
<A NAME=80>And in a moment makes them desolate.</A><br>
|
206 |
+
<A NAME=81>COUNTESS</A><br>
|
207 |
+
</blockquote>
|
208 |
+
|
209 |
+
<A NAME=speech24><b>OF AUVERGNE</b></a>
|
210 |
+
<blockquote>
|
211 |
+
<A NAME=82>Victorious Talbot! pardon my abuse:</A><br>
|
212 |
+
<A NAME=83>I find thou art no less than fame hath bruited</A><br>
|
213 |
+
<A NAME=84>And more than may be gather'd by thy shape.</A><br>
|
214 |
+
<A NAME=85>Let my presumption not provoke thy wrath;</A><br>
|
215 |
+
<A NAME=86>For I am sorry that with reverence</A><br>
|
216 |
+
<A NAME=87>I did not entertain thee as thou art.</A><br>
|
217 |
+
</blockquote>
|
218 |
+
|
219 |
+
<A NAME=speech25><b>TALBOT</b></a>
|
220 |
+
<blockquote>
|
221 |
+
<A NAME=88>Be not dismay'd, fair lady; nor misconstrue</A><br>
|
222 |
+
<A NAME=89>The mind of Talbot, as you did mistake</A><br>
|
223 |
+
<A NAME=90>The outward composition of his body.</A><br>
|
224 |
+
<A NAME=91>What you have done hath not offended me;</A><br>
|
225 |
+
<A NAME=92>Nor other satisfaction do I crave,</A><br>
|
226 |
+
<A NAME=93>But only, with your patience, that we may</A><br>
|
227 |
+
<A NAME=94>Taste of your wine and see what cates you have;</A><br>
|
228 |
+
<A NAME=95>For soldiers' stomachs always serve them well.</A><br>
|
229 |
+
<A NAME=96>COUNTESS</A><br>
|
230 |
+
</blockquote>
|
231 |
+
|
232 |
+
<A NAME=speech26><b>OF AUVERGNE</b></a>
|
233 |
+
<blockquote>
|
234 |
+
<A NAME=97>With all my heart, and think me honoured</A><br>
|
235 |
+
<A NAME=98>To feast so great a warrior in my house.</A><br>
|
236 |
+
<p><i>Exeunt</i></p>
|
237 |
+
</blockquote>
|
238 |
+
<table width="100%" bgcolor="#CCF6F6">
|
239 |
+
<tr><td class="nav" align="center">
|
240 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
241 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
242 |
+
| Act 2, Scene 3
|
243 |
+
<br>
|
244 |
+
<a href="1henryvi.2.2.html">Previous scene</A>
|
245 |
+
| <a href="1henryvi.2.4.html">Next scene</A>
|
246 |
+
</table>
|
247 |
+
|
248 |
+
</body>
|
249 |
+
</html>
|
250 |
+
|
251 |
+
|
data/1henryvi.2.4.html
ADDED
@@ -0,0 +1,388 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. London. The Temple-garden.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 2, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.2.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.2.5.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. London. The Temple-garden.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter the Earls of SOMERSET, SUFFOLK, and WARWICK; RICHARD PLANTAGENET, VERNON, and another Lawyer</i>
|
28 |
+
</blockquote>
|
29 |
+
<blockquote>
|
30 |
+
<A NAME=1>RICHARD</A><br>
|
31 |
+
</blockquote>
|
32 |
+
|
33 |
+
<A NAME=speech1><b>PLANTAGENET</b></a>
|
34 |
+
<blockquote>
|
35 |
+
<A NAME=2>Great lords and gentlemen, what means this silence?</A><br>
|
36 |
+
<A NAME=3>Dare no man answer in a case of truth?</A><br>
|
37 |
+
</blockquote>
|
38 |
+
|
39 |
+
<A NAME=speech2><b>SUFFOLK</b></a>
|
40 |
+
<blockquote>
|
41 |
+
<A NAME=4>Within the Temple-hall we were too loud;</A><br>
|
42 |
+
<A NAME=5>The garden here is more convenient.</A><br>
|
43 |
+
<A NAME=6>RICHARD</A><br>
|
44 |
+
</blockquote>
|
45 |
+
|
46 |
+
<A NAME=speech3><b>PLANTAGENET</b></a>
|
47 |
+
<blockquote>
|
48 |
+
<A NAME=7>Then say at once if I maintain'd the truth;</A><br>
|
49 |
+
<A NAME=8>Or else was wrangling Somerset in the error?</A><br>
|
50 |
+
</blockquote>
|
51 |
+
|
52 |
+
<A NAME=speech4><b>SUFFOLK</b></a>
|
53 |
+
<blockquote>
|
54 |
+
<A NAME=9>Faith, I have been a truant in the law,</A><br>
|
55 |
+
<A NAME=10>And never yet could frame my will to it;</A><br>
|
56 |
+
<A NAME=11>And therefore frame the law unto my will.</A><br>
|
57 |
+
</blockquote>
|
58 |
+
|
59 |
+
<A NAME=speech5><b>SOMERSET</b></a>
|
60 |
+
<blockquote>
|
61 |
+
<A NAME=12>Judge you, my Lord of Warwick, then, between us.</A><br>
|
62 |
+
</blockquote>
|
63 |
+
|
64 |
+
<A NAME=speech6><b>WARWICK</b></a>
|
65 |
+
<blockquote>
|
66 |
+
<A NAME=13>Between two hawks, which flies the higher pitch;</A><br>
|
67 |
+
<A NAME=14>Between two dogs, which hath the deeper mouth;</A><br>
|
68 |
+
<A NAME=15>Between two blades, which bears the better temper:</A><br>
|
69 |
+
<A NAME=16>Between two horses, which doth bear him best;</A><br>
|
70 |
+
<A NAME=17>Between two girls, which hath the merriest eye;</A><br>
|
71 |
+
<A NAME=18>I have perhaps some shallow spirit of judgement;</A><br>
|
72 |
+
<A NAME=19>But in these nice sharp quillets of the law,</A><br>
|
73 |
+
<A NAME=20>Good faith, I am no wiser than a daw.</A><br>
|
74 |
+
<A NAME=21>RICHARD</A><br>
|
75 |
+
</blockquote>
|
76 |
+
|
77 |
+
<A NAME=speech7><b>PLANTAGENET</b></a>
|
78 |
+
<blockquote>
|
79 |
+
<A NAME=22>Tut, tut, here is a mannerly forbearance:</A><br>
|
80 |
+
<A NAME=23>The truth appears so naked on my side</A><br>
|
81 |
+
<A NAME=24>That any purblind eye may find it out.</A><br>
|
82 |
+
</blockquote>
|
83 |
+
|
84 |
+
<A NAME=speech8><b>SOMERSET</b></a>
|
85 |
+
<blockquote>
|
86 |
+
<A NAME=25>And on my side it is so well apparell'd,</A><br>
|
87 |
+
<A NAME=26>So clear, so shining and so evident</A><br>
|
88 |
+
<A NAME=27>That it will glimmer through a blind man's eye.</A><br>
|
89 |
+
<A NAME=28>RICHARD</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech9><b>PLANTAGENET</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=29>Since you are tongue-tied and so loath to speak,</A><br>
|
95 |
+
<A NAME=30>In dumb significants proclaim your thoughts:</A><br>
|
96 |
+
<A NAME=31>Let him that is a true-born gentleman</A><br>
|
97 |
+
<A NAME=32>And stands upon the honour of his birth,</A><br>
|
98 |
+
<A NAME=33>If he suppose that I have pleaded truth,</A><br>
|
99 |
+
<A NAME=34>From off this brier pluck a white rose with me.</A><br>
|
100 |
+
</blockquote>
|
101 |
+
|
102 |
+
<A NAME=speech10><b>SOMERSET</b></a>
|
103 |
+
<blockquote>
|
104 |
+
<A NAME=35>Let him that is no coward nor no flatterer,</A><br>
|
105 |
+
<A NAME=36>But dare maintain the party of the truth,</A><br>
|
106 |
+
<A NAME=37>Pluck a red rose from off this thorn with me.</A><br>
|
107 |
+
</blockquote>
|
108 |
+
|
109 |
+
<A NAME=speech11><b>WARWICK</b></a>
|
110 |
+
<blockquote>
|
111 |
+
<A NAME=38>I love no colours, and without all colour</A><br>
|
112 |
+
<A NAME=39>Of base insinuating flattery</A><br>
|
113 |
+
<A NAME=40>I pluck this white rose with Plantagenet.</A><br>
|
114 |
+
</blockquote>
|
115 |
+
|
116 |
+
<A NAME=speech12><b>SUFFOLK</b></a>
|
117 |
+
<blockquote>
|
118 |
+
<A NAME=41>I pluck this red rose with young Somerset</A><br>
|
119 |
+
<A NAME=42>And say withal I think he held the right.</A><br>
|
120 |
+
</blockquote>
|
121 |
+
|
122 |
+
<A NAME=speech13><b>VERNON</b></a>
|
123 |
+
<blockquote>
|
124 |
+
<A NAME=43>Stay, lords and gentlemen, and pluck no more,</A><br>
|
125 |
+
<A NAME=44>Till you conclude that he upon whose side</A><br>
|
126 |
+
<A NAME=45>The fewest roses are cropp'd from the tree</A><br>
|
127 |
+
<A NAME=46>Shall yield the other in the right opinion.</A><br>
|
128 |
+
</blockquote>
|
129 |
+
|
130 |
+
<A NAME=speech14><b>SOMERSET</b></a>
|
131 |
+
<blockquote>
|
132 |
+
<A NAME=47>Good Master Vernon, it is well objected:</A><br>
|
133 |
+
<A NAME=48>If I have fewest, I subscribe in silence.</A><br>
|
134 |
+
<A NAME=49>RICHARD</A><br>
|
135 |
+
</blockquote>
|
136 |
+
|
137 |
+
<A NAME=speech15><b>PLANTAGENET</b></a>
|
138 |
+
<blockquote>
|
139 |
+
<A NAME=50>And I.</A><br>
|
140 |
+
</blockquote>
|
141 |
+
|
142 |
+
<A NAME=speech16><b>VERNON</b></a>
|
143 |
+
<blockquote>
|
144 |
+
<A NAME=51>Then for the truth and plainness of the case.</A><br>
|
145 |
+
<A NAME=52>I pluck this pale and maiden blossom here,</A><br>
|
146 |
+
<A NAME=53>Giving my verdict on the white rose side.</A><br>
|
147 |
+
</blockquote>
|
148 |
+
|
149 |
+
<A NAME=speech17><b>SOMERSET</b></a>
|
150 |
+
<blockquote>
|
151 |
+
<A NAME=54>Prick not your finger as you pluck it off,</A><br>
|
152 |
+
<A NAME=55>Lest bleeding you do paint the white rose red</A><br>
|
153 |
+
<A NAME=56>And fall on my side so, against your will.</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech18><b>VERNON</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=57>If I my lord, for my opinion bleed,</A><br>
|
159 |
+
<A NAME=58>Opinion shall be surgeon to my hurt</A><br>
|
160 |
+
<A NAME=59>And keep me on the side where still I am.</A><br>
|
161 |
+
</blockquote>
|
162 |
+
|
163 |
+
<A NAME=speech19><b>SOMERSET</b></a>
|
164 |
+
<blockquote>
|
165 |
+
<A NAME=60>Well, well, come on: who else?</A><br>
|
166 |
+
</blockquote>
|
167 |
+
|
168 |
+
<A NAME=speech20><b>Lawyer</b></a>
|
169 |
+
<blockquote>
|
170 |
+
<A NAME=61>Unless my study and my books be false,</A><br>
|
171 |
+
<A NAME=62>The argument you held was wrong in you:</A><br>
|
172 |
+
<p><i>To SOMERSET</i></p>
|
173 |
+
<A NAME=63>In sign whereof I pluck a white rose too.</A><br>
|
174 |
+
<A NAME=64>RICHARD</A><br>
|
175 |
+
</blockquote>
|
176 |
+
|
177 |
+
<A NAME=speech21><b>PLANTAGENET</b></a>
|
178 |
+
<blockquote>
|
179 |
+
<A NAME=65>Now, Somerset, where is your argument?</A><br>
|
180 |
+
</blockquote>
|
181 |
+
|
182 |
+
<A NAME=speech22><b>SOMERSET</b></a>
|
183 |
+
<blockquote>
|
184 |
+
<A NAME=66>Here in my scabbard, meditating that</A><br>
|
185 |
+
<A NAME=67>Shall dye your white rose in a bloody red.</A><br>
|
186 |
+
<A NAME=68>RICHARD</A><br>
|
187 |
+
</blockquote>
|
188 |
+
|
189 |
+
<A NAME=speech23><b>PLANTAGENET</b></a>
|
190 |
+
<blockquote>
|
191 |
+
<A NAME=69>Meantime your cheeks do counterfeit our roses;</A><br>
|
192 |
+
<A NAME=70>For pale they look with fear, as witnessing</A><br>
|
193 |
+
<A NAME=71>The truth on our side.</A><br>
|
194 |
+
</blockquote>
|
195 |
+
|
196 |
+
<A NAME=speech24><b>SOMERSET</b></a>
|
197 |
+
<blockquote>
|
198 |
+
<A NAME=72>No, Plantagenet,</A><br>
|
199 |
+
<A NAME=73>'Tis not for fear but anger that thy cheeks</A><br>
|
200 |
+
<A NAME=74>Blush for pure shame to counterfeit our roses,</A><br>
|
201 |
+
<A NAME=75>And yet thy tongue will not confess thy error.</A><br>
|
202 |
+
<A NAME=76>RICHARD</A><br>
|
203 |
+
</blockquote>
|
204 |
+
|
205 |
+
<A NAME=speech25><b>PLANTAGENET</b></a>
|
206 |
+
<blockquote>
|
207 |
+
<A NAME=77>Hath not thy rose a canker, Somerset?</A><br>
|
208 |
+
</blockquote>
|
209 |
+
|
210 |
+
<A NAME=speech26><b>SOMERSET</b></a>
|
211 |
+
<blockquote>
|
212 |
+
<A NAME=78>Hath not thy rose a thorn, Plantagenet?</A><br>
|
213 |
+
<A NAME=79>RICHARD</A><br>
|
214 |
+
</blockquote>
|
215 |
+
|
216 |
+
<A NAME=speech27><b>PLANTAGENET</b></a>
|
217 |
+
<blockquote>
|
218 |
+
<A NAME=80>Ay, sharp and piercing, to maintain his truth;</A><br>
|
219 |
+
<A NAME=81>Whiles thy consuming canker eats his falsehood.</A><br>
|
220 |
+
</blockquote>
|
221 |
+
|
222 |
+
<A NAME=speech28><b>SOMERSET</b></a>
|
223 |
+
<blockquote>
|
224 |
+
<A NAME=82>Well, I'll find friends to wear my bleeding roses,</A><br>
|
225 |
+
<A NAME=83>That shall maintain what I have said is true,</A><br>
|
226 |
+
<A NAME=84>Where false Plantagenet dare not be seen.</A><br>
|
227 |
+
<A NAME=85>RICHARD</A><br>
|
228 |
+
</blockquote>
|
229 |
+
|
230 |
+
<A NAME=speech29><b>PLANTAGENET</b></a>
|
231 |
+
<blockquote>
|
232 |
+
<A NAME=86>Now, by this maiden blossom in my hand,</A><br>
|
233 |
+
<A NAME=87>I scorn thee and thy fashion, peevish boy.</A><br>
|
234 |
+
</blockquote>
|
235 |
+
|
236 |
+
<A NAME=speech30><b>SUFFOLK</b></a>
|
237 |
+
<blockquote>
|
238 |
+
<A NAME=88>Turn not thy scorns this way, Plantagenet.</A><br>
|
239 |
+
<A NAME=89>RICHARD</A><br>
|
240 |
+
</blockquote>
|
241 |
+
|
242 |
+
<A NAME=speech31><b>PLANTAGENET</b></a>
|
243 |
+
<blockquote>
|
244 |
+
<A NAME=90>Proud Pole, I will, and scorn both him and thee.</A><br>
|
245 |
+
</blockquote>
|
246 |
+
|
247 |
+
<A NAME=speech32><b>SUFFOLK</b></a>
|
248 |
+
<blockquote>
|
249 |
+
<A NAME=91>I'll turn my part thereof into thy throat.</A><br>
|
250 |
+
</blockquote>
|
251 |
+
|
252 |
+
<A NAME=speech33><b>SOMERSET</b></a>
|
253 |
+
<blockquote>
|
254 |
+
<A NAME=92>Away, away, good William de la Pole!</A><br>
|
255 |
+
<A NAME=93>We grace the yeoman by conversing with him.</A><br>
|
256 |
+
</blockquote>
|
257 |
+
|
258 |
+
<A NAME=speech34><b>WARWICK</b></a>
|
259 |
+
<blockquote>
|
260 |
+
<A NAME=94>Now, by God's will, thou wrong'st him, Somerset;</A><br>
|
261 |
+
<A NAME=95>His grandfather was Lionel Duke of Clarence,</A><br>
|
262 |
+
<A NAME=96>Third son to the third Edward King of England:</A><br>
|
263 |
+
<A NAME=97>Spring crestless yeomen from so deep a root?</A><br>
|
264 |
+
<A NAME=98>RICHARD</A><br>
|
265 |
+
</blockquote>
|
266 |
+
|
267 |
+
<A NAME=speech35><b>PLANTAGENET</b></a>
|
268 |
+
<blockquote>
|
269 |
+
<A NAME=99>He bears him on the place's privilege,</A><br>
|
270 |
+
<A NAME=100>Or durst not, for his craven heart, say thus.</A><br>
|
271 |
+
</blockquote>
|
272 |
+
|
273 |
+
<A NAME=speech36><b>SOMERSET</b></a>
|
274 |
+
<blockquote>
|
275 |
+
<A NAME=101>By him that made me, I'll maintain my words</A><br>
|
276 |
+
<A NAME=102>On any plot of ground in Christendom.</A><br>
|
277 |
+
<A NAME=103>Was not thy father, Richard Earl of Cambridge,</A><br>
|
278 |
+
<A NAME=104>For treason executed in our late king's days?</A><br>
|
279 |
+
<A NAME=105>And, by his treason, stand'st not thou attainted,</A><br>
|
280 |
+
<A NAME=106>Corrupted, and exempt from ancient gentry?</A><br>
|
281 |
+
<A NAME=107>His trespass yet lives guilty in thy blood;</A><br>
|
282 |
+
<A NAME=108>And, till thou be restored, thou art a yeoman.</A><br>
|
283 |
+
<A NAME=109>RICHARD</A><br>
|
284 |
+
</blockquote>
|
285 |
+
|
286 |
+
<A NAME=speech37><b>PLANTAGENET</b></a>
|
287 |
+
<blockquote>
|
288 |
+
<A NAME=110>My father was attached, not attainted,</A><br>
|
289 |
+
<A NAME=111>Condemn'd to die for treason, but no traitor;</A><br>
|
290 |
+
<A NAME=112>And that I'll prove on better men than Somerset,</A><br>
|
291 |
+
<A NAME=113>Were growing time once ripen'd to my will.</A><br>
|
292 |
+
<A NAME=114>For your partaker Pole and you yourself,</A><br>
|
293 |
+
<A NAME=115>I'll note you in my book of memory,</A><br>
|
294 |
+
<A NAME=116>To scourge you for this apprehension:</A><br>
|
295 |
+
<A NAME=117>Look to it well and say you are well warn'd.</A><br>
|
296 |
+
</blockquote>
|
297 |
+
|
298 |
+
<A NAME=speech38><b>SOMERSET</b></a>
|
299 |
+
<blockquote>
|
300 |
+
<A NAME=118>Ah, thou shalt find us ready for thee still;</A><br>
|
301 |
+
<A NAME=119>And know us by these colours for thy foes,</A><br>
|
302 |
+
<A NAME=120>For these my friends in spite of thee shall wear.</A><br>
|
303 |
+
<A NAME=121>RICHARD</A><br>
|
304 |
+
</blockquote>
|
305 |
+
|
306 |
+
<A NAME=speech39><b>PLANTAGENET</b></a>
|
307 |
+
<blockquote>
|
308 |
+
<A NAME=122>And, by my soul, this pale and angry rose,</A><br>
|
309 |
+
<A NAME=123>As cognizance of my blood-drinking hate,</A><br>
|
310 |
+
<A NAME=124>Will I for ever and my faction wear,</A><br>
|
311 |
+
<A NAME=125>Until it wither with me to my grave</A><br>
|
312 |
+
<A NAME=126>Or flourish to the height of my degree.</A><br>
|
313 |
+
</blockquote>
|
314 |
+
|
315 |
+
<A NAME=speech40><b>SUFFOLK</b></a>
|
316 |
+
<blockquote>
|
317 |
+
<A NAME=127>Go forward and be choked with thy ambition!</A><br>
|
318 |
+
<A NAME=128>And so farewell until I meet thee next.</A><br>
|
319 |
+
<p><i>Exit</i></p>
|
320 |
+
</blockquote>
|
321 |
+
|
322 |
+
<A NAME=speech41><b>SOMERSET</b></a>
|
323 |
+
<blockquote>
|
324 |
+
<A NAME=129>Have with thee, Pole. Farewell, ambitious Richard.</A><br>
|
325 |
+
<p><i>Exit</i></p>
|
326 |
+
<A NAME=130>RICHARD</A><br>
|
327 |
+
</blockquote>
|
328 |
+
|
329 |
+
<A NAME=speech42><b>PLANTAGENET</b></a>
|
330 |
+
<blockquote>
|
331 |
+
<A NAME=131>How I am braved and must perforce endure it!</A><br>
|
332 |
+
</blockquote>
|
333 |
+
|
334 |
+
<A NAME=speech43><b>WARWICK</b></a>
|
335 |
+
<blockquote>
|
336 |
+
<A NAME=132>This blot that they object against your house</A><br>
|
337 |
+
<A NAME=133>Shall be wiped out in the next parliament</A><br>
|
338 |
+
<A NAME=134>Call'd for the truce of Winchester and Gloucester;</A><br>
|
339 |
+
<A NAME=135>And if thou be not then created York,</A><br>
|
340 |
+
<A NAME=136>I will not live to be accounted Warwick.</A><br>
|
341 |
+
<A NAME=137>Meantime, in signal of my love to thee,</A><br>
|
342 |
+
<A NAME=138>Against proud Somerset and William Pole,</A><br>
|
343 |
+
<A NAME=139>Will I upon thy party wear this rose:</A><br>
|
344 |
+
<A NAME=140>And here I prophesy: this brawl to-day,</A><br>
|
345 |
+
<A NAME=141>Grown to this faction in the Temple-garden,</A><br>
|
346 |
+
<A NAME=142>Shall send between the red rose and the white</A><br>
|
347 |
+
<A NAME=143>A thousand souls to death and deadly night.</A><br>
|
348 |
+
<A NAME=144>RICHARD</A><br>
|
349 |
+
</blockquote>
|
350 |
+
|
351 |
+
<A NAME=speech44><b>PLANTAGENET</b></a>
|
352 |
+
<blockquote>
|
353 |
+
<A NAME=145>Good Master Vernon, I am bound to you,</A><br>
|
354 |
+
<A NAME=146>That you on my behalf would pluck a flower.</A><br>
|
355 |
+
</blockquote>
|
356 |
+
|
357 |
+
<A NAME=speech45><b>VERNON</b></a>
|
358 |
+
<blockquote>
|
359 |
+
<A NAME=147>In your behalf still will I wear the same.</A><br>
|
360 |
+
</blockquote>
|
361 |
+
|
362 |
+
<A NAME=speech46><b>Lawyer</b></a>
|
363 |
+
<blockquote>
|
364 |
+
<A NAME=148>And so will I.</A><br>
|
365 |
+
<A NAME=149>RICHARD</A><br>
|
366 |
+
</blockquote>
|
367 |
+
|
368 |
+
<A NAME=speech47><b>PLANTAGENET</b></a>
|
369 |
+
<blockquote>
|
370 |
+
<A NAME=150>Thanks, gentle sir.</A><br>
|
371 |
+
<A NAME=151>Come, let us four to dinner: I dare say</A><br>
|
372 |
+
<A NAME=152>This quarrel will drink blood another day.</A><br>
|
373 |
+
<p><i>Exeunt</i></p>
|
374 |
+
</blockquote>
|
375 |
+
<table width="100%" bgcolor="#CCF6F6">
|
376 |
+
<tr><td class="nav" align="center">
|
377 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
378 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
379 |
+
| Act 2, Scene 4
|
380 |
+
<br>
|
381 |
+
<a href="1henryvi.2.3.html">Previous scene</A>
|
382 |
+
| <a href="1henryvi.2.5.html">Next scene</A>
|
383 |
+
</table>
|
384 |
+
|
385 |
+
</body>
|
386 |
+
</html>
|
387 |
+
|
388 |
+
|
data/1henryvi.2.5.html
ADDED
@@ -0,0 +1,253 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE V. The Tower of London.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 2, Scene 5
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.2.4.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.3.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE V. The Tower of London.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter MORTIMER, brought in a chair, and Gaolers</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>MORTIMER</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Kind keepers of my weak decaying age,</A><br>
|
33 |
+
<A NAME=2>Let dying Mortimer here rest himself.</A><br>
|
34 |
+
<A NAME=3>Even like a man new haled from the rack,</A><br>
|
35 |
+
<A NAME=4>So fare my limbs with long imprisonment.</A><br>
|
36 |
+
<A NAME=5>And these grey locks, the pursuivants of death,</A><br>
|
37 |
+
<A NAME=6>Nestor-like aged in an age of care,</A><br>
|
38 |
+
<A NAME=7>Argue the end of Edmund Mortimer.</A><br>
|
39 |
+
<A NAME=8>These eyes, like lamps whose wasting oil is spent,</A><br>
|
40 |
+
<A NAME=9>Wax dim, as drawing to their exigent;</A><br>
|
41 |
+
<A NAME=10>Weak shoulders, overborne with burthening grief,</A><br>
|
42 |
+
<A NAME=11>And pithless arms, like to a wither'd vine</A><br>
|
43 |
+
<A NAME=12>That droops his sapless branches to the ground;</A><br>
|
44 |
+
<A NAME=13>Yet are these feet, whose strengthless stay is numb,</A><br>
|
45 |
+
<A NAME=14>Unable to support this lump of clay,</A><br>
|
46 |
+
<A NAME=15>Swift-winged with desire to get a grave,</A><br>
|
47 |
+
<A NAME=16>As witting I no other comfort have.</A><br>
|
48 |
+
<A NAME=17>But tell me, keeper, will my nephew come?</A><br>
|
49 |
+
</blockquote>
|
50 |
+
|
51 |
+
<A NAME=speech2><b>First Gaoler</b></a>
|
52 |
+
<blockquote>
|
53 |
+
<A NAME=18>Richard Plantagenet, my lord, will come:</A><br>
|
54 |
+
<A NAME=19>We sent unto the Temple, unto his chamber;</A><br>
|
55 |
+
<A NAME=20>And answer was return'd that he will come.</A><br>
|
56 |
+
</blockquote>
|
57 |
+
|
58 |
+
<A NAME=speech3><b>MORTIMER</b></a>
|
59 |
+
<blockquote>
|
60 |
+
<A NAME=21>Enough: my soul shall then be satisfied.</A><br>
|
61 |
+
<A NAME=22>Poor gentleman! his wrong doth equal mine.</A><br>
|
62 |
+
<A NAME=23>Since Henry Monmouth first began to reign,</A><br>
|
63 |
+
<A NAME=24>Before whose glory I was great in arms,</A><br>
|
64 |
+
<A NAME=25>This loathsome sequestration have I had:</A><br>
|
65 |
+
<A NAME=26>And even since then hath Richard been obscured,</A><br>
|
66 |
+
<A NAME=27>Deprived of honour and inheritance.</A><br>
|
67 |
+
<A NAME=28>But now the arbitrator of despairs,</A><br>
|
68 |
+
<A NAME=29>Just death, kind umpire of men's miseries,</A><br>
|
69 |
+
<A NAME=30>With sweet enlargement doth dismiss me hence:</A><br>
|
70 |
+
<A NAME=31>I would his troubles likewise were expired,</A><br>
|
71 |
+
<A NAME=32>That so he might recover what was lost.</A><br>
|
72 |
+
<p><i>Enter RICHARD PLANTAGENET</i></p>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech4><b>First Gaoler</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=33>My lord, your loving nephew now is come.</A><br>
|
78 |
+
</blockquote>
|
79 |
+
|
80 |
+
<A NAME=speech5><b>MORTIMER</b></a>
|
81 |
+
<blockquote>
|
82 |
+
<A NAME=34>Richard Plantagenet, my friend, is he come?</A><br>
|
83 |
+
<A NAME=35>RICHARD</A><br>
|
84 |
+
</blockquote>
|
85 |
+
|
86 |
+
<A NAME=speech6><b>PLANTAGENET</b></a>
|
87 |
+
<blockquote>
|
88 |
+
<A NAME=36>Ay, noble uncle, thus ignobly used,</A><br>
|
89 |
+
<A NAME=37>Your nephew, late despised Richard, comes.</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech7><b>MORTIMER</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=38>Direct mine arms I may embrace his neck,</A><br>
|
95 |
+
<A NAME=39>And in his bosom spend my latter gasp:</A><br>
|
96 |
+
<A NAME=40>O, tell me when my lips do touch his cheeks,</A><br>
|
97 |
+
<A NAME=41>That I may kindly give one fainting kiss.</A><br>
|
98 |
+
<A NAME=42>And now declare, sweet stem from York's great stock,</A><br>
|
99 |
+
<A NAME=43>Why didst thou say, of late thou wert despised?</A><br>
|
100 |
+
<A NAME=44>RICHARD</A><br>
|
101 |
+
</blockquote>
|
102 |
+
|
103 |
+
<A NAME=speech8><b>PLANTAGENET</b></a>
|
104 |
+
<blockquote>
|
105 |
+
<A NAME=45>First, lean thine aged back against mine arm;</A><br>
|
106 |
+
<A NAME=46>And, in that ease, I'll tell thee my disease.</A><br>
|
107 |
+
<A NAME=47>This day, in argument upon a case,</A><br>
|
108 |
+
<A NAME=48>Some words there grew 'twixt Somerset and me;</A><br>
|
109 |
+
<A NAME=49>Among which terms he used his lavish tongue</A><br>
|
110 |
+
<A NAME=50>And did upbraid me with my father's death:</A><br>
|
111 |
+
<A NAME=51>Which obloquy set bars before my tongue,</A><br>
|
112 |
+
<A NAME=52>Else with the like I had requited him.</A><br>
|
113 |
+
<A NAME=53>Therefore, good uncle, for my father's sake,</A><br>
|
114 |
+
<A NAME=54>In honour of a true Plantagenet</A><br>
|
115 |
+
<A NAME=55>And for alliance sake, declare the cause</A><br>
|
116 |
+
<A NAME=56>My father, Earl of Cambridge, lost his head.</A><br>
|
117 |
+
</blockquote>
|
118 |
+
|
119 |
+
<A NAME=speech9><b>MORTIMER</b></a>
|
120 |
+
<blockquote>
|
121 |
+
<A NAME=57>That cause, fair nephew, that imprison'd me</A><br>
|
122 |
+
<A NAME=58>And hath detain'd me all my flowering youth</A><br>
|
123 |
+
<A NAME=59>Within a loathsome dungeon, there to pine,</A><br>
|
124 |
+
<A NAME=60>Was cursed instrument of his decease.</A><br>
|
125 |
+
<A NAME=61>RICHARD</A><br>
|
126 |
+
</blockquote>
|
127 |
+
|
128 |
+
<A NAME=speech10><b>PLANTAGENET</b></a>
|
129 |
+
<blockquote>
|
130 |
+
<A NAME=62>Discover more at large what cause that was,</A><br>
|
131 |
+
<A NAME=63>For I am ignorant and cannot guess.</A><br>
|
132 |
+
</blockquote>
|
133 |
+
|
134 |
+
<A NAME=speech11><b>MORTIMER</b></a>
|
135 |
+
<blockquote>
|
136 |
+
<A NAME=64>I will, if that my fading breath permit</A><br>
|
137 |
+
<A NAME=65>And death approach not ere my tale be done.</A><br>
|
138 |
+
<A NAME=66>Henry the Fourth, grandfather to this king,</A><br>
|
139 |
+
<A NAME=67>Deposed his nephew Richard, Edward's son,</A><br>
|
140 |
+
<A NAME=68>The first-begotten and the lawful heir,</A><br>
|
141 |
+
<A NAME=69>Of Edward king, the third of that descent:</A><br>
|
142 |
+
<A NAME=70>During whose reign the Percies of the north,</A><br>
|
143 |
+
<A NAME=71>Finding his usurpation most unjust,</A><br>
|
144 |
+
<A NAME=72>Endeavor'd my advancement to the throne:</A><br>
|
145 |
+
<A NAME=73>The reason moved these warlike lords to this</A><br>
|
146 |
+
<A NAME=74>Was, for that--young King Richard thus removed,</A><br>
|
147 |
+
<A NAME=75>Leaving no heir begotten of his body--</A><br>
|
148 |
+
<A NAME=76>I was the next by birth and parentage;</A><br>
|
149 |
+
<A NAME=77>For by my mother I derived am</A><br>
|
150 |
+
<A NAME=78>From Lionel Duke of Clarence, the third son</A><br>
|
151 |
+
<A NAME=79>To King Edward the Third; whereas he</A><br>
|
152 |
+
<A NAME=80>From John of Gaunt doth bring his pedigree,</A><br>
|
153 |
+
<A NAME=81>Being but fourth of that heroic line.</A><br>
|
154 |
+
<A NAME=82>But mark: as in this haughty attempt</A><br>
|
155 |
+
<A NAME=83>They laboured to plant the rightful heir,</A><br>
|
156 |
+
<A NAME=84>I lost my liberty and they their lives.</A><br>
|
157 |
+
<A NAME=85>Long after this, when Henry the Fifth,</A><br>
|
158 |
+
<A NAME=86>Succeeding his father Bolingbroke, did reign,</A><br>
|
159 |
+
<A NAME=87>Thy father, Earl of Cambridge, then derived</A><br>
|
160 |
+
<A NAME=88>From famous Edmund Langley, Duke of York,</A><br>
|
161 |
+
<A NAME=89>Marrying my sister that thy mother was,</A><br>
|
162 |
+
<A NAME=90>Again in pity of my hard distress</A><br>
|
163 |
+
<A NAME=91>Levied an army, weening to redeem</A><br>
|
164 |
+
<A NAME=92>And have install'd me in the diadem:</A><br>
|
165 |
+
<A NAME=93>But, as the rest, so fell that noble earl</A><br>
|
166 |
+
<A NAME=94>And was beheaded. Thus the Mortimers,</A><br>
|
167 |
+
<A NAME=95>In whom the tide rested, were suppress'd.</A><br>
|
168 |
+
<A NAME=96>RICHARD</A><br>
|
169 |
+
</blockquote>
|
170 |
+
|
171 |
+
<A NAME=speech12><b>PLANTAGENET</b></a>
|
172 |
+
<blockquote>
|
173 |
+
<A NAME=97>Of which, my lord, your honour is the last.</A><br>
|
174 |
+
</blockquote>
|
175 |
+
|
176 |
+
<A NAME=speech13><b>MORTIMER</b></a>
|
177 |
+
<blockquote>
|
178 |
+
<A NAME=98>True; and thou seest that I no issue have</A><br>
|
179 |
+
<A NAME=99>And that my fainting words do warrant death;</A><br>
|
180 |
+
<A NAME=100>Thou art my heir; the rest I wish thee gather:</A><br>
|
181 |
+
<A NAME=101>But yet be wary in thy studious care.</A><br>
|
182 |
+
<A NAME=102>RICHARD</A><br>
|
183 |
+
</blockquote>
|
184 |
+
|
185 |
+
<A NAME=speech14><b>PLANTAGENET</b></a>
|
186 |
+
<blockquote>
|
187 |
+
<A NAME=103>Thy grave admonishments prevail with me:</A><br>
|
188 |
+
<A NAME=104>But yet, methinks, my father's execution</A><br>
|
189 |
+
<A NAME=105>Was nothing less than bloody tyranny.</A><br>
|
190 |
+
</blockquote>
|
191 |
+
|
192 |
+
<A NAME=speech15><b>MORTIMER</b></a>
|
193 |
+
<blockquote>
|
194 |
+
<A NAME=106>With silence, nephew, be thou politic:</A><br>
|
195 |
+
<A NAME=107>Strong-fixed is the house of Lancaster,</A><br>
|
196 |
+
<A NAME=108>And like a mountain, not to be removed.</A><br>
|
197 |
+
<A NAME=109>But now thy uncle is removing hence:</A><br>
|
198 |
+
<A NAME=110>As princes do their courts, when they are cloy'd</A><br>
|
199 |
+
<A NAME=111>With long continuance in a settled place.</A><br>
|
200 |
+
<A NAME=112>RICHARD</A><br>
|
201 |
+
</blockquote>
|
202 |
+
|
203 |
+
<A NAME=speech16><b>PLANTAGENET</b></a>
|
204 |
+
<blockquote>
|
205 |
+
<A NAME=113>O, uncle, would some part of my young years</A><br>
|
206 |
+
<A NAME=114>Might but redeem the passage of your age!</A><br>
|
207 |
+
</blockquote>
|
208 |
+
|
209 |
+
<A NAME=speech17><b>MORTIMER</b></a>
|
210 |
+
<blockquote>
|
211 |
+
<A NAME=115>Thou dost then wrong me, as that slaughterer doth</A><br>
|
212 |
+
<A NAME=116>Which giveth many wounds when one will kill.</A><br>
|
213 |
+
<A NAME=117>Mourn not, except thou sorrow for my good;</A><br>
|
214 |
+
<A NAME=118>Only give order for my funeral:</A><br>
|
215 |
+
<A NAME=119>And so farewell, and fair be all thy hopes</A><br>
|
216 |
+
<A NAME=120>And prosperous be thy life in peace and war!</A><br>
|
217 |
+
<p><i>Dies</i></p>
|
218 |
+
<A NAME=121>RICHARD</A><br>
|
219 |
+
</blockquote>
|
220 |
+
|
221 |
+
<A NAME=speech18><b>PLANTAGENET</b></a>
|
222 |
+
<blockquote>
|
223 |
+
<A NAME=122>And peace, no war, befall thy parting soul!</A><br>
|
224 |
+
<A NAME=123>In prison hast thou spent a pilgrimage</A><br>
|
225 |
+
<A NAME=124>And like a hermit overpass'd thy days.</A><br>
|
226 |
+
<A NAME=125>Well, I will lock his counsel in my breast;</A><br>
|
227 |
+
<A NAME=126>And what I do imagine let that rest.</A><br>
|
228 |
+
<A NAME=127>Keepers, convey him hence, and I myself</A><br>
|
229 |
+
<A NAME=128>Will see his burial better than his life.</A><br>
|
230 |
+
<p><i>Exeunt Gaolers, bearing out the body of MORTIMER</i></p>
|
231 |
+
<A NAME=129>Here dies the dusky torch of Mortimer,</A><br>
|
232 |
+
<A NAME=130>Choked with ambition of the meaner sort:</A><br>
|
233 |
+
<A NAME=131>And for those wrongs, those bitter injuries,</A><br>
|
234 |
+
<A NAME=132>Which Somerset hath offer'd to my house:</A><br>
|
235 |
+
<A NAME=133>I doubt not but with honour to redress;</A><br>
|
236 |
+
<A NAME=134>And therefore haste I to the parliament,</A><br>
|
237 |
+
<A NAME=135>Either to be restored to my blood,</A><br>
|
238 |
+
<A NAME=136>Or make my ill the advantage of my good.</A><br>
|
239 |
+
<p><i>Exit</i></p>
|
240 |
+
<table width="100%" bgcolor="#CCF6F6">
|
241 |
+
<tr><td class="nav" align="center">
|
242 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
243 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
244 |
+
| Act 2, Scene 5
|
245 |
+
<br>
|
246 |
+
<a href="1henryvi.2.4.html">Previous scene</A>
|
247 |
+
| <a href="1henryvi.3.1.html">Next scene</A>
|
248 |
+
</table>
|
249 |
+
|
250 |
+
</body>
|
251 |
+
</html>
|
252 |
+
|
253 |
+
|
data/1henryvi.3.1.html
ADDED
@@ -0,0 +1,479 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. London. The Parliament-house.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 3, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.2.5.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.3.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. London. The Parliament-house.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Flourish. Enter KING HENRY VI, EXETER, GLOUCESTER, WARWICK, SOMERSET, and SUFFOLK; the BISHOP OF WINCHESTER, RICHARD PLANTAGENET, and others. GLOUCESTER offers to put up a bill; BISHOP OF WINCHESTER snatches it, and tears it</i>
|
28 |
+
</blockquote>
|
29 |
+
<blockquote>
|
30 |
+
<A NAME=1>BISHOP</A><br>
|
31 |
+
</blockquote>
|
32 |
+
|
33 |
+
<A NAME=speech1><b>OF WINCHESTER</b></a>
|
34 |
+
<blockquote>
|
35 |
+
<A NAME=2>Comest thou with deep premeditated lines,</A><br>
|
36 |
+
<A NAME=3>With written pamphlets studiously devised,</A><br>
|
37 |
+
<A NAME=4>Humphrey of Gloucester? If thou canst accuse,</A><br>
|
38 |
+
<A NAME=5>Or aught intend'st to lay unto my charge,</A><br>
|
39 |
+
<A NAME=6>Do it without invention, suddenly;</A><br>
|
40 |
+
<A NAME=7>As I with sudden and extemporal speech</A><br>
|
41 |
+
<A NAME=8>Purpose to answer what thou canst object.</A><br>
|
42 |
+
</blockquote>
|
43 |
+
|
44 |
+
<A NAME=speech2><b>GLOUCESTER</b></a>
|
45 |
+
<blockquote>
|
46 |
+
<A NAME=9>Presumptuous priest! this place commands my patience,</A><br>
|
47 |
+
<A NAME=10>Or thou shouldst find thou hast dishonour'd me.</A><br>
|
48 |
+
<A NAME=11>Think not, although in writing I preferr'd</A><br>
|
49 |
+
<A NAME=12>The manner of thy vile outrageous crimes,</A><br>
|
50 |
+
<A NAME=13>That therefore I have forged, or am not able</A><br>
|
51 |
+
<A NAME=14>Verbatim to rehearse the method of my pen:</A><br>
|
52 |
+
<A NAME=15>No, prelate; such is thy audacious wickedness,</A><br>
|
53 |
+
<A NAME=16>Thy lewd, pestiferous and dissentious pranks,</A><br>
|
54 |
+
<A NAME=17>As very infants prattle of thy pride.</A><br>
|
55 |
+
<A NAME=18>Thou art a most pernicious usurer,</A><br>
|
56 |
+
<A NAME=19>Forward by nature, enemy to peace;</A><br>
|
57 |
+
<A NAME=20>Lascivious, wanton, more than well beseems</A><br>
|
58 |
+
<A NAME=21>A man of thy profession and degree;</A><br>
|
59 |
+
<A NAME=22>And for thy treachery, what's more manifest?</A><br>
|
60 |
+
<A NAME=23>In that thou laid'st a trap to take my life,</A><br>
|
61 |
+
<A NAME=24>As well at London bridge as at the Tower.</A><br>
|
62 |
+
<A NAME=25>Beside, I fear me, if thy thoughts were sifted,</A><br>
|
63 |
+
<A NAME=26>The king, thy sovereign, is not quite exempt</A><br>
|
64 |
+
<A NAME=27>From envious malice of thy swelling heart.</A><br>
|
65 |
+
<A NAME=28>BISHOP</A><br>
|
66 |
+
</blockquote>
|
67 |
+
|
68 |
+
<A NAME=speech3><b>OF WINCHESTER</b></a>
|
69 |
+
<blockquote>
|
70 |
+
<A NAME=29>Gloucester, I do defy thee. Lords, vouchsafe</A><br>
|
71 |
+
<A NAME=30>To give me hearing what I shall reply.</A><br>
|
72 |
+
<A NAME=31>If I were covetous, ambitious or perverse,</A><br>
|
73 |
+
<A NAME=32>As he will have me, how am I so poor?</A><br>
|
74 |
+
<A NAME=33>Or how haps it I seek not to advance</A><br>
|
75 |
+
<A NAME=34>Or raise myself, but keep my wonted calling?</A><br>
|
76 |
+
<A NAME=35>And for dissension, who preferreth peace</A><br>
|
77 |
+
<A NAME=36>More than I do?--except I be provoked.</A><br>
|
78 |
+
<A NAME=37>No, my good lords, it is not that offends;</A><br>
|
79 |
+
<A NAME=38>It is not that that hath incensed the duke:</A><br>
|
80 |
+
<A NAME=39>It is, because no one should sway but he;</A><br>
|
81 |
+
<A NAME=40>No one but he should be about the king;</A><br>
|
82 |
+
<A NAME=41>And that engenders thunder in his breast</A><br>
|
83 |
+
<A NAME=42>And makes him roar these accusations forth.</A><br>
|
84 |
+
<A NAME=43>But he shall know I am as good--</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech4><b>GLOUCESTER</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=44>As good!</A><br>
|
90 |
+
<A NAME=45>Thou bastard of my grandfather!</A><br>
|
91 |
+
<A NAME=46>BISHOP</A><br>
|
92 |
+
</blockquote>
|
93 |
+
|
94 |
+
<A NAME=speech5><b>OF WINCHESTER</b></a>
|
95 |
+
<blockquote>
|
96 |
+
<A NAME=47>Ay, lordly sir; for what are you, I pray,</A><br>
|
97 |
+
<A NAME=48>But one imperious in another's throne?</A><br>
|
98 |
+
</blockquote>
|
99 |
+
|
100 |
+
<A NAME=speech6><b>GLOUCESTER</b></a>
|
101 |
+
<blockquote>
|
102 |
+
<A NAME=49>Am I not protector, saucy priest?</A><br>
|
103 |
+
<A NAME=50>BISHOP</A><br>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech7><b>OF WINCHESTER</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=51>And am not I a prelate of the church?</A><br>
|
109 |
+
</blockquote>
|
110 |
+
|
111 |
+
<A NAME=speech8><b>GLOUCESTER</b></a>
|
112 |
+
<blockquote>
|
113 |
+
<A NAME=52>Yes, as an outlaw in a castle keeps</A><br>
|
114 |
+
<A NAME=53>And useth it to patronage his theft.</A><br>
|
115 |
+
<A NAME=54>BISHOP</A><br>
|
116 |
+
</blockquote>
|
117 |
+
|
118 |
+
<A NAME=speech9><b>OF WINCHESTER</b></a>
|
119 |
+
<blockquote>
|
120 |
+
<A NAME=55>Unreverent Gloster!</A><br>
|
121 |
+
</blockquote>
|
122 |
+
|
123 |
+
<A NAME=speech10><b>GLOUCESTER</b></a>
|
124 |
+
<blockquote>
|
125 |
+
<A NAME=56>Thou art reverent</A><br>
|
126 |
+
<A NAME=57>Touching thy spiritual function, not thy life.</A><br>
|
127 |
+
<A NAME=58>BISHOP</A><br>
|
128 |
+
</blockquote>
|
129 |
+
|
130 |
+
<A NAME=speech11><b>OF WINCHESTER</b></a>
|
131 |
+
<blockquote>
|
132 |
+
<A NAME=59>Rome shall remedy this.</A><br>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech12><b>WARWICK</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=60>Roam thither, then.</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech13><b>SOMERSET</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=61>My lord, it were your duty to forbear.</A><br>
|
143 |
+
</blockquote>
|
144 |
+
|
145 |
+
<A NAME=speech14><b>WARWICK</b></a>
|
146 |
+
<blockquote>
|
147 |
+
<A NAME=62>Ay, see the bishop be not overborne.</A><br>
|
148 |
+
</blockquote>
|
149 |
+
|
150 |
+
<A NAME=speech15><b>SOMERSET</b></a>
|
151 |
+
<blockquote>
|
152 |
+
<A NAME=63>Methinks my lord should be religious</A><br>
|
153 |
+
<A NAME=64>And know the office that belongs to such.</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech16><b>WARWICK</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=65>Methinks his lordship should be humbler;</A><br>
|
159 |
+
<A NAME=66>it fitteth not a prelate so to plead.</A><br>
|
160 |
+
</blockquote>
|
161 |
+
|
162 |
+
<A NAME=speech17><b>SOMERSET</b></a>
|
163 |
+
<blockquote>
|
164 |
+
<A NAME=67>Yes, when his holy state is touch'd so near.</A><br>
|
165 |
+
</blockquote>
|
166 |
+
|
167 |
+
<A NAME=speech18><b>WARWICK</b></a>
|
168 |
+
<blockquote>
|
169 |
+
<A NAME=68>State holy or unhallow'd, what of that?</A><br>
|
170 |
+
<A NAME=69>Is not his grace protector to the king?</A><br>
|
171 |
+
<A NAME=70>RICHARD</A><br>
|
172 |
+
</blockquote>
|
173 |
+
|
174 |
+
<A NAME=speech19><b>PLANTAGENET</b></a>
|
175 |
+
<blockquote>
|
176 |
+
<A NAME=71>[Aside] Plantagenet, I see, must hold his tongue,</A><br>
|
177 |
+
<A NAME=72>Lest it be said 'Speak, sirrah, when you should;</A><br>
|
178 |
+
<A NAME=73>Must your bold verdict enter talk with lords?'</A><br>
|
179 |
+
<A NAME=74>Else would I have a fling at Winchester.</A><br>
|
180 |
+
</blockquote>
|
181 |
+
|
182 |
+
<A NAME=speech20><b>KING HENRY VI</b></a>
|
183 |
+
<blockquote>
|
184 |
+
<A NAME=75>Uncles of Gloucester and of Winchester,</A><br>
|
185 |
+
<A NAME=76>The special watchmen of our English weal,</A><br>
|
186 |
+
<A NAME=77>I would prevail, if prayers might prevail,</A><br>
|
187 |
+
<A NAME=78>To join your hearts in love and amity.</A><br>
|
188 |
+
<A NAME=79>O, what a scandal is it to our crown,</A><br>
|
189 |
+
<A NAME=80>That two such noble peers as ye should jar!</A><br>
|
190 |
+
<A NAME=81>Believe me, lords, my tender years can tell</A><br>
|
191 |
+
<A NAME=82>Civil dissension is a viperous worm</A><br>
|
192 |
+
<A NAME=83>That gnaws the bowels of the commonwealth.</A><br>
|
193 |
+
<p><i>A noise within, 'Down with the tawny-coats!'</i></p>
|
194 |
+
<A NAME=84>What tumult's this?</A><br>
|
195 |
+
</blockquote>
|
196 |
+
|
197 |
+
<A NAME=speech21><b>WARWICK</b></a>
|
198 |
+
<blockquote>
|
199 |
+
<A NAME=85>An uproar, I dare warrant,</A><br>
|
200 |
+
<A NAME=86>Begun through malice of the bishop's men.</A><br>
|
201 |
+
<p><i>A noise again, 'Stones! stones!' Enter Mayor</i></p>
|
202 |
+
</blockquote>
|
203 |
+
|
204 |
+
<A NAME=speech22><b>Mayor</b></a>
|
205 |
+
<blockquote>
|
206 |
+
<A NAME=87>O, my good lords, and virtuous Henry,</A><br>
|
207 |
+
<A NAME=88>Pity the city of London, pity us!</A><br>
|
208 |
+
<A NAME=89>The bishop and the Duke of Gloucester's men,</A><br>
|
209 |
+
<A NAME=90>Forbidden late to carry any weapon,</A><br>
|
210 |
+
<A NAME=91>Have fill'd their pockets full of pebble stones</A><br>
|
211 |
+
<A NAME=92>And banding themselves in contrary parts</A><br>
|
212 |
+
<A NAME=93>Do pelt so fast at one another's pate</A><br>
|
213 |
+
<A NAME=94>That many have their giddy brains knock'd out:</A><br>
|
214 |
+
<A NAME=95>Our windows are broke down in every street</A><br>
|
215 |
+
<A NAME=96>And we for fear compell'd to shut our shops.</A><br>
|
216 |
+
<p><i>Enter Serving-men, in skirmish, with bloody pates</i></p>
|
217 |
+
</blockquote>
|
218 |
+
|
219 |
+
<A NAME=speech23><b>KING HENRY VI</b></a>
|
220 |
+
<blockquote>
|
221 |
+
<A NAME=97>We charge you, on allegiance to ourself,</A><br>
|
222 |
+
<A NAME=98>To hold your slaughtering hands and keep the peace.</A><br>
|
223 |
+
<A NAME=99>Pray, uncle Gloucester, mitigate this strife.</A><br>
|
224 |
+
<A NAME=100>First Serving-man Nay, if we be forbidden stones,</A><br>
|
225 |
+
<A NAME=101>We'll fall to it with our teeth.</A><br>
|
226 |
+
<A NAME=102>Second Serving-man Do what ye dare, we are as resolute.</A><br>
|
227 |
+
<p><i>Skirmish again</i></p>
|
228 |
+
</blockquote>
|
229 |
+
|
230 |
+
<A NAME=speech24><b>GLOUCESTER</b></a>
|
231 |
+
<blockquote>
|
232 |
+
<A NAME=103>You of my household, leave this peevish broil</A><br>
|
233 |
+
<A NAME=104>And set this unaccustom'd fight aside.</A><br>
|
234 |
+
<A NAME=105>Third Serving-man My lord, we know your grace to be a man</A><br>
|
235 |
+
<A NAME=106>Just and upright; and, for your royal birth,</A><br>
|
236 |
+
<A NAME=107>Inferior to none but to his majesty:</A><br>
|
237 |
+
<A NAME=108>And ere that we will suffer such a prince,</A><br>
|
238 |
+
<A NAME=109>So kind a father of the commonweal,</A><br>
|
239 |
+
<A NAME=110>To be disgraced by an inkhorn mate,</A><br>
|
240 |
+
<A NAME=111>We and our wives and children all will fight</A><br>
|
241 |
+
<A NAME=112>And have our bodies slaughtered by thy foes.</A><br>
|
242 |
+
<A NAME=113>First Serving-man Ay, and the very parings of our nails</A><br>
|
243 |
+
<A NAME=114>Shall pitch a field when we are dead.</A><br>
|
244 |
+
<p><i>Begin again</i></p>
|
245 |
+
</blockquote>
|
246 |
+
|
247 |
+
<A NAME=speech25><b>GLOUCESTER</b></a>
|
248 |
+
<blockquote>
|
249 |
+
<A NAME=115>Stay, stay, I say!</A><br>
|
250 |
+
<A NAME=116>And if you love me, as you say you do,</A><br>
|
251 |
+
<A NAME=117>Let me persuade you to forbear awhile.</A><br>
|
252 |
+
</blockquote>
|
253 |
+
|
254 |
+
<A NAME=speech26><b>KING HENRY VI</b></a>
|
255 |
+
<blockquote>
|
256 |
+
<A NAME=118>O, how this discord doth afflict my soul!</A><br>
|
257 |
+
<A NAME=119>Can you, my Lord of Winchester, behold</A><br>
|
258 |
+
<A NAME=120>My sighs and tears and will not once relent?</A><br>
|
259 |
+
<A NAME=121>Who should be pitiful, if you be not?</A><br>
|
260 |
+
<A NAME=122>Or who should study to prefer a peace.</A><br>
|
261 |
+
<A NAME=123>If holy churchmen take delight in broils?</A><br>
|
262 |
+
</blockquote>
|
263 |
+
|
264 |
+
<A NAME=speech27><b>WARWICK</b></a>
|
265 |
+
<blockquote>
|
266 |
+
<A NAME=124>Yield, my lord protector; yield, Winchester;</A><br>
|
267 |
+
<A NAME=125>Except you mean with obstinate repulse</A><br>
|
268 |
+
<A NAME=126>To slay your sovereign and destroy the realm.</A><br>
|
269 |
+
<A NAME=127>You see what mischief and what murder too</A><br>
|
270 |
+
<A NAME=128>Hath been enacted through your enmity;</A><br>
|
271 |
+
<A NAME=129>Then be at peace except ye thirst for blood.</A><br>
|
272 |
+
<A NAME=130>BISHOP</A><br>
|
273 |
+
</blockquote>
|
274 |
+
|
275 |
+
<A NAME=speech28><b>OF WINCHESTER</b></a>
|
276 |
+
<blockquote>
|
277 |
+
<A NAME=131>He shall submit, or I will never yield.</A><br>
|
278 |
+
</blockquote>
|
279 |
+
|
280 |
+
<A NAME=speech29><b>GLOUCESTER</b></a>
|
281 |
+
<blockquote>
|
282 |
+
<A NAME=132>Compassion on the king commands me stoop;</A><br>
|
283 |
+
<A NAME=133>Or I would see his heart out, ere the priest</A><br>
|
284 |
+
<A NAME=134>Should ever get that privilege of me.</A><br>
|
285 |
+
</blockquote>
|
286 |
+
|
287 |
+
<A NAME=speech30><b>WARWICK</b></a>
|
288 |
+
<blockquote>
|
289 |
+
<A NAME=135>Behold, my Lord of Winchester, the duke</A><br>
|
290 |
+
<A NAME=136>Hath banish'd moody discontented fury,</A><br>
|
291 |
+
<A NAME=137>As by his smoothed brows it doth appear:</A><br>
|
292 |
+
<A NAME=138>Why look you still so stern and tragical?</A><br>
|
293 |
+
</blockquote>
|
294 |
+
|
295 |
+
<A NAME=speech31><b>GLOUCESTER</b></a>
|
296 |
+
<blockquote>
|
297 |
+
<A NAME=139>Here, Winchester, I offer thee my hand.</A><br>
|
298 |
+
</blockquote>
|
299 |
+
|
300 |
+
<A NAME=speech32><b>KING HENRY VI</b></a>
|
301 |
+
<blockquote>
|
302 |
+
<A NAME=140>Fie, uncle Beaufort! I have heard you preach</A><br>
|
303 |
+
<A NAME=141>That malice was a great and grievous sin;</A><br>
|
304 |
+
<A NAME=142>And will not you maintain the thing you teach,</A><br>
|
305 |
+
<A NAME=143>But prove a chief offender in the same?</A><br>
|
306 |
+
</blockquote>
|
307 |
+
|
308 |
+
<A NAME=speech33><b>WARWICK</b></a>
|
309 |
+
<blockquote>
|
310 |
+
<A NAME=144>Sweet king! the bishop hath a kindly gird.</A><br>
|
311 |
+
<A NAME=145>For shame, my lord of Winchester, relent!</A><br>
|
312 |
+
<A NAME=146>What, shall a child instruct you what to do?</A><br>
|
313 |
+
<A NAME=147>BISHOP</A><br>
|
314 |
+
</blockquote>
|
315 |
+
|
316 |
+
<A NAME=speech34><b>OF WINCHESTER</b></a>
|
317 |
+
<blockquote>
|
318 |
+
<A NAME=148>Well, Duke of Gloucester, I will yield to thee;</A><br>
|
319 |
+
<A NAME=149>Love for thy love and hand for hand I give.</A><br>
|
320 |
+
</blockquote>
|
321 |
+
|
322 |
+
<A NAME=speech35><b>GLOUCESTER</b></a>
|
323 |
+
<blockquote>
|
324 |
+
<A NAME=150>[Aside] Ay, but, I fear me, with a hollow heart.--</A><br>
|
325 |
+
<A NAME=151>See here, my friends and loving countrymen,</A><br>
|
326 |
+
<A NAME=152>This token serveth for a flag of truce</A><br>
|
327 |
+
<A NAME=153>Betwixt ourselves and all our followers:</A><br>
|
328 |
+
<A NAME=154>So help me God, as I dissemble not!</A><br>
|
329 |
+
<A NAME=155>BISHOP</A><br>
|
330 |
+
</blockquote>
|
331 |
+
|
332 |
+
<A NAME=speech36><b>OF WINCHESTER</b></a>
|
333 |
+
<blockquote>
|
334 |
+
<A NAME=156>[Aside] So help me God, as I intend it not!</A><br>
|
335 |
+
</blockquote>
|
336 |
+
|
337 |
+
<A NAME=speech37><b>KING HENRY VI</b></a>
|
338 |
+
<blockquote>
|
339 |
+
<A NAME=157>O, loving uncle, kind Duke of Gloucester,</A><br>
|
340 |
+
<A NAME=158>How joyful am I made by this contract!</A><br>
|
341 |
+
<A NAME=159>Away, my masters! trouble us no more;</A><br>
|
342 |
+
<A NAME=160>But join in friendship, as your lords have done.</A><br>
|
343 |
+
<A NAME=161>First Serving-man Content: I'll to the surgeon's.</A><br>
|
344 |
+
<A NAME=162>Second Serving-man And so will I.</A><br>
|
345 |
+
<A NAME=163>Third Serving-man And I will see what physic the tavern affords.</A><br>
|
346 |
+
<p><i>Exeunt Serving-men, Mayor, & c</i></p>
|
347 |
+
</blockquote>
|
348 |
+
|
349 |
+
<A NAME=speech38><b>WARWICK</b></a>
|
350 |
+
<blockquote>
|
351 |
+
<A NAME=164>Accept this scroll, most gracious sovereign,</A><br>
|
352 |
+
<A NAME=165>Which in the right of Richard Plantagenet</A><br>
|
353 |
+
<A NAME=166>We do exhibit to your majesty.</A><br>
|
354 |
+
</blockquote>
|
355 |
+
|
356 |
+
<A NAME=speech39><b>GLOUCESTER</b></a>
|
357 |
+
<blockquote>
|
358 |
+
<A NAME=167>Well urged, my Lord of Warwick: or sweet prince,</A><br>
|
359 |
+
<A NAME=168>And if your grace mark every circumstance,</A><br>
|
360 |
+
<A NAME=169>You have great reason to do Richard right;</A><br>
|
361 |
+
<A NAME=170>Especially for those occasions</A><br>
|
362 |
+
<A NAME=171>At Eltham Place I told your majesty.</A><br>
|
363 |
+
</blockquote>
|
364 |
+
|
365 |
+
<A NAME=speech40><b>KING HENRY VI</b></a>
|
366 |
+
<blockquote>
|
367 |
+
<A NAME=172>And those occasions, uncle, were of force:</A><br>
|
368 |
+
<A NAME=173>Therefore, my loving lords, our pleasure is</A><br>
|
369 |
+
<A NAME=174>That Richard be restored to his blood.</A><br>
|
370 |
+
</blockquote>
|
371 |
+
|
372 |
+
<A NAME=speech41><b>WARWICK</b></a>
|
373 |
+
<blockquote>
|
374 |
+
<A NAME=175>Let Richard be restored to his blood;</A><br>
|
375 |
+
<A NAME=176>So shall his father's wrongs be recompensed.</A><br>
|
376 |
+
<A NAME=177>BISHOP</A><br>
|
377 |
+
</blockquote>
|
378 |
+
|
379 |
+
<A NAME=speech42><b>OF WINCHESTER</b></a>
|
380 |
+
<blockquote>
|
381 |
+
<A NAME=178>As will the rest, so willeth Winchester.</A><br>
|
382 |
+
</blockquote>
|
383 |
+
|
384 |
+
<A NAME=speech43><b>KING HENRY VI</b></a>
|
385 |
+
<blockquote>
|
386 |
+
<A NAME=179>If Richard will be true, not that alone</A><br>
|
387 |
+
<A NAME=180>But all the whole inheritance I give</A><br>
|
388 |
+
<A NAME=181>That doth belong unto the house of York,</A><br>
|
389 |
+
<A NAME=182>From whence you spring by lineal descent.</A><br>
|
390 |
+
<A NAME=183>RICHARD</A><br>
|
391 |
+
</blockquote>
|
392 |
+
|
393 |
+
<A NAME=speech44><b>PLANTAGENET</b></a>
|
394 |
+
<blockquote>
|
395 |
+
<A NAME=184>Thy humble servant vows obedience</A><br>
|
396 |
+
<A NAME=185>And humble service till the point of death.</A><br>
|
397 |
+
</blockquote>
|
398 |
+
|
399 |
+
<A NAME=speech45><b>KING HENRY VI</b></a>
|
400 |
+
<blockquote>
|
401 |
+
<A NAME=186>Stoop then and set your knee against my foot;</A><br>
|
402 |
+
<A NAME=187>And, in reguerdon of that duty done,</A><br>
|
403 |
+
<A NAME=188>I gird thee with the valiant sword of York:</A><br>
|
404 |
+
<A NAME=189>Rise Richard, like a true Plantagenet,</A><br>
|
405 |
+
<A NAME=190>And rise created princely Duke of York.</A><br>
|
406 |
+
<A NAME=191>RICHARD</A><br>
|
407 |
+
</blockquote>
|
408 |
+
|
409 |
+
<A NAME=speech46><b>PLANTAGENET</b></a>
|
410 |
+
<blockquote>
|
411 |
+
<A NAME=192>And so thrive Richard as thy foes may fall!</A><br>
|
412 |
+
<A NAME=193>And as my duty springs, so perish they</A><br>
|
413 |
+
<A NAME=194>That grudge one thought against your majesty!</A><br>
|
414 |
+
</blockquote>
|
415 |
+
|
416 |
+
<A NAME=speech47><b>ALL</b></a>
|
417 |
+
<blockquote>
|
418 |
+
<A NAME=195>Welcome, high prince, the mighty Duke of York!</A><br>
|
419 |
+
</blockquote>
|
420 |
+
|
421 |
+
<A NAME=speech48><b>SOMERSET</b></a>
|
422 |
+
<blockquote>
|
423 |
+
<A NAME=196>[Aside] Perish, base prince, ignoble Duke of York!</A><br>
|
424 |
+
</blockquote>
|
425 |
+
|
426 |
+
<A NAME=speech49><b>GLOUCESTER</b></a>
|
427 |
+
<blockquote>
|
428 |
+
<A NAME=197>Now will it best avail your majesty</A><br>
|
429 |
+
<A NAME=198>To cross the seas and to be crown'd in France:</A><br>
|
430 |
+
<A NAME=199>The presence of a king engenders love</A><br>
|
431 |
+
<A NAME=200>Amongst his subjects and his loyal friends,</A><br>
|
432 |
+
<A NAME=201>As it disanimates his enemies.</A><br>
|
433 |
+
</blockquote>
|
434 |
+
|
435 |
+
<A NAME=speech50><b>KING HENRY VI</b></a>
|
436 |
+
<blockquote>
|
437 |
+
<A NAME=202>When Gloucester says the word, King Henry goes;</A><br>
|
438 |
+
<A NAME=203>For friendly counsel cuts off many foes.</A><br>
|
439 |
+
</blockquote>
|
440 |
+
|
441 |
+
<A NAME=speech51><b>GLOUCESTER</b></a>
|
442 |
+
<blockquote>
|
443 |
+
<A NAME=204>Your ships already are in readiness.</A><br>
|
444 |
+
<p><i>Sennet. Flourish. Exeunt all but EXETER</i></p>
|
445 |
+
</blockquote>
|
446 |
+
|
447 |
+
<A NAME=speech52><b>EXETER</b></a>
|
448 |
+
<blockquote>
|
449 |
+
<A NAME=205>Ay, we may march in England or in France,</A><br>
|
450 |
+
<A NAME=206>Not seeing what is likely to ensue.</A><br>
|
451 |
+
<A NAME=207>This late dissension grown betwixt the peers</A><br>
|
452 |
+
<A NAME=208>Burns under feigned ashes of forged love</A><br>
|
453 |
+
<A NAME=209>And will at last break out into a flame:</A><br>
|
454 |
+
<A NAME=210>As fester'd members rot but by degree,</A><br>
|
455 |
+
<A NAME=211>Till bones and flesh and sinews fall away,</A><br>
|
456 |
+
<A NAME=212>So will this base and envious discord breed.</A><br>
|
457 |
+
<A NAME=213>And now I fear that fatal prophecy</A><br>
|
458 |
+
<A NAME=214>Which in the time of Henry named the Fifth</A><br>
|
459 |
+
<A NAME=215>Was in the mouth of every sucking babe;</A><br>
|
460 |
+
<A NAME=216>That Henry born at Monmouth should win all</A><br>
|
461 |
+
<A NAME=217>And Henry born at Windsor lose all:</A><br>
|
462 |
+
<A NAME=218>Which is so plain that Exeter doth wish</A><br>
|
463 |
+
<A NAME=219>His days may finish ere that hapless time.</A><br>
|
464 |
+
<p><i>Exit</i></p>
|
465 |
+
</blockquote>
|
466 |
+
<table width="100%" bgcolor="#CCF6F6">
|
467 |
+
<tr><td class="nav" align="center">
|
468 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
469 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
470 |
+
| Act 3, Scene 1
|
471 |
+
<br>
|
472 |
+
<a href="1henryvi.2.5.html">Previous scene</A>
|
473 |
+
| <a href="1henryvi.3.2.html">Next scene</A>
|
474 |
+
</table>
|
475 |
+
|
476 |
+
</body>
|
477 |
+
</html>
|
478 |
+
|
479 |
+
|
data/1henryvi.3.2.html
ADDED
@@ -0,0 +1,379 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. France. Before Rouen.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 3, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.3.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.3.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. France. Before Rouen.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter JOAN LA PUCELLE disguised, with four Soldiers with sacks upon their backs</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>JOAN LA PUCELLE</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>These are the city gates, the gates of Rouen,</A><br>
|
33 |
+
<A NAME=2>Through which our policy must make a breach:</A><br>
|
34 |
+
<A NAME=3>Take heed, be wary how you place your words;</A><br>
|
35 |
+
<A NAME=4>Talk like the vulgar sort of market men</A><br>
|
36 |
+
<A NAME=5>That come to gather money for their corn.</A><br>
|
37 |
+
<A NAME=6>If we have entrance, as I hope we shall,</A><br>
|
38 |
+
<A NAME=7>And that we find the slothful watch but weak,</A><br>
|
39 |
+
<A NAME=8>I'll by a sign give notice to our friends,</A><br>
|
40 |
+
<A NAME=9>That Charles the Dauphin may encounter them.</A><br>
|
41 |
+
</blockquote>
|
42 |
+
|
43 |
+
<A NAME=speech2><b>First Soldier</b></a>
|
44 |
+
<blockquote>
|
45 |
+
<A NAME=10>Our sacks shall be a mean to sack the city,</A><br>
|
46 |
+
<A NAME=11>And we be lords and rulers over Rouen;</A><br>
|
47 |
+
<A NAME=12>Therefore we'll knock.</A><br>
|
48 |
+
<p><i>Knocks</i></p>
|
49 |
+
</blockquote>
|
50 |
+
|
51 |
+
<A NAME=speech3><b>Watch</b></a>
|
52 |
+
<blockquote>
|
53 |
+
<A NAME=13>[Within] Qui est la?</A><br>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech4><b>JOAN LA PUCELLE</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=14>Paysans, pauvres gens de France;</A><br>
|
59 |
+
<A NAME=15>Poor market folks that come to sell their corn.</A><br>
|
60 |
+
</blockquote>
|
61 |
+
|
62 |
+
<A NAME=speech5><b>Watch</b></a>
|
63 |
+
<blockquote>
|
64 |
+
<A NAME=16>Enter, go in; the market bell is rung.</A><br>
|
65 |
+
</blockquote>
|
66 |
+
|
67 |
+
<A NAME=speech6><b>JOAN LA PUCELLE</b></a>
|
68 |
+
<blockquote>
|
69 |
+
<A NAME=17>Now, Rouen, I'll shake thy bulwarks to the ground.</A><br>
|
70 |
+
<p><i>Exeunt</i></p>
|
71 |
+
<p><i>Enter CHARLES, the BASTARD OF ORLEANS, ALENCON, REIGNIER, and forces</i></p>
|
72 |
+
</blockquote>
|
73 |
+
|
74 |
+
<A NAME=speech7><b>CHARLES</b></a>
|
75 |
+
<blockquote>
|
76 |
+
<A NAME=18>Saint Denis bless this happy stratagem!</A><br>
|
77 |
+
<A NAME=19>And once again we'll sleep secure in Rouen.</A><br>
|
78 |
+
</blockquote>
|
79 |
+
|
80 |
+
<A NAME=speech8><b>BASTARD OF ORLEANS</b></a>
|
81 |
+
<blockquote>
|
82 |
+
<A NAME=20>Here enter'd Pucelle and her practisants;</A><br>
|
83 |
+
<A NAME=21>Now she is there, how will she specify</A><br>
|
84 |
+
<A NAME=22>Where is the best and safest passage in?</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech9><b>REIGNIER</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=23>By thrusting out a torch from yonder tower;</A><br>
|
90 |
+
<A NAME=24>Which, once discern'd, shows that her meaning is,</A><br>
|
91 |
+
<A NAME=25>No way to that, for weakness, which she enter'd.</A><br>
|
92 |
+
<p><i>Enter JOAN LA PUCELLE on the top, thrusting out a torch burning</i></p>
|
93 |
+
</blockquote>
|
94 |
+
|
95 |
+
<A NAME=speech10><b>JOAN LA PUCELLE</b></a>
|
96 |
+
<blockquote>
|
97 |
+
<A NAME=26>Behold, this is the happy wedding torch</A><br>
|
98 |
+
<A NAME=27>That joineth Rouen unto her countrymen,</A><br>
|
99 |
+
<A NAME=28>But burning fatal to the Talbotites!</A><br>
|
100 |
+
<p><i>Exit</i></p>
|
101 |
+
</blockquote>
|
102 |
+
|
103 |
+
<A NAME=speech11><b>BASTARD OF ORLEANS</b></a>
|
104 |
+
<blockquote>
|
105 |
+
<A NAME=29>See, noble Charles, the beacon of our friend;</A><br>
|
106 |
+
<A NAME=30>The burning torch in yonder turret stands.</A><br>
|
107 |
+
</blockquote>
|
108 |
+
|
109 |
+
<A NAME=speech12><b>CHARLES</b></a>
|
110 |
+
<blockquote>
|
111 |
+
<A NAME=31>Now shine it like a comet of revenge,</A><br>
|
112 |
+
<A NAME=32>A prophet to the fall of all our foes!</A><br>
|
113 |
+
</blockquote>
|
114 |
+
|
115 |
+
<A NAME=speech13><b>REIGNIER</b></a>
|
116 |
+
<blockquote>
|
117 |
+
<A NAME=33>Defer no time, delays have dangerous ends;</A><br>
|
118 |
+
<A NAME=34>Enter, and cry 'The Dauphin!' presently,</A><br>
|
119 |
+
<A NAME=35>And then do execution on the watch.</A><br>
|
120 |
+
<p><i>Alarum. Exeunt</i></p>
|
121 |
+
<p><i>An alarum. Enter TALBOT in an excursion</i></p>
|
122 |
+
</blockquote>
|
123 |
+
|
124 |
+
<A NAME=speech14><b>TALBOT</b></a>
|
125 |
+
<blockquote>
|
126 |
+
<A NAME=36>France, thou shalt rue this treason with thy tears,</A><br>
|
127 |
+
<A NAME=37>If Talbot but survive thy treachery.</A><br>
|
128 |
+
<A NAME=38>Pucelle, that witch, that damned sorceress,</A><br>
|
129 |
+
<A NAME=39>Hath wrought this hellish mischief unawares,</A><br>
|
130 |
+
<A NAME=40>That hardly we escaped the pride of France.</A><br>
|
131 |
+
<p><i>Exit</i></p>
|
132 |
+
<p><i>An alarum: excursions. BEDFORD, brought in sick in a chair. Enter TALBOT and BURGUNDY without: within JOAN LA PUCELLE, CHARLES, BASTARD OF ORLEANS, ALENCON, and REIGNIER, on the walls</i></p>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech15><b>JOAN LA PUCELLE</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=41>Good morrow, gallants! want ye corn for bread?</A><br>
|
138 |
+
<A NAME=42>I think the Duke of Burgundy will fast</A><br>
|
139 |
+
<A NAME=43>Before he'll buy again at such a rate:</A><br>
|
140 |
+
<A NAME=44>'Twas full of darnel; do you like the taste?</A><br>
|
141 |
+
</blockquote>
|
142 |
+
|
143 |
+
<A NAME=speech16><b>BURGUNDY</b></a>
|
144 |
+
<blockquote>
|
145 |
+
<A NAME=45>Scoff on, vile fiend and shameless courtezan!</A><br>
|
146 |
+
<A NAME=46>I trust ere long to choke thee with thine own</A><br>
|
147 |
+
<A NAME=47>And make thee curse the harvest of that corn.</A><br>
|
148 |
+
</blockquote>
|
149 |
+
|
150 |
+
<A NAME=speech17><b>CHARLES</b></a>
|
151 |
+
<blockquote>
|
152 |
+
<A NAME=48>Your grace may starve perhaps before that time.</A><br>
|
153 |
+
</blockquote>
|
154 |
+
|
155 |
+
<A NAME=speech18><b>BEDFORD</b></a>
|
156 |
+
<blockquote>
|
157 |
+
<A NAME=49>O, let no words, but deeds, revenge this treason!</A><br>
|
158 |
+
</blockquote>
|
159 |
+
|
160 |
+
<A NAME=speech19><b>JOAN LA PUCELLE</b></a>
|
161 |
+
<blockquote>
|
162 |
+
<A NAME=50>What will you do, good grey-beard? break a lance,</A><br>
|
163 |
+
<A NAME=51>And run a tilt at death within a chair?</A><br>
|
164 |
+
</blockquote>
|
165 |
+
|
166 |
+
<A NAME=speech20><b>TALBOT</b></a>
|
167 |
+
<blockquote>
|
168 |
+
<A NAME=52>Foul fiend of France, and hag of all despite,</A><br>
|
169 |
+
<A NAME=53>Encompass'd with thy lustful paramours!</A><br>
|
170 |
+
<A NAME=54>Becomes it thee to taunt his valiant age</A><br>
|
171 |
+
<A NAME=55>And twit with cowardice a man half dead?</A><br>
|
172 |
+
<A NAME=56>Damsel, I'll have a bout with you again,</A><br>
|
173 |
+
<A NAME=57>Or else let Talbot perish with this shame.</A><br>
|
174 |
+
</blockquote>
|
175 |
+
|
176 |
+
<A NAME=speech21><b>JOAN LA PUCELLE</b></a>
|
177 |
+
<blockquote>
|
178 |
+
<A NAME=58>Are ye so hot, sir? yet, Pucelle, hold thy peace;</A><br>
|
179 |
+
<A NAME=59>If Talbot do but thunder, rain will follow.</A><br>
|
180 |
+
<p><i>The English whisper together in council</i></p>
|
181 |
+
<A NAME=60>God speed the parliament! who shall be the speaker?</A><br>
|
182 |
+
</blockquote>
|
183 |
+
|
184 |
+
<A NAME=speech22><b>TALBOT</b></a>
|
185 |
+
<blockquote>
|
186 |
+
<A NAME=61>Dare ye come forth and meet us in the field?</A><br>
|
187 |
+
</blockquote>
|
188 |
+
|
189 |
+
<A NAME=speech23><b>JOAN LA PUCELLE</b></a>
|
190 |
+
<blockquote>
|
191 |
+
<A NAME=62>Belike your lordship takes us then for fools,</A><br>
|
192 |
+
<A NAME=63>To try if that our own be ours or no.</A><br>
|
193 |
+
</blockquote>
|
194 |
+
|
195 |
+
<A NAME=speech24><b>TALBOT</b></a>
|
196 |
+
<blockquote>
|
197 |
+
<A NAME=64>I speak not to that railing Hecate,</A><br>
|
198 |
+
<A NAME=65>But unto thee, Alencon, and the rest;</A><br>
|
199 |
+
<A NAME=66>Will ye, like soldiers, come and fight it out?</A><br>
|
200 |
+
</blockquote>
|
201 |
+
|
202 |
+
<A NAME=speech25><b>ALENCON</b></a>
|
203 |
+
<blockquote>
|
204 |
+
<A NAME=67>Signior, no.</A><br>
|
205 |
+
</blockquote>
|
206 |
+
|
207 |
+
<A NAME=speech26><b>TALBOT</b></a>
|
208 |
+
<blockquote>
|
209 |
+
<A NAME=68>Signior, hang! base muleters of France!</A><br>
|
210 |
+
<A NAME=69>Like peasant foot-boys do they keep the walls</A><br>
|
211 |
+
<A NAME=70>And dare not take up arms like gentlemen.</A><br>
|
212 |
+
</blockquote>
|
213 |
+
|
214 |
+
<A NAME=speech27><b>JOAN LA PUCELLE</b></a>
|
215 |
+
<blockquote>
|
216 |
+
<A NAME=71>Away, captains! let's get us from the walls;</A><br>
|
217 |
+
<A NAME=72>For Talbot means no goodness by his looks.</A><br>
|
218 |
+
<A NAME=73>God be wi' you, my lord! we came but to tell you</A><br>
|
219 |
+
<A NAME=74>That we are here.</A><br>
|
220 |
+
<p><i>Exeunt from the walls</i></p>
|
221 |
+
</blockquote>
|
222 |
+
|
223 |
+
<A NAME=speech28><b>TALBOT</b></a>
|
224 |
+
<blockquote>
|
225 |
+
<A NAME=75>And there will we be too, ere it be long,</A><br>
|
226 |
+
<A NAME=76>Or else reproach be Talbot's greatest fame!</A><br>
|
227 |
+
<A NAME=77>Vow, Burgundy, by honour of thy house,</A><br>
|
228 |
+
<A NAME=78>Prick'd on by public wrongs sustain'd in France,</A><br>
|
229 |
+
<A NAME=79>Either to get the town again or die:</A><br>
|
230 |
+
<A NAME=80>And I, as sure as English Henry lives</A><br>
|
231 |
+
<A NAME=81>And as his father here was conqueror,</A><br>
|
232 |
+
<A NAME=82>As sure as in this late-betrayed town</A><br>
|
233 |
+
<A NAME=83>Great Coeur-de-lion's heart was buried,</A><br>
|
234 |
+
<A NAME=84>So sure I swear to get the town or die.</A><br>
|
235 |
+
</blockquote>
|
236 |
+
|
237 |
+
<A NAME=speech29><b>BURGUNDY</b></a>
|
238 |
+
<blockquote>
|
239 |
+
<A NAME=85>My vows are equal partners with thy vows.</A><br>
|
240 |
+
</blockquote>
|
241 |
+
|
242 |
+
<A NAME=speech30><b>TALBOT</b></a>
|
243 |
+
<blockquote>
|
244 |
+
<A NAME=86>But, ere we go, regard this dying prince,</A><br>
|
245 |
+
<A NAME=87>The valiant Duke of Bedford. Come, my lord,</A><br>
|
246 |
+
<A NAME=88>We will bestow you in some better place,</A><br>
|
247 |
+
<A NAME=89>Fitter for sickness and for crazy age.</A><br>
|
248 |
+
</blockquote>
|
249 |
+
|
250 |
+
<A NAME=speech31><b>BEDFORD</b></a>
|
251 |
+
<blockquote>
|
252 |
+
<A NAME=90>Lord Talbot, do not so dishonour me:</A><br>
|
253 |
+
<A NAME=91>Here will I sit before the walls of Rouen</A><br>
|
254 |
+
<A NAME=92>And will be partner of your weal or woe.</A><br>
|
255 |
+
</blockquote>
|
256 |
+
|
257 |
+
<A NAME=speech32><b>BURGUNDY</b></a>
|
258 |
+
<blockquote>
|
259 |
+
<A NAME=93>Courageous Bedford, let us now persuade you.</A><br>
|
260 |
+
</blockquote>
|
261 |
+
|
262 |
+
<A NAME=speech33><b>BEDFORD</b></a>
|
263 |
+
<blockquote>
|
264 |
+
<A NAME=94>Not to be gone from hence; for once I read</A><br>
|
265 |
+
<A NAME=95>That stout Pendragon in his litter sick</A><br>
|
266 |
+
<A NAME=96>Came to the field and vanquished his foes:</A><br>
|
267 |
+
<A NAME=97>Methinks I should revive the soldiers' hearts,</A><br>
|
268 |
+
<A NAME=98>Because I ever found them as myself.</A><br>
|
269 |
+
</blockquote>
|
270 |
+
|
271 |
+
<A NAME=speech34><b>TALBOT</b></a>
|
272 |
+
<blockquote>
|
273 |
+
<A NAME=99>Undaunted spirit in a dying breast!</A><br>
|
274 |
+
<A NAME=100>Then be it so: heavens keep old Bedford safe!</A><br>
|
275 |
+
<A NAME=101>And now no more ado, brave Burgundy,</A><br>
|
276 |
+
<A NAME=102>But gather we our forces out of hand</A><br>
|
277 |
+
<A NAME=103>And set upon our boasting enemy.</A><br>
|
278 |
+
<p><i>Exeunt all but BEDFORD and Attendants</i></p>
|
279 |
+
<p><i>An alarum: excursions. Enter FASTOLFE and a Captain</i></p>
|
280 |
+
</blockquote>
|
281 |
+
|
282 |
+
<A NAME=speech35><b>Captain</b></a>
|
283 |
+
<blockquote>
|
284 |
+
<A NAME=104>Whither away, Sir John Fastolfe, in such haste?</A><br>
|
285 |
+
</blockquote>
|
286 |
+
|
287 |
+
<A NAME=speech36><b>FASTOLFE</b></a>
|
288 |
+
<blockquote>
|
289 |
+
<A NAME=105>Whither away! to save myself by flight:</A><br>
|
290 |
+
<A NAME=106>We are like to have the overthrow again.</A><br>
|
291 |
+
</blockquote>
|
292 |
+
|
293 |
+
<A NAME=speech37><b>Captain</b></a>
|
294 |
+
<blockquote>
|
295 |
+
<A NAME=107>What! will you fly, and leave Lord Talbot?</A><br>
|
296 |
+
</blockquote>
|
297 |
+
|
298 |
+
<A NAME=speech38><b>FASTOLFE</b></a>
|
299 |
+
<blockquote>
|
300 |
+
<A NAME=108>Ay,</A><br>
|
301 |
+
<A NAME=109>All the Talbots in the world, to save my life!</A><br>
|
302 |
+
<p><i>Exit</i></p>
|
303 |
+
</blockquote>
|
304 |
+
|
305 |
+
<A NAME=speech39><b>Captain</b></a>
|
306 |
+
<blockquote>
|
307 |
+
<A NAME=110>Cowardly knight! ill fortune follow thee!</A><br>
|
308 |
+
<p><i>Exit</i></p>
|
309 |
+
<p><i>Retreat: excursions. JOAN LA PUCELLE, ALENCON, and CHARLES fly</i></p>
|
310 |
+
</blockquote>
|
311 |
+
|
312 |
+
<A NAME=speech40><b>BEDFORD</b></a>
|
313 |
+
<blockquote>
|
314 |
+
<A NAME=111>Now, quiet soul, depart when heaven please,</A><br>
|
315 |
+
<A NAME=112>For I have seen our enemies' overthrow.</A><br>
|
316 |
+
<A NAME=113>What is the trust or strength of foolish man?</A><br>
|
317 |
+
<A NAME=114>They that of late were daring with their scoffs</A><br>
|
318 |
+
<A NAME=115>Are glad and fain by flight to save themselves.</A><br>
|
319 |
+
<p><i>BEDFORD dies, and is carried in by two in his chair</i></p>
|
320 |
+
<p><i>An alarum. Re-enter TALBOT, BURGUNDY, and the rest</i></p>
|
321 |
+
</blockquote>
|
322 |
+
|
323 |
+
<A NAME=speech41><b>TALBOT</b></a>
|
324 |
+
<blockquote>
|
325 |
+
<A NAME=116>Lost, and recover'd in a day again!</A><br>
|
326 |
+
<A NAME=117>This is a double honour, Burgundy:</A><br>
|
327 |
+
<A NAME=118>Yet heavens have glory for this victory!</A><br>
|
328 |
+
</blockquote>
|
329 |
+
|
330 |
+
<A NAME=speech42><b>BURGUNDY</b></a>
|
331 |
+
<blockquote>
|
332 |
+
<A NAME=119>Warlike and martial Talbot, Burgundy</A><br>
|
333 |
+
<A NAME=120>Enshrines thee in his heart and there erects</A><br>
|
334 |
+
<A NAME=121>Thy noble deeds as valour's monuments.</A><br>
|
335 |
+
</blockquote>
|
336 |
+
|
337 |
+
<A NAME=speech43><b>TALBOT</b></a>
|
338 |
+
<blockquote>
|
339 |
+
<A NAME=122>Thanks, gentle duke. But where is Pucelle now?</A><br>
|
340 |
+
<A NAME=123>I think her old familiar is asleep:</A><br>
|
341 |
+
<A NAME=124>Now where's the Bastard's braves, and Charles his gleeks?</A><br>
|
342 |
+
<A NAME=125>What, all amort? Rouen hangs her head for grief</A><br>
|
343 |
+
<A NAME=126>That such a valiant company are fled.</A><br>
|
344 |
+
<A NAME=127>Now will we take some order in the town,</A><br>
|
345 |
+
<A NAME=128>Placing therein some expert officers,</A><br>
|
346 |
+
<A NAME=129>And then depart to Paris to the king,</A><br>
|
347 |
+
<A NAME=130>For there young Henry with his nobles lie.</A><br>
|
348 |
+
</blockquote>
|
349 |
+
|
350 |
+
<A NAME=speech44><b>BURGUNDY</b></a>
|
351 |
+
<blockquote>
|
352 |
+
<A NAME=131>What wills Lord Talbot pleaseth Burgundy.</A><br>
|
353 |
+
</blockquote>
|
354 |
+
|
355 |
+
<A NAME=speech45><b>TALBOT</b></a>
|
356 |
+
<blockquote>
|
357 |
+
<A NAME=132>But yet, before we go, let's not forget</A><br>
|
358 |
+
<A NAME=133>The noble Duke of Bedford late deceased,</A><br>
|
359 |
+
<A NAME=134>But see his exequies fulfill'd in Rouen:</A><br>
|
360 |
+
<A NAME=135>A braver soldier never couched lance,</A><br>
|
361 |
+
<A NAME=136>A gentler heart did never sway in court;</A><br>
|
362 |
+
<A NAME=137>But kings and mightiest potentates must die,</A><br>
|
363 |
+
<A NAME=138>For that's the end of human misery.</A><br>
|
364 |
+
<p><i>Exeunt</i></p>
|
365 |
+
</blockquote>
|
366 |
+
<table width="100%" bgcolor="#CCF6F6">
|
367 |
+
<tr><td class="nav" align="center">
|
368 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
369 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
370 |
+
| Act 3, Scene 2
|
371 |
+
<br>
|
372 |
+
<a href="1henryvi.3.1.html">Previous scene</A>
|
373 |
+
| <a href="1henryvi.3.3.html">Next scene</A>
|
374 |
+
</table>
|
375 |
+
|
376 |
+
</body>
|
377 |
+
</html>
|
378 |
+
|
379 |
+
|
data/1henryvi.3.3.html
ADDED
@@ -0,0 +1,234 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. The plains near Rouen.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 3, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.3.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.3.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. The plains near Rouen.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter CHARLES, the BASTARD OF ORLEANS, ALENCON, JOAN LA PUCELLE, and forces</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>JOAN LA PUCELLE</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Dismay not, princes, at this accident,</A><br>
|
33 |
+
<A NAME=2>Nor grieve that Rouen is so recovered:</A><br>
|
34 |
+
<A NAME=3>Care is no cure, but rather corrosive,</A><br>
|
35 |
+
<A NAME=4>For things that are not to be remedied.</A><br>
|
36 |
+
<A NAME=5>Let frantic Talbot triumph for a while</A><br>
|
37 |
+
<A NAME=6>And like a peacock sweep along his tail;</A><br>
|
38 |
+
<A NAME=7>We'll pull his plumes and take away his train,</A><br>
|
39 |
+
<A NAME=8>If Dauphin and the rest will be but ruled.</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech2><b>CHARLES</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=9>We have been guided by thee hitherto,</A><br>
|
45 |
+
<A NAME=10>And of thy cunning had no diffidence:</A><br>
|
46 |
+
<A NAME=11>One sudden foil shall never breed distrust.</A><br>
|
47 |
+
</blockquote>
|
48 |
+
|
49 |
+
<A NAME=speech3><b>BASTARD OF ORLEANS</b></a>
|
50 |
+
<blockquote>
|
51 |
+
<A NAME=12>Search out thy wit for secret policies,</A><br>
|
52 |
+
<A NAME=13>And we will make thee famous through the world.</A><br>
|
53 |
+
</blockquote>
|
54 |
+
|
55 |
+
<A NAME=speech4><b>ALENCON</b></a>
|
56 |
+
<blockquote>
|
57 |
+
<A NAME=14>We'll set thy statue in some holy place,</A><br>
|
58 |
+
<A NAME=15>And have thee reverenced like a blessed saint:</A><br>
|
59 |
+
<A NAME=16>Employ thee then, sweet virgin, for our good.</A><br>
|
60 |
+
</blockquote>
|
61 |
+
|
62 |
+
<A NAME=speech5><b>JOAN LA PUCELLE</b></a>
|
63 |
+
<blockquote>
|
64 |
+
<A NAME=17>Then thus it must be; this doth Joan devise:</A><br>
|
65 |
+
<A NAME=18>By fair persuasions mix'd with sugar'd words</A><br>
|
66 |
+
<A NAME=19>We will entice the Duke of Burgundy</A><br>
|
67 |
+
<A NAME=20>To leave the Talbot and to follow us.</A><br>
|
68 |
+
</blockquote>
|
69 |
+
|
70 |
+
<A NAME=speech6><b>CHARLES</b></a>
|
71 |
+
<blockquote>
|
72 |
+
<A NAME=21>Ay, marry, sweeting, if we could do that,</A><br>
|
73 |
+
<A NAME=22>France were no place for Henry's warriors;</A><br>
|
74 |
+
<A NAME=23>Nor should that nation boast it so with us,</A><br>
|
75 |
+
<A NAME=24>But be extirped from our provinces.</A><br>
|
76 |
+
</blockquote>
|
77 |
+
|
78 |
+
<A NAME=speech7><b>ALENCON</b></a>
|
79 |
+
<blockquote>
|
80 |
+
<A NAME=25>For ever should they be expulsed from France</A><br>
|
81 |
+
<A NAME=26>And not have title of an earldom here.</A><br>
|
82 |
+
</blockquote>
|
83 |
+
|
84 |
+
<A NAME=speech8><b>JOAN LA PUCELLE</b></a>
|
85 |
+
<blockquote>
|
86 |
+
<A NAME=27>Your honours shall perceive how I will work</A><br>
|
87 |
+
<A NAME=28>To bring this matter to the wished end.</A><br>
|
88 |
+
<p><i>Drum sounds afar off</i></p>
|
89 |
+
<A NAME=29>Hark! by the sound of drum you may perceive</A><br>
|
90 |
+
<A NAME=30>Their powers are marching unto Paris-ward.</A><br>
|
91 |
+
<p><i>Here sound an English march. Enter, and pass over at a distance, TALBOT and his forces</i></p>
|
92 |
+
<A NAME=31>There goes the Talbot, with his colours spread,</A><br>
|
93 |
+
<A NAME=32>And all the troops of English after him.</A><br>
|
94 |
+
<p><i>French march. Enter BURGUNDY and forces</i></p>
|
95 |
+
<A NAME=33>Now in the rearward comes the duke and his:</A><br>
|
96 |
+
<A NAME=34>Fortune in favour makes him lag behind.</A><br>
|
97 |
+
<A NAME=35>Summon a parley; we will talk with him.</A><br>
|
98 |
+
<p><i>Trumpets sound a parley</i></p>
|
99 |
+
</blockquote>
|
100 |
+
|
101 |
+
<A NAME=speech9><b>CHARLES</b></a>
|
102 |
+
<blockquote>
|
103 |
+
<A NAME=36>A parley with the Duke of Burgundy!</A><br>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech10><b>BURGUNDY</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=37>Who craves a parley with the Burgundy?</A><br>
|
109 |
+
</blockquote>
|
110 |
+
|
111 |
+
<A NAME=speech11><b>JOAN LA PUCELLE</b></a>
|
112 |
+
<blockquote>
|
113 |
+
<A NAME=38>The princely Charles of France, thy countryman.</A><br>
|
114 |
+
</blockquote>
|
115 |
+
|
116 |
+
<A NAME=speech12><b>BURGUNDY</b></a>
|
117 |
+
<blockquote>
|
118 |
+
<A NAME=39>What say'st thou, Charles? for I am marching hence.</A><br>
|
119 |
+
</blockquote>
|
120 |
+
|
121 |
+
<A NAME=speech13><b>CHARLES</b></a>
|
122 |
+
<blockquote>
|
123 |
+
<A NAME=40>Speak, Pucelle, and enchant him with thy words.</A><br>
|
124 |
+
</blockquote>
|
125 |
+
|
126 |
+
<A NAME=speech14><b>JOAN LA PUCELLE</b></a>
|
127 |
+
<blockquote>
|
128 |
+
<A NAME=41>Brave Burgundy, undoubted hope of France!</A><br>
|
129 |
+
<A NAME=42>Stay, let thy humble handmaid speak to thee.</A><br>
|
130 |
+
</blockquote>
|
131 |
+
|
132 |
+
<A NAME=speech15><b>BURGUNDY</b></a>
|
133 |
+
<blockquote>
|
134 |
+
<A NAME=43>Speak on; but be not over-tedious.</A><br>
|
135 |
+
</blockquote>
|
136 |
+
|
137 |
+
<A NAME=speech16><b>JOAN LA PUCELLE</b></a>
|
138 |
+
<blockquote>
|
139 |
+
<A NAME=44>Look on thy country, look on fertile France,</A><br>
|
140 |
+
<A NAME=45>And see the cities and the towns defaced</A><br>
|
141 |
+
<A NAME=46>By wasting ruin of the cruel foe.</A><br>
|
142 |
+
<A NAME=47>As looks the mother on her lowly babe</A><br>
|
143 |
+
<A NAME=48>When death doth close his tender dying eyes,</A><br>
|
144 |
+
<A NAME=49>See, see the pining malady of France;</A><br>
|
145 |
+
<A NAME=50>Behold the wounds, the most unnatural wounds,</A><br>
|
146 |
+
<A NAME=51>Which thou thyself hast given her woful breast.</A><br>
|
147 |
+
<A NAME=52>O, turn thy edged sword another way;</A><br>
|
148 |
+
<A NAME=53>Strike those that hurt, and hurt not those that help.</A><br>
|
149 |
+
<A NAME=54>One drop of blood drawn from thy country's bosom</A><br>
|
150 |
+
<A NAME=55>Should grieve thee more than streams of foreign gore:</A><br>
|
151 |
+
<A NAME=56>Return thee therefore with a flood of tears,</A><br>
|
152 |
+
<A NAME=57>And wash away thy country's stained spots.</A><br>
|
153 |
+
</blockquote>
|
154 |
+
|
155 |
+
<A NAME=speech17><b>BURGUNDY</b></a>
|
156 |
+
<blockquote>
|
157 |
+
<A NAME=58>Either she hath bewitch'd me with her words,</A><br>
|
158 |
+
<A NAME=59>Or nature makes me suddenly relent.</A><br>
|
159 |
+
</blockquote>
|
160 |
+
|
161 |
+
<A NAME=speech18><b>JOAN LA PUCELLE</b></a>
|
162 |
+
<blockquote>
|
163 |
+
<A NAME=60>Besides, all French and France exclaims on thee,</A><br>
|
164 |
+
<A NAME=61>Doubting thy birth and lawful progeny.</A><br>
|
165 |
+
<A NAME=62>Who joint'st thou with but with a lordly nation</A><br>
|
166 |
+
<A NAME=63>That will not trust thee but for profit's sake?</A><br>
|
167 |
+
<A NAME=64>When Talbot hath set footing once in France</A><br>
|
168 |
+
<A NAME=65>And fashion'd thee that instrument of ill,</A><br>
|
169 |
+
<A NAME=66>Who then but English Henry will be lord</A><br>
|
170 |
+
<A NAME=67>And thou be thrust out like a fugitive?</A><br>
|
171 |
+
<A NAME=68>Call we to mind, and mark but this for proof,</A><br>
|
172 |
+
<A NAME=69>Was not the Duke of Orleans thy foe?</A><br>
|
173 |
+
<A NAME=70>And was he not in England prisoner?</A><br>
|
174 |
+
<A NAME=71>But when they heard he was thine enemy,</A><br>
|
175 |
+
<A NAME=72>They set him free without his ransom paid,</A><br>
|
176 |
+
<A NAME=73>In spite of Burgundy and all his friends.</A><br>
|
177 |
+
<A NAME=74>See, then, thou fight'st against thy countrymen</A><br>
|
178 |
+
<A NAME=75>And joint'st with them will be thy slaughtermen.</A><br>
|
179 |
+
<A NAME=76>Come, come, return; return, thou wandering lord:</A><br>
|
180 |
+
<A NAME=77>Charles and the rest will take thee in their arms.</A><br>
|
181 |
+
</blockquote>
|
182 |
+
|
183 |
+
<A NAME=speech19><b>BURGUNDY</b></a>
|
184 |
+
<blockquote>
|
185 |
+
<A NAME=78>I am vanquished; these haughty words of hers</A><br>
|
186 |
+
<A NAME=79>Have batter'd me like roaring cannon-shot,</A><br>
|
187 |
+
<A NAME=80>And made me almost yield upon my knees.</A><br>
|
188 |
+
<A NAME=81>Forgive me, country, and sweet countrymen,</A><br>
|
189 |
+
<A NAME=82>And, lords, accept this hearty kind embrace:</A><br>
|
190 |
+
<A NAME=83>My forces and my power of men are yours:</A><br>
|
191 |
+
<A NAME=84>So farewell, Talbot; I'll no longer trust thee.</A><br>
|
192 |
+
</blockquote>
|
193 |
+
|
194 |
+
<A NAME=speech20><b>JOAN LA PUCELLE</b></a>
|
195 |
+
<blockquote>
|
196 |
+
<A NAME=85>[Aside] Done like a Frenchman: turn, and turn again!</A><br>
|
197 |
+
</blockquote>
|
198 |
+
|
199 |
+
<A NAME=speech21><b>CHARLES</b></a>
|
200 |
+
<blockquote>
|
201 |
+
<A NAME=86>Welcome, brave duke! thy friendship makes us fresh.</A><br>
|
202 |
+
</blockquote>
|
203 |
+
|
204 |
+
<A NAME=speech22><b>BASTARD OF ORLEANS</b></a>
|
205 |
+
<blockquote>
|
206 |
+
<A NAME=87>And doth beget new courage in our breasts.</A><br>
|
207 |
+
</blockquote>
|
208 |
+
|
209 |
+
<A NAME=speech23><b>ALENCON</b></a>
|
210 |
+
<blockquote>
|
211 |
+
<A NAME=88>Pucelle hath bravely play'd her part in this,</A><br>
|
212 |
+
<A NAME=89>And doth deserve a coronet of gold.</A><br>
|
213 |
+
</blockquote>
|
214 |
+
|
215 |
+
<A NAME=speech24><b>CHARLES</b></a>
|
216 |
+
<blockquote>
|
217 |
+
<A NAME=90>Now let us on, my lords, and join our powers,</A><br>
|
218 |
+
<A NAME=91>And seek how we may prejudice the foe.</A><br>
|
219 |
+
<p><i>Exeunt</i></p>
|
220 |
+
</blockquote>
|
221 |
+
<table width="100%" bgcolor="#CCF6F6">
|
222 |
+
<tr><td class="nav" align="center">
|
223 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
224 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
225 |
+
| Act 3, Scene 3
|
226 |
+
<br>
|
227 |
+
<a href="1henryvi.3.2.html">Previous scene</A>
|
228 |
+
| <a href="1henryvi.3.4.html">Next scene</A>
|
229 |
+
</table>
|
230 |
+
|
231 |
+
</body>
|
232 |
+
</html>
|
233 |
+
|
234 |
+
|
data/1henryvi.3.4.html
ADDED
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. Paris. The palace.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 3, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.3.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.4.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. Paris. The palace.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter KING HENRY VI, GLOUCESTER, BISHOP OF WINCHESTER, YORK, SUFFOLK, SOMERSET, WARWICK, EXETER, VERNON BASSET, and others. To them with his Soldiers, TALBOT</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>TALBOT</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>My gracious prince, and honourable peers,</A><br>
|
33 |
+
<A NAME=2>Hearing of your arrival in this realm,</A><br>
|
34 |
+
<A NAME=3>I have awhile given truce unto my wars,</A><br>
|
35 |
+
<A NAME=4>To do my duty to my sovereign:</A><br>
|
36 |
+
<A NAME=5>In sign, whereof, this arm, that hath reclaim'd</A><br>
|
37 |
+
<A NAME=6>To your obedience fifty fortresses,</A><br>
|
38 |
+
<A NAME=7>Twelve cities and seven walled towns of strength,</A><br>
|
39 |
+
<A NAME=8>Beside five hundred prisoners of esteem,</A><br>
|
40 |
+
<A NAME=9>Lets fall his sword before your highness' feet,</A><br>
|
41 |
+
<A NAME=10>And with submissive loyalty of heart</A><br>
|
42 |
+
<A NAME=11>Ascribes the glory of his conquest got</A><br>
|
43 |
+
<A NAME=12>First to my God and next unto your grace.</A><br>
|
44 |
+
<p><i>Kneels</i></p>
|
45 |
+
</blockquote>
|
46 |
+
|
47 |
+
<A NAME=speech2><b>KING HENRY VI</b></a>
|
48 |
+
<blockquote>
|
49 |
+
<A NAME=13>Is this the Lord Talbot, uncle Gloucester,</A><br>
|
50 |
+
<A NAME=14>That hath so long been resident in France?</A><br>
|
51 |
+
</blockquote>
|
52 |
+
|
53 |
+
<A NAME=speech3><b>GLOUCESTER</b></a>
|
54 |
+
<blockquote>
|
55 |
+
<A NAME=15>Yes, if it please your majesty, my liege.</A><br>
|
56 |
+
</blockquote>
|
57 |
+
|
58 |
+
<A NAME=speech4><b>KING HENRY VI</b></a>
|
59 |
+
<blockquote>
|
60 |
+
<A NAME=16>Welcome, brave captain and victorious lord!</A><br>
|
61 |
+
<A NAME=17>When I was young, as yet I am not old,</A><br>
|
62 |
+
<A NAME=18>I do remember how my father said</A><br>
|
63 |
+
<A NAME=19>A stouter champion never handled sword.</A><br>
|
64 |
+
<A NAME=20>Long since we were resolved of your truth,</A><br>
|
65 |
+
<A NAME=21>Your faithful service and your toil in war;</A><br>
|
66 |
+
<A NAME=22>Yet never have you tasted our reward,</A><br>
|
67 |
+
<A NAME=23>Or been reguerdon'd with so much as thanks,</A><br>
|
68 |
+
<A NAME=24>Because till now we never saw your face:</A><br>
|
69 |
+
<A NAME=25>Therefore, stand up; and, for these good deserts,</A><br>
|
70 |
+
<A NAME=26>We here create you Earl of Shrewsbury;</A><br>
|
71 |
+
<A NAME=27>And in our coronation take your place.</A><br>
|
72 |
+
<p><i>Sennet. Flourish. Exeunt all but VERNON and BASSET</i></p>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech5><b>VERNON</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=28>Now, sir, to you, that were so hot at sea,</A><br>
|
78 |
+
<A NAME=29>Disgracing of these colours that I wear</A><br>
|
79 |
+
<A NAME=30>In honour of my noble Lord of York:</A><br>
|
80 |
+
<A NAME=31>Darest thou maintain the former words thou spakest?</A><br>
|
81 |
+
</blockquote>
|
82 |
+
|
83 |
+
<A NAME=speech6><b>BASSET</b></a>
|
84 |
+
<blockquote>
|
85 |
+
<A NAME=32>Yes, sir; as well as you dare patronage</A><br>
|
86 |
+
<A NAME=33>The envious barking of your saucy tongue</A><br>
|
87 |
+
<A NAME=34>Against my lord the Duke of Somerset.</A><br>
|
88 |
+
</blockquote>
|
89 |
+
|
90 |
+
<A NAME=speech7><b>VERNON</b></a>
|
91 |
+
<blockquote>
|
92 |
+
<A NAME=35>Sirrah, thy lord I honour as he is.</A><br>
|
93 |
+
</blockquote>
|
94 |
+
|
95 |
+
<A NAME=speech8><b>BASSET</b></a>
|
96 |
+
<blockquote>
|
97 |
+
<A NAME=36>Why, what is he? as good a man as York.</A><br>
|
98 |
+
</blockquote>
|
99 |
+
|
100 |
+
<A NAME=speech9><b>VERNON</b></a>
|
101 |
+
<blockquote>
|
102 |
+
<A NAME=37>Hark ye; not so: in witness, take ye that.</A><br>
|
103 |
+
<p><i>Strikes him</i></p>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech10><b>BASSET</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=38>Villain, thou know'st the law of arms is such</A><br>
|
109 |
+
<A NAME=39>That whoso draws a sword, 'tis present death,</A><br>
|
110 |
+
<A NAME=40>Or else this blow should broach thy dearest blood.</A><br>
|
111 |
+
<A NAME=41>But I'll unto his majesty, and crave</A><br>
|
112 |
+
<A NAME=42>I may have liberty to venge this wrong;</A><br>
|
113 |
+
<A NAME=43>When thou shalt see I'll meet thee to thy cost.</A><br>
|
114 |
+
</blockquote>
|
115 |
+
|
116 |
+
<A NAME=speech11><b>VERNON</b></a>
|
117 |
+
<blockquote>
|
118 |
+
<A NAME=44>Well, miscreant, I'll be there as soon as you;</A><br>
|
119 |
+
<A NAME=45>And, after, meet you sooner than you would.</A><br>
|
120 |
+
<p><i>Exeunt</i></p>
|
121 |
+
<table width="100%" bgcolor="#CCF6F6">
|
122 |
+
<tr><td class="nav" align="center">
|
123 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
124 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
125 |
+
| Act 3, Scene 4
|
126 |
+
<br>
|
127 |
+
<a href="1henryvi.3.3.html">Previous scene</A>
|
128 |
+
| <a href="1henryvi.4.1.html">Next scene</A>
|
129 |
+
</table>
|
130 |
+
|
131 |
+
</body>
|
132 |
+
</html>
|
133 |
+
|
134 |
+
|
data/1henryvi.4.1.html
ADDED
@@ -0,0 +1,420 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. Paris. A hall of state.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 4, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.3.4.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.4.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. Paris. A hall of state.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter KING HENRY VI, GLOUCESTER, BISHOP OF WINCHESTER, YORK, SUFFOLK, SOMERSET, WARWICK, TALBOT, EXETER, the Governor, of Paris, and others</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>GLOUCESTER</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Lord bishop, set the crown upon his head.</A><br>
|
33 |
+
<A NAME=2>BISHOP</A><br>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>OF WINCHESTER</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=3>God save King Henry, of that name the sixth!</A><br>
|
39 |
+
</blockquote>
|
40 |
+
|
41 |
+
<A NAME=speech3><b>GLOUCESTER</b></a>
|
42 |
+
<blockquote>
|
43 |
+
<A NAME=4>Now, governor of Paris, take your oath,</A><br>
|
44 |
+
<A NAME=5>That you elect no other king but him;</A><br>
|
45 |
+
<A NAME=6>Esteem none friends but such as are his friends,</A><br>
|
46 |
+
<A NAME=7>And none your foes but such as shall pretend</A><br>
|
47 |
+
<A NAME=8>Malicious practises against his state:</A><br>
|
48 |
+
<A NAME=9>This shall ye do, so help you righteous God!</A><br>
|
49 |
+
<p><i>Enter FASTOLFE</i></p>
|
50 |
+
</blockquote>
|
51 |
+
|
52 |
+
<A NAME=speech4><b>FASTOLFE</b></a>
|
53 |
+
<blockquote>
|
54 |
+
<A NAME=10>My gracious sovereign, as I rode from Calais,</A><br>
|
55 |
+
<A NAME=11>To haste unto your coronation,</A><br>
|
56 |
+
<A NAME=12>A letter was deliver'd to my hands,</A><br>
|
57 |
+
<A NAME=13>Writ to your grace from the Duke of Burgundy.</A><br>
|
58 |
+
</blockquote>
|
59 |
+
|
60 |
+
<A NAME=speech5><b>TALBOT</b></a>
|
61 |
+
<blockquote>
|
62 |
+
<A NAME=14>Shame to the Duke of Burgundy and thee!</A><br>
|
63 |
+
<A NAME=15>I vow'd, base knight, when I did meet thee next,</A><br>
|
64 |
+
<A NAME=16>To tear the garter from thy craven's leg,</A><br>
|
65 |
+
<p><i>Plucking it off</i></p>
|
66 |
+
<A NAME=17>Which I have done, because unworthily</A><br>
|
67 |
+
<A NAME=18>Thou wast installed in that high degree.</A><br>
|
68 |
+
<A NAME=19>Pardon me, princely Henry, and the rest</A><br>
|
69 |
+
<A NAME=20>This dastard, at the battle of Patay,</A><br>
|
70 |
+
<A NAME=21>When but in all I was six thousand strong</A><br>
|
71 |
+
<A NAME=22>And that the French were almost ten to one,</A><br>
|
72 |
+
<A NAME=23>Before we met or that a stroke was given,</A><br>
|
73 |
+
<A NAME=24>Like to a trusty squire did run away:</A><br>
|
74 |
+
<A NAME=25>In which assault we lost twelve hundred men;</A><br>
|
75 |
+
<A NAME=26>Myself and divers gentlemen beside</A><br>
|
76 |
+
<A NAME=27>Were there surprised and taken prisoners.</A><br>
|
77 |
+
<A NAME=28>Then judge, great lords, if I have done amiss;</A><br>
|
78 |
+
<A NAME=29>Or whether that such cowards ought to wear</A><br>
|
79 |
+
<A NAME=30>This ornament of knighthood, yea or no.</A><br>
|
80 |
+
</blockquote>
|
81 |
+
|
82 |
+
<A NAME=speech6><b>GLOUCESTER</b></a>
|
83 |
+
<blockquote>
|
84 |
+
<A NAME=31>To say the truth, this fact was infamous</A><br>
|
85 |
+
<A NAME=32>And ill beseeming any common man,</A><br>
|
86 |
+
<A NAME=33>Much more a knight, a captain and a leader.</A><br>
|
87 |
+
</blockquote>
|
88 |
+
|
89 |
+
<A NAME=speech7><b>TALBOT</b></a>
|
90 |
+
<blockquote>
|
91 |
+
<A NAME=34>When first this order was ordain'd, my lords,</A><br>
|
92 |
+
<A NAME=35>Knights of the garter were of noble birth,</A><br>
|
93 |
+
<A NAME=36>Valiant and virtuous, full of haughty courage,</A><br>
|
94 |
+
<A NAME=37>Such as were grown to credit by the wars;</A><br>
|
95 |
+
<A NAME=38>Not fearing death, nor shrinking for distress,</A><br>
|
96 |
+
<A NAME=39>But always resolute in most extremes.</A><br>
|
97 |
+
<A NAME=40>He then that is not furnish'd in this sort</A><br>
|
98 |
+
<A NAME=41>Doth but usurp the sacred name of knight,</A><br>
|
99 |
+
<A NAME=42>Profaning this most honourable order,</A><br>
|
100 |
+
<A NAME=43>And should, if I were worthy to be judge,</A><br>
|
101 |
+
<A NAME=44>Be quite degraded, like a hedge-born swain</A><br>
|
102 |
+
<A NAME=45>That doth presume to boast of gentle blood.</A><br>
|
103 |
+
</blockquote>
|
104 |
+
|
105 |
+
<A NAME=speech8><b>KING HENRY VI</b></a>
|
106 |
+
<blockquote>
|
107 |
+
<A NAME=46>Stain to thy countrymen, thou hear'st thy doom!</A><br>
|
108 |
+
<A NAME=47>Be packing, therefore, thou that wast a knight:</A><br>
|
109 |
+
<A NAME=48>Henceforth we banish thee, on pain of death.</A><br>
|
110 |
+
<p><i>Exit FASTOLFE</i></p>
|
111 |
+
<A NAME=49>And now, my lord protector, view the letter</A><br>
|
112 |
+
<A NAME=50>Sent from our uncle Duke of Burgundy.</A><br>
|
113 |
+
</blockquote>
|
114 |
+
|
115 |
+
<A NAME=speech9><b>GLOUCESTER</b></a>
|
116 |
+
<blockquote>
|
117 |
+
<A NAME=51>What means his grace, that he hath changed his style?</A><br>
|
118 |
+
<A NAME=52>No more but, plain and bluntly, 'To the king!'</A><br>
|
119 |
+
<A NAME=53>Hath he forgot he is his sovereign?</A><br>
|
120 |
+
<A NAME=54>Or doth this churlish superscription</A><br>
|
121 |
+
<A NAME=55>Pretend some alteration in good will?</A><br>
|
122 |
+
<A NAME=56>What's here?</A><br>
|
123 |
+
<p><i>Reads</i></p>
|
124 |
+
<A NAME=57>'I have, upon especial cause,</A><br>
|
125 |
+
<A NAME=58>Moved with compassion of my country's wreck,</A><br>
|
126 |
+
<A NAME=59>Together with the pitiful complaints</A><br>
|
127 |
+
<A NAME=60>Of such as your oppression feeds upon,</A><br>
|
128 |
+
<A NAME=61>Forsaken your pernicious faction</A><br>
|
129 |
+
<A NAME=62>And join'd with Charles, the rightful King of France.'</A><br>
|
130 |
+
<A NAME=63>O monstrous treachery! can this be so,</A><br>
|
131 |
+
<A NAME=64>That in alliance, amity and oaths,</A><br>
|
132 |
+
<A NAME=65>There should be found such false dissembling guile?</A><br>
|
133 |
+
</blockquote>
|
134 |
+
|
135 |
+
<A NAME=speech10><b>KING HENRY VI</b></a>
|
136 |
+
<blockquote>
|
137 |
+
<A NAME=66>What! doth my uncle Burgundy revolt?</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech11><b>GLOUCESTER</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=67>He doth, my lord, and is become your foe.</A><br>
|
143 |
+
</blockquote>
|
144 |
+
|
145 |
+
<A NAME=speech12><b>KING HENRY VI</b></a>
|
146 |
+
<blockquote>
|
147 |
+
<A NAME=68>Is that the worst this letter doth contain?</A><br>
|
148 |
+
</blockquote>
|
149 |
+
|
150 |
+
<A NAME=speech13><b>GLOUCESTER</b></a>
|
151 |
+
<blockquote>
|
152 |
+
<A NAME=69>It is the worst, and all, my lord, he writes.</A><br>
|
153 |
+
</blockquote>
|
154 |
+
|
155 |
+
<A NAME=speech14><b>KING HENRY VI</b></a>
|
156 |
+
<blockquote>
|
157 |
+
<A NAME=70>Why, then, Lord Talbot there shall talk with him</A><br>
|
158 |
+
<A NAME=71>And give him chastisement for this abuse.</A><br>
|
159 |
+
<A NAME=72>How say you, my lord? are you not content?</A><br>
|
160 |
+
</blockquote>
|
161 |
+
|
162 |
+
<A NAME=speech15><b>TALBOT</b></a>
|
163 |
+
<blockquote>
|
164 |
+
<A NAME=73>Content, my liege! yes, but that I am prevented,</A><br>
|
165 |
+
<A NAME=74>I should have begg'd I might have been employ'd.</A><br>
|
166 |
+
</blockquote>
|
167 |
+
|
168 |
+
<A NAME=speech16><b>KING HENRY VI</b></a>
|
169 |
+
<blockquote>
|
170 |
+
<A NAME=75>Then gather strength and march unto him straight:</A><br>
|
171 |
+
<A NAME=76>Let him perceive how ill we brook his treason</A><br>
|
172 |
+
<A NAME=77>And what offence it is to flout his friends.</A><br>
|
173 |
+
</blockquote>
|
174 |
+
|
175 |
+
<A NAME=speech17><b>TALBOT</b></a>
|
176 |
+
<blockquote>
|
177 |
+
<A NAME=78>I go, my lord, in heart desiring still</A><br>
|
178 |
+
<A NAME=79>You may behold confusion of your foes.</A><br>
|
179 |
+
<p><i>Exit</i></p>
|
180 |
+
<p><i>Enter VERNON and BASSET</i></p>
|
181 |
+
</blockquote>
|
182 |
+
|
183 |
+
<A NAME=speech18><b>VERNON</b></a>
|
184 |
+
<blockquote>
|
185 |
+
<A NAME=80>Grant me the combat, gracious sovereign.</A><br>
|
186 |
+
</blockquote>
|
187 |
+
|
188 |
+
<A NAME=speech19><b>BASSET</b></a>
|
189 |
+
<blockquote>
|
190 |
+
<A NAME=81>And me, my lord, grant me the combat too.</A><br>
|
191 |
+
</blockquote>
|
192 |
+
|
193 |
+
<A NAME=speech20><b>YORK</b></a>
|
194 |
+
<blockquote>
|
195 |
+
<A NAME=82>This is my servant: hear him, noble prince.</A><br>
|
196 |
+
</blockquote>
|
197 |
+
|
198 |
+
<A NAME=speech21><b>SOMERSET</b></a>
|
199 |
+
<blockquote>
|
200 |
+
<A NAME=83>And this is mine: sweet Henry, favour him.</A><br>
|
201 |
+
</blockquote>
|
202 |
+
|
203 |
+
<A NAME=speech22><b>KING HENRY VI</b></a>
|
204 |
+
<blockquote>
|
205 |
+
<A NAME=84>Be patient, lords; and give them leave to speak.</A><br>
|
206 |
+
<A NAME=85>Say, gentlemen, what makes you thus exclaim?</A><br>
|
207 |
+
<A NAME=86>And wherefore crave you combat? or with whom?</A><br>
|
208 |
+
</blockquote>
|
209 |
+
|
210 |
+
<A NAME=speech23><b>VERNON</b></a>
|
211 |
+
<blockquote>
|
212 |
+
<A NAME=87>With him, my lord; for he hath done me wrong.</A><br>
|
213 |
+
</blockquote>
|
214 |
+
|
215 |
+
<A NAME=speech24><b>BASSET</b></a>
|
216 |
+
<blockquote>
|
217 |
+
<A NAME=88>And I with him; for he hath done me wrong.</A><br>
|
218 |
+
</blockquote>
|
219 |
+
|
220 |
+
<A NAME=speech25><b>KING HENRY VI</b></a>
|
221 |
+
<blockquote>
|
222 |
+
<A NAME=89>What is that wrong whereof you both complain?</A><br>
|
223 |
+
<A NAME=90>First let me know, and then I'll answer you.</A><br>
|
224 |
+
</blockquote>
|
225 |
+
|
226 |
+
<A NAME=speech26><b>BASSET</b></a>
|
227 |
+
<blockquote>
|
228 |
+
<A NAME=91>Crossing the sea from England into France,</A><br>
|
229 |
+
<A NAME=92>This fellow here, with envious carping tongue,</A><br>
|
230 |
+
<A NAME=93>Upbraided me about the rose I wear;</A><br>
|
231 |
+
<A NAME=94>Saying, the sanguine colour of the leaves</A><br>
|
232 |
+
<A NAME=95>Did represent my master's blushing cheeks,</A><br>
|
233 |
+
<A NAME=96>When stubbornly he did repugn the truth</A><br>
|
234 |
+
<A NAME=97>About a certain question in the law</A><br>
|
235 |
+
<A NAME=98>Argued betwixt the Duke of York and him;</A><br>
|
236 |
+
<A NAME=99>With other vile and ignominious terms:</A><br>
|
237 |
+
<A NAME=100>In confutation of which rude reproach</A><br>
|
238 |
+
<A NAME=101>And in defence of my lord's worthiness,</A><br>
|
239 |
+
<A NAME=102>I crave the benefit of law of arms.</A><br>
|
240 |
+
</blockquote>
|
241 |
+
|
242 |
+
<A NAME=speech27><b>VERNON</b></a>
|
243 |
+
<blockquote>
|
244 |
+
<A NAME=103>And that is my petition, noble lord:</A><br>
|
245 |
+
<A NAME=104>For though he seem with forged quaint conceit</A><br>
|
246 |
+
<A NAME=105>To set a gloss upon his bold intent,</A><br>
|
247 |
+
<A NAME=106>Yet know, my lord, I was provoked by him;</A><br>
|
248 |
+
<A NAME=107>And he first took exceptions at this badge,</A><br>
|
249 |
+
<A NAME=108>Pronouncing that the paleness of this flower</A><br>
|
250 |
+
<A NAME=109>Bewray'd the faintness of my master's heart.</A><br>
|
251 |
+
</blockquote>
|
252 |
+
|
253 |
+
<A NAME=speech28><b>YORK</b></a>
|
254 |
+
<blockquote>
|
255 |
+
<A NAME=110>Will not this malice, Somerset, be left?</A><br>
|
256 |
+
</blockquote>
|
257 |
+
|
258 |
+
<A NAME=speech29><b>SOMERSET</b></a>
|
259 |
+
<blockquote>
|
260 |
+
<A NAME=111>Your private grudge, my Lord of York, will out,</A><br>
|
261 |
+
<A NAME=112>Though ne'er so cunningly you smother it.</A><br>
|
262 |
+
</blockquote>
|
263 |
+
|
264 |
+
<A NAME=speech30><b>KING HENRY VI</b></a>
|
265 |
+
<blockquote>
|
266 |
+
<A NAME=113>Good Lord, what madness rules in brainsick men,</A><br>
|
267 |
+
<A NAME=114>When for so slight and frivolous a cause</A><br>
|
268 |
+
<A NAME=115>Such factious emulations shall arise!</A><br>
|
269 |
+
<A NAME=116>Good cousins both, of York and Somerset,</A><br>
|
270 |
+
<A NAME=117>Quiet yourselves, I pray, and be at peace.</A><br>
|
271 |
+
</blockquote>
|
272 |
+
|
273 |
+
<A NAME=speech31><b>YORK</b></a>
|
274 |
+
<blockquote>
|
275 |
+
<A NAME=118>Let this dissension first be tried by fight,</A><br>
|
276 |
+
<A NAME=119>And then your highness shall command a peace.</A><br>
|
277 |
+
</blockquote>
|
278 |
+
|
279 |
+
<A NAME=speech32><b>SOMERSET</b></a>
|
280 |
+
<blockquote>
|
281 |
+
<A NAME=120>The quarrel toucheth none but us alone;</A><br>
|
282 |
+
<A NAME=121>Betwixt ourselves let us decide it then.</A><br>
|
283 |
+
</blockquote>
|
284 |
+
|
285 |
+
<A NAME=speech33><b>YORK</b></a>
|
286 |
+
<blockquote>
|
287 |
+
<A NAME=122>There is my pledge; accept it, Somerset.</A><br>
|
288 |
+
</blockquote>
|
289 |
+
|
290 |
+
<A NAME=speech34><b>VERNON</b></a>
|
291 |
+
<blockquote>
|
292 |
+
<A NAME=123>Nay, let it rest where it began at first.</A><br>
|
293 |
+
</blockquote>
|
294 |
+
|
295 |
+
<A NAME=speech35><b>BASSET</b></a>
|
296 |
+
<blockquote>
|
297 |
+
<A NAME=124>Confirm it so, mine honourable lord.</A><br>
|
298 |
+
</blockquote>
|
299 |
+
|
300 |
+
<A NAME=speech36><b>GLOUCESTER</b></a>
|
301 |
+
<blockquote>
|
302 |
+
<A NAME=125>Confirm it so! Confounded be your strife!</A><br>
|
303 |
+
<A NAME=126>And perish ye, with your audacious prate!</A><br>
|
304 |
+
<A NAME=127>Presumptuous vassals, are you not ashamed</A><br>
|
305 |
+
<A NAME=128>With this immodest clamorous outrage</A><br>
|
306 |
+
<A NAME=129>To trouble and disturb the king and us?</A><br>
|
307 |
+
<A NAME=130>And you, my lords, methinks you do not well</A><br>
|
308 |
+
<A NAME=131>To bear with their perverse objections;</A><br>
|
309 |
+
<A NAME=132>Much less to take occasion from their mouths</A><br>
|
310 |
+
<A NAME=133>To raise a mutiny betwixt yourselves:</A><br>
|
311 |
+
<A NAME=134>Let me persuade you take a better course.</A><br>
|
312 |
+
</blockquote>
|
313 |
+
|
314 |
+
<A NAME=speech37><b>EXETER</b></a>
|
315 |
+
<blockquote>
|
316 |
+
<A NAME=135>It grieves his highness: good my lords, be friends.</A><br>
|
317 |
+
</blockquote>
|
318 |
+
|
319 |
+
<A NAME=speech38><b>KING HENRY VI</b></a>
|
320 |
+
<blockquote>
|
321 |
+
<A NAME=136>Come hither, you that would be combatants:</A><br>
|
322 |
+
<A NAME=137>Henceforth I charge you, as you love our favour,</A><br>
|
323 |
+
<A NAME=138>Quite to forget this quarrel and the cause.</A><br>
|
324 |
+
<A NAME=139>And you, my lords, remember where we are,</A><br>
|
325 |
+
<A NAME=140>In France, amongst a fickle wavering nation:</A><br>
|
326 |
+
<A NAME=141>If they perceive dissension in our looks</A><br>
|
327 |
+
<A NAME=142>And that within ourselves we disagree,</A><br>
|
328 |
+
<A NAME=143>How will their grudging stomachs be provoked</A><br>
|
329 |
+
<A NAME=144>To wilful disobedience, and rebel!</A><br>
|
330 |
+
<A NAME=145>Beside, what infamy will there arise,</A><br>
|
331 |
+
<A NAME=146>When foreign princes shall be certified</A><br>
|
332 |
+
<A NAME=147>That for a toy, a thing of no regard,</A><br>
|
333 |
+
<A NAME=148>King Henry's peers and chief nobility</A><br>
|
334 |
+
<A NAME=149>Destroy'd themselves, and lost the realm of France!</A><br>
|
335 |
+
<A NAME=150>O, think upon the conquest of my father,</A><br>
|
336 |
+
<A NAME=151>My tender years, and let us not forego</A><br>
|
337 |
+
<A NAME=152>That for a trifle that was bought with blood</A><br>
|
338 |
+
<A NAME=153>Let me be umpire in this doubtful strife.</A><br>
|
339 |
+
<A NAME=154>I see no reason, if I wear this rose,</A><br>
|
340 |
+
<p><i>Putting on a red rose</i></p>
|
341 |
+
<A NAME=155>That any one should therefore be suspicious</A><br>
|
342 |
+
<A NAME=156>I more incline to Somerset than York:</A><br>
|
343 |
+
<A NAME=157>Both are my kinsmen, and I love them both:</A><br>
|
344 |
+
<A NAME=158>As well they may upbraid me with my crown,</A><br>
|
345 |
+
<A NAME=159>Because, forsooth, the king of Scots is crown'd.</A><br>
|
346 |
+
<A NAME=160>But your discretions better can persuade</A><br>
|
347 |
+
<A NAME=161>Than I am able to instruct or teach:</A><br>
|
348 |
+
<A NAME=162>And therefore, as we hither came in peace,</A><br>
|
349 |
+
<A NAME=163>So let us still continue peace and love.</A><br>
|
350 |
+
<A NAME=164>Cousin of York, we institute your grace</A><br>
|
351 |
+
<A NAME=165>To be our regent in these parts of France:</A><br>
|
352 |
+
<A NAME=166>And, good my Lord of Somerset, unite</A><br>
|
353 |
+
<A NAME=167>Your troops of horsemen with his bands of foot;</A><br>
|
354 |
+
<A NAME=168>And, like true subjects, sons of your progenitors,</A><br>
|
355 |
+
<A NAME=169>Go cheerfully together and digest.</A><br>
|
356 |
+
<A NAME=170>Your angry choler on your enemies.</A><br>
|
357 |
+
<A NAME=171>Ourself, my lord protector and the rest</A><br>
|
358 |
+
<A NAME=172>After some respite will return to Calais;</A><br>
|
359 |
+
<A NAME=173>From thence to England; where I hope ere long</A><br>
|
360 |
+
<A NAME=174>To be presented, by your victories,</A><br>
|
361 |
+
<A NAME=175>With Charles, Alencon and that traitorous rout.</A><br>
|
362 |
+
<p><i>Flourish. Exeunt all but YORK, WARWICK, EXETER and VERNON</i></p>
|
363 |
+
</blockquote>
|
364 |
+
|
365 |
+
<A NAME=speech39><b>WARWICK</b></a>
|
366 |
+
<blockquote>
|
367 |
+
<A NAME=176>My Lord of York, I promise you, the king</A><br>
|
368 |
+
<A NAME=177>Prettily, methought, did play the orator.</A><br>
|
369 |
+
</blockquote>
|
370 |
+
|
371 |
+
<A NAME=speech40><b>YORK</b></a>
|
372 |
+
<blockquote>
|
373 |
+
<A NAME=178>And so he did; but yet I like it not,</A><br>
|
374 |
+
<A NAME=179>In that he wears the badge of Somerset.</A><br>
|
375 |
+
</blockquote>
|
376 |
+
|
377 |
+
<A NAME=speech41><b>WARWICK</b></a>
|
378 |
+
<blockquote>
|
379 |
+
<A NAME=180>Tush, that was but his fancy, blame him not;</A><br>
|
380 |
+
<A NAME=181>I dare presume, sweet prince, he thought no harm.</A><br>
|
381 |
+
</blockquote>
|
382 |
+
|
383 |
+
<A NAME=speech42><b>YORK</b></a>
|
384 |
+
<blockquote>
|
385 |
+
<A NAME=182>An if I wist he did,--but let it rest;</A><br>
|
386 |
+
<A NAME=183>Other affairs must now be managed.</A><br>
|
387 |
+
<p><i>Exeunt all but EXETER</i></p>
|
388 |
+
</blockquote>
|
389 |
+
|
390 |
+
<A NAME=speech43><b>EXETER</b></a>
|
391 |
+
<blockquote>
|
392 |
+
<A NAME=184>Well didst thou, Richard, to suppress thy voice;</A><br>
|
393 |
+
<A NAME=185>For, had the passions of thy heart burst out,</A><br>
|
394 |
+
<A NAME=186>I fear we should have seen decipher'd there</A><br>
|
395 |
+
<A NAME=187>More rancorous spite, more furious raging broils,</A><br>
|
396 |
+
<A NAME=188>Than yet can be imagined or supposed.</A><br>
|
397 |
+
<A NAME=189>But howsoe'er, no simple man that sees</A><br>
|
398 |
+
<A NAME=190>This jarring discord of nobility,</A><br>
|
399 |
+
<A NAME=191>This shouldering of each other in the court,</A><br>
|
400 |
+
<A NAME=192>This factious bandying of their favourites,</A><br>
|
401 |
+
<A NAME=193>But that it doth presage some ill event.</A><br>
|
402 |
+
<A NAME=194>'Tis much when sceptres are in children's hands;</A><br>
|
403 |
+
<A NAME=195>But more when envy breeds unkind division;</A><br>
|
404 |
+
<A NAME=196>There comes the rain, there begins confusion.</A><br>
|
405 |
+
<p><i>Exit</i></p>
|
406 |
+
</blockquote>
|
407 |
+
<table width="100%" bgcolor="#CCF6F6">
|
408 |
+
<tr><td class="nav" align="center">
|
409 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
410 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
411 |
+
| Act 4, Scene 1
|
412 |
+
<br>
|
413 |
+
<a href="1henryvi.3.4.html">Previous scene</A>
|
414 |
+
| <a href="1henryvi.4.2.html">Next scene</A>
|
415 |
+
</table>
|
416 |
+
|
417 |
+
</body>
|
418 |
+
</html>
|
419 |
+
|
420 |
+
|
data/1henryvi.4.2.html
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. Before Bourdeaux.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 4, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.4.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.4.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. Before Bourdeaux.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter TALBOT, with trump and drum</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>TALBOT</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Go to the gates of Bourdeaux, trumpeter:</A><br>
|
33 |
+
<A NAME=2>Summon their general unto the wall.</A><br>
|
34 |
+
<p><i>Trumpet sounds. Enter General and others, aloft</i></p>
|
35 |
+
<A NAME=3>English John Talbot, captains, calls you forth,</A><br>
|
36 |
+
<A NAME=4>Servant in arms to Harry King of England;</A><br>
|
37 |
+
<A NAME=5>And thus he would: Open your city gates;</A><br>
|
38 |
+
<A NAME=6>Be humble to us; call my sovereign yours,</A><br>
|
39 |
+
<A NAME=7>And do him homage as obedient subjects;</A><br>
|
40 |
+
<A NAME=8>And I'll withdraw me and my bloody power:</A><br>
|
41 |
+
<A NAME=9>But, if you frown upon this proffer'd peace,</A><br>
|
42 |
+
<A NAME=10>You tempt the fury of my three attendants,</A><br>
|
43 |
+
<A NAME=11>Lean famine, quartering steel, and climbing fire;</A><br>
|
44 |
+
<A NAME=12>Who in a moment even with the earth</A><br>
|
45 |
+
<A NAME=13>Shall lay your stately and air-braving towers,</A><br>
|
46 |
+
<A NAME=14>If you forsake the offer of their love.</A><br>
|
47 |
+
</blockquote>
|
48 |
+
|
49 |
+
<A NAME=speech2><b>General</b></a>
|
50 |
+
<blockquote>
|
51 |
+
<A NAME=15>Thou ominous and fearful owl of death,</A><br>
|
52 |
+
<A NAME=16>Our nation's terror and their bloody scourge!</A><br>
|
53 |
+
<A NAME=17>The period of thy tyranny approacheth.</A><br>
|
54 |
+
<A NAME=18>On us thou canst not enter but by death;</A><br>
|
55 |
+
<A NAME=19>For, I protest, we are well fortified</A><br>
|
56 |
+
<A NAME=20>And strong enough to issue out and fight:</A><br>
|
57 |
+
<A NAME=21>If thou retire, the Dauphin, well appointed,</A><br>
|
58 |
+
<A NAME=22>Stands with the snares of war to tangle thee:</A><br>
|
59 |
+
<A NAME=23>On either hand thee there are squadrons pitch'd,</A><br>
|
60 |
+
<A NAME=24>To wall thee from the liberty of flight;</A><br>
|
61 |
+
<A NAME=25>And no way canst thou turn thee for redress,</A><br>
|
62 |
+
<A NAME=26>But death doth front thee with apparent spoil</A><br>
|
63 |
+
<A NAME=27>And pale destruction meets thee in the face.</A><br>
|
64 |
+
<A NAME=28>Ten thousand French have ta'en the sacrament</A><br>
|
65 |
+
<A NAME=29>To rive their dangerous artillery</A><br>
|
66 |
+
<A NAME=30>Upon no Christian soul but English Talbot.</A><br>
|
67 |
+
<A NAME=31>Lo, there thou stand'st, a breathing valiant man,</A><br>
|
68 |
+
<A NAME=32>Of an invincible unconquer'd spirit!</A><br>
|
69 |
+
<A NAME=33>This is the latest glory of thy praise</A><br>
|
70 |
+
<A NAME=34>That I, thy enemy, due thee withal;</A><br>
|
71 |
+
<A NAME=35>For ere the glass, that now begins to run,</A><br>
|
72 |
+
<A NAME=36>Finish the process of his sandy hour,</A><br>
|
73 |
+
<A NAME=37>These eyes, that see thee now well coloured,</A><br>
|
74 |
+
<A NAME=38>Shall see thee wither'd, bloody, pale and dead.</A><br>
|
75 |
+
<p><i>Drum afar off</i></p>
|
76 |
+
<A NAME=39>Hark! hark! the Dauphin's drum, a warning bell,</A><br>
|
77 |
+
<A NAME=40>Sings heavy music to thy timorous soul;</A><br>
|
78 |
+
<A NAME=41>And mine shall ring thy dire departure out.</A><br>
|
79 |
+
<p><i>Exeunt General, & c</i></p>
|
80 |
+
</blockquote>
|
81 |
+
|
82 |
+
<A NAME=speech3><b>TALBOT</b></a>
|
83 |
+
<blockquote>
|
84 |
+
<A NAME=42>He fables not; I hear the enemy:</A><br>
|
85 |
+
<A NAME=43>Out, some light horsemen, and peruse their wings.</A><br>
|
86 |
+
<A NAME=44>O, negligent and heedless discipline!</A><br>
|
87 |
+
<A NAME=45>How are we park'd and bounded in a pale,</A><br>
|
88 |
+
<A NAME=46>A little herd of England's timorous deer,</A><br>
|
89 |
+
<A NAME=47>Mazed with a yelping kennel of French curs!</A><br>
|
90 |
+
<A NAME=48>If we be English deer, be then in blood;</A><br>
|
91 |
+
<A NAME=49>Not rascal-like, to fall down with a pinch,</A><br>
|
92 |
+
<A NAME=50>But rather, moody-mad and desperate stags,</A><br>
|
93 |
+
<A NAME=51>Turn on the bloody hounds with heads of steel</A><br>
|
94 |
+
<A NAME=52>And make the cowards stand aloof at bay:</A><br>
|
95 |
+
<A NAME=53>Sell every man his life as dear as mine,</A><br>
|
96 |
+
<A NAME=54>And they shall find dear deer of us, my friends.</A><br>
|
97 |
+
<A NAME=55>God and Saint George, Talbot and England's right,</A><br>
|
98 |
+
<A NAME=56>Prosper our colours in this dangerous fight!</A><br>
|
99 |
+
<p><i>Exeunt</i></p>
|
100 |
+
</blockquote>
|
101 |
+
<table width="100%" bgcolor="#CCF6F6">
|
102 |
+
<tr><td class="nav" align="center">
|
103 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
104 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
105 |
+
| Act 4, Scene 2
|
106 |
+
<br>
|
107 |
+
<a href="1henryvi.4.1.html">Previous scene</A>
|
108 |
+
| <a href="1henryvi.4.3.html">Next scene</A>
|
109 |
+
</table>
|
110 |
+
|
111 |
+
</body>
|
112 |
+
</html>
|
113 |
+
|
114 |
+
|
data/1henryvi.4.3.html
ADDED
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. Plains in Gascony.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 4, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.4.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.4.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. Plains in Gascony.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter a Messenger that meets YORK. Enter YORK with trumpet and many Soldiers</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>YORK</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Are not the speedy scouts return'd again,</A><br>
|
33 |
+
<A NAME=2>That dogg'd the mighty army of the Dauphin?</A><br>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>Messenger</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=3>They are return'd, my lord, and give it out</A><br>
|
39 |
+
<A NAME=4>That he is march'd to Bourdeaux with his power,</A><br>
|
40 |
+
<A NAME=5>To fight with Talbot: as he march'd along,</A><br>
|
41 |
+
<A NAME=6>By your espials were discovered</A><br>
|
42 |
+
<A NAME=7>Two mightier troops than that the Dauphin led,</A><br>
|
43 |
+
<A NAME=8>Which join'd with him and made their march for Bourdeaux.</A><br>
|
44 |
+
</blockquote>
|
45 |
+
|
46 |
+
<A NAME=speech3><b>YORK</b></a>
|
47 |
+
<blockquote>
|
48 |
+
<A NAME=9>A plague upon that villain Somerset,</A><br>
|
49 |
+
<A NAME=10>That thus delays my promised supply</A><br>
|
50 |
+
<A NAME=11>Of horsemen, that were levied for this siege!</A><br>
|
51 |
+
<A NAME=12>Renowned Talbot doth expect my aid,</A><br>
|
52 |
+
<A NAME=13>And I am lowted by a traitor villain</A><br>
|
53 |
+
<A NAME=14>And cannot help the noble chevalier:</A><br>
|
54 |
+
<A NAME=15>God comfort him in this necessity!</A><br>
|
55 |
+
<A NAME=16>If he miscarry, farewell wars in France.</A><br>
|
56 |
+
<p><i>Enter Sir William LUCY</i></p>
|
57 |
+
</blockquote>
|
58 |
+
|
59 |
+
<A NAME=speech4><b>LUCY</b></a>
|
60 |
+
<blockquote>
|
61 |
+
<A NAME=17>Thou princely leader of our English strength,</A><br>
|
62 |
+
<A NAME=18>Never so needful on the earth of France,</A><br>
|
63 |
+
<A NAME=19>Spur to the rescue of the noble Talbot,</A><br>
|
64 |
+
<A NAME=20>Who now is girdled with a waist of iron</A><br>
|
65 |
+
<A NAME=21>And hemm'd about with grim destruction:</A><br>
|
66 |
+
<A NAME=22>To Bourdeaux, warlike duke! to Bourdeaux, York!</A><br>
|
67 |
+
<A NAME=23>Else, farewell Talbot, France, and England's honour.</A><br>
|
68 |
+
</blockquote>
|
69 |
+
|
70 |
+
<A NAME=speech5><b>YORK</b></a>
|
71 |
+
<blockquote>
|
72 |
+
<A NAME=24>O God, that Somerset, who in proud heart</A><br>
|
73 |
+
<A NAME=25>Doth stop my cornets, were in Talbot's place!</A><br>
|
74 |
+
<A NAME=26>So should we save a valiant gentleman</A><br>
|
75 |
+
<A NAME=27>By forfeiting a traitor and a coward.</A><br>
|
76 |
+
<A NAME=28>Mad ire and wrathful fury makes me weep,</A><br>
|
77 |
+
<A NAME=29>That thus we die, while remiss traitors sleep.</A><br>
|
78 |
+
</blockquote>
|
79 |
+
|
80 |
+
<A NAME=speech6><b>LUCY</b></a>
|
81 |
+
<blockquote>
|
82 |
+
<A NAME=30>O, send some succor to the distress'd lord!</A><br>
|
83 |
+
</blockquote>
|
84 |
+
|
85 |
+
<A NAME=speech7><b>YORK</b></a>
|
86 |
+
<blockquote>
|
87 |
+
<A NAME=31>He dies, we lose; I break my warlike word;</A><br>
|
88 |
+
<A NAME=32>We mourn, France smiles; we lose, they daily get;</A><br>
|
89 |
+
<A NAME=33>All 'long of this vile traitor Somerset.</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech8><b>LUCY</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=34>Then God take mercy on brave Talbot's soul;</A><br>
|
95 |
+
<A NAME=35>And on his son young John, who two hours since</A><br>
|
96 |
+
<A NAME=36>I met in travel toward his warlike father!</A><br>
|
97 |
+
<A NAME=37>This seven years did not Talbot see his son;</A><br>
|
98 |
+
<A NAME=38>And now they meet where both their lives are done.</A><br>
|
99 |
+
</blockquote>
|
100 |
+
|
101 |
+
<A NAME=speech9><b>YORK</b></a>
|
102 |
+
<blockquote>
|
103 |
+
<A NAME=39>Alas, what joy shall noble Talbot have</A><br>
|
104 |
+
<A NAME=40>To bid his young son welcome to his grave?</A><br>
|
105 |
+
<A NAME=41>Away! vexation almost stops my breath,</A><br>
|
106 |
+
<A NAME=42>That sunder'd friends greet in the hour of death.</A><br>
|
107 |
+
<A NAME=43>Lucy, farewell; no more my fortune can,</A><br>
|
108 |
+
<A NAME=44>But curse the cause I cannot aid the man.</A><br>
|
109 |
+
<A NAME=45>Maine, Blois, Poictiers, and Tours, are won away,</A><br>
|
110 |
+
<A NAME=46>'Long all of Somerset and his delay.</A><br>
|
111 |
+
<p><i>Exit, with his soldiers</i></p>
|
112 |
+
</blockquote>
|
113 |
+
|
114 |
+
<A NAME=speech10><b>LUCY</b></a>
|
115 |
+
<blockquote>
|
116 |
+
<A NAME=47>Thus, while the vulture of sedition</A><br>
|
117 |
+
<A NAME=48>Feeds in the bosom of such great commanders,</A><br>
|
118 |
+
<A NAME=49>Sleeping neglection doth betray to loss</A><br>
|
119 |
+
<A NAME=50>The conquest of our scarce cold conqueror,</A><br>
|
120 |
+
<A NAME=51>That ever living man of memory,</A><br>
|
121 |
+
<A NAME=52>Henry the Fifth: whiles they each other cross,</A><br>
|
122 |
+
<A NAME=53>Lives, honours, lands and all hurry to loss.</A><br>
|
123 |
+
<p><i>Exit</i></p>
|
124 |
+
</blockquote>
|
125 |
+
<table width="100%" bgcolor="#CCF6F6">
|
126 |
+
<tr><td class="nav" align="center">
|
127 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
128 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
129 |
+
| Act 4, Scene 3
|
130 |
+
<br>
|
131 |
+
<a href="1henryvi.4.2.html">Previous scene</A>
|
132 |
+
| <a href="1henryvi.4.4.html">Next scene</A>
|
133 |
+
</table>
|
134 |
+
|
135 |
+
</body>
|
136 |
+
</html>
|
137 |
+
|
138 |
+
|
data/1henryvi.4.4.html
ADDED
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. Other plains in Gascony.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 4, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.4.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.4.5.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. Other plains in Gascony.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter SOMERSET, with his army; a Captain of TALBOT's with him</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>SOMERSET</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>It is too late; I cannot send them now:</A><br>
|
33 |
+
<A NAME=2>This expedition was by York and Talbot</A><br>
|
34 |
+
<A NAME=3>Too rashly plotted: all our general force</A><br>
|
35 |
+
<A NAME=4>Might with a sally of the very town</A><br>
|
36 |
+
<A NAME=5>Be buckled with: the over-daring Talbot</A><br>
|
37 |
+
<A NAME=6>Hath sullied all his gloss of former honour</A><br>
|
38 |
+
<A NAME=7>By this unheedful, desperate, wild adventure:</A><br>
|
39 |
+
<A NAME=8>York set him on to fight and die in shame,</A><br>
|
40 |
+
<A NAME=9>That, Talbot dead, great York might bear the name.</A><br>
|
41 |
+
</blockquote>
|
42 |
+
|
43 |
+
<A NAME=speech2><b>Captain</b></a>
|
44 |
+
<blockquote>
|
45 |
+
<A NAME=10>Here is Sir William Lucy, who with me</A><br>
|
46 |
+
<A NAME=11>Set from our o'ermatch'd forces forth for aid.</A><br>
|
47 |
+
<p><i>Enter Sir William LUCY</i></p>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech3><b>SOMERSET</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=12>How now, Sir William! whither were you sent?</A><br>
|
53 |
+
</blockquote>
|
54 |
+
|
55 |
+
<A NAME=speech4><b>LUCY</b></a>
|
56 |
+
<blockquote>
|
57 |
+
<A NAME=13>Whither, my lord? from bought and sold Lord Talbot;</A><br>
|
58 |
+
<A NAME=14>Who, ring'd about with bold adversity,</A><br>
|
59 |
+
<A NAME=15>Cries out for noble York and Somerset,</A><br>
|
60 |
+
<A NAME=16>To beat assailing death from his weak legions:</A><br>
|
61 |
+
<A NAME=17>And whiles the honourable captain there</A><br>
|
62 |
+
<A NAME=18>Drops bloody sweat from his war-wearied limbs,</A><br>
|
63 |
+
<A NAME=19>And, in advantage lingering, looks for rescue,</A><br>
|
64 |
+
<A NAME=20>You, his false hopes, the trust of England's honour,</A><br>
|
65 |
+
<A NAME=21>Keep off aloof with worthless emulation.</A><br>
|
66 |
+
<A NAME=22>Let not your private discord keep away</A><br>
|
67 |
+
<A NAME=23>The levied succors that should lend him aid,</A><br>
|
68 |
+
<A NAME=24>While he, renowned noble gentleman,</A><br>
|
69 |
+
<A NAME=25>Yields up his life unto a world of odds:</A><br>
|
70 |
+
<A NAME=26>Orleans the Bastard, Charles, Burgundy,</A><br>
|
71 |
+
<A NAME=27>Alencon, Reignier, compass him about,</A><br>
|
72 |
+
<A NAME=28>And Talbot perisheth by your default.</A><br>
|
73 |
+
</blockquote>
|
74 |
+
|
75 |
+
<A NAME=speech5><b>SOMERSET</b></a>
|
76 |
+
<blockquote>
|
77 |
+
<A NAME=29>York set him on; York should have sent him aid.</A><br>
|
78 |
+
</blockquote>
|
79 |
+
|
80 |
+
<A NAME=speech6><b>LUCY</b></a>
|
81 |
+
<blockquote>
|
82 |
+
<A NAME=30>And York as fast upon your grace exclaims;</A><br>
|
83 |
+
<A NAME=31>Swearing that you withhold his levied host,</A><br>
|
84 |
+
<A NAME=32>Collected for this expedition.</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech7><b>SOMERSET</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=33>York lies; he might have sent and had the horse;</A><br>
|
90 |
+
<A NAME=34>I owe him little duty, and less love;</A><br>
|
91 |
+
<A NAME=35>And take foul scorn to fawn on him by sending.</A><br>
|
92 |
+
</blockquote>
|
93 |
+
|
94 |
+
<A NAME=speech8><b>LUCY</b></a>
|
95 |
+
<blockquote>
|
96 |
+
<A NAME=36>The fraud of England, not the force of France,</A><br>
|
97 |
+
<A NAME=37>Hath now entrapp'd the noble-minded Talbot:</A><br>
|
98 |
+
<A NAME=38>Never to England shall he bear his life;</A><br>
|
99 |
+
<A NAME=39>But dies, betray'd to fortune by your strife.</A><br>
|
100 |
+
</blockquote>
|
101 |
+
|
102 |
+
<A NAME=speech9><b>SOMERSET</b></a>
|
103 |
+
<blockquote>
|
104 |
+
<A NAME=40>Come, go; I will dispatch the horsemen straight:</A><br>
|
105 |
+
<A NAME=41>Within six hours they will be at his aid.</A><br>
|
106 |
+
</blockquote>
|
107 |
+
|
108 |
+
<A NAME=speech10><b>LUCY</b></a>
|
109 |
+
<blockquote>
|
110 |
+
<A NAME=42>Too late comes rescue: he is ta'en or slain;</A><br>
|
111 |
+
<A NAME=43>For fly he could not, if he would have fled;</A><br>
|
112 |
+
<A NAME=44>And fly would Talbot never, though he might.</A><br>
|
113 |
+
</blockquote>
|
114 |
+
|
115 |
+
<A NAME=speech11><b>SOMERSET</b></a>
|
116 |
+
<blockquote>
|
117 |
+
<A NAME=45>If he be dead, brave Talbot, then adieu!</A><br>
|
118 |
+
</blockquote>
|
119 |
+
|
120 |
+
<A NAME=speech12><b>LUCY</b></a>
|
121 |
+
<blockquote>
|
122 |
+
<A NAME=46>His fame lives in the world, his shame in you.</A><br>
|
123 |
+
<p><i>Exeunt</i></p>
|
124 |
+
</blockquote>
|
125 |
+
<table width="100%" bgcolor="#CCF6F6">
|
126 |
+
<tr><td class="nav" align="center">
|
127 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
128 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
129 |
+
| Act 4, Scene 4
|
130 |
+
<br>
|
131 |
+
<a href="1henryvi.4.3.html">Previous scene</A>
|
132 |
+
| <a href="1henryvi.4.5.html">Next scene</A>
|
133 |
+
</table>
|
134 |
+
|
135 |
+
</body>
|
136 |
+
</html>
|
137 |
+
|
138 |
+
|
data/1henryvi.4.5.html
ADDED
@@ -0,0 +1,174 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE V. The English camp near Bourdeaux.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 4, Scene 5
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.4.4.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.4.6.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE V. The English camp near Bourdeaux.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter TALBOT and JOHN his son</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>TALBOT</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>O young John Talbot! I did send for thee</A><br>
|
33 |
+
<A NAME=2>To tutor thee in stratagems of war,</A><br>
|
34 |
+
<A NAME=3>That Talbot's name might be in thee revived</A><br>
|
35 |
+
<A NAME=4>When sapless age and weak unable limbs</A><br>
|
36 |
+
<A NAME=5>Should bring thy father to his drooping chair.</A><br>
|
37 |
+
<A NAME=6>But, O malignant and ill-boding stars!</A><br>
|
38 |
+
<A NAME=7>Now thou art come unto a feast of death,</A><br>
|
39 |
+
<A NAME=8>A terrible and unavoided danger:</A><br>
|
40 |
+
<A NAME=9>Therefore, dear boy, mount on my swiftest horse;</A><br>
|
41 |
+
<A NAME=10>And I'll direct thee how thou shalt escape</A><br>
|
42 |
+
<A NAME=11>By sudden flight: come, dally not, be gone.</A><br>
|
43 |
+
</blockquote>
|
44 |
+
|
45 |
+
<A NAME=speech2><b>JOHN TALBOT</b></a>
|
46 |
+
<blockquote>
|
47 |
+
<A NAME=12>Is my name Talbot? and am I your son?</A><br>
|
48 |
+
<A NAME=13>And shall I fly? O if you love my mother,</A><br>
|
49 |
+
<A NAME=14>Dishonour not her honourable name,</A><br>
|
50 |
+
<A NAME=15>To make a bastard and a slave of me!</A><br>
|
51 |
+
<A NAME=16>The world will say, he is not Talbot's blood,</A><br>
|
52 |
+
<A NAME=17>That basely fled when noble Talbot stood.</A><br>
|
53 |
+
</blockquote>
|
54 |
+
|
55 |
+
<A NAME=speech3><b>TALBOT</b></a>
|
56 |
+
<blockquote>
|
57 |
+
<A NAME=18>Fly, to revenge my death, if I be slain.</A><br>
|
58 |
+
</blockquote>
|
59 |
+
|
60 |
+
<A NAME=speech4><b>JOHN TALBOT</b></a>
|
61 |
+
<blockquote>
|
62 |
+
<A NAME=19>He that flies so will ne'er return again.</A><br>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech5><b>TALBOT</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=20>If we both stay, we both are sure to die.</A><br>
|
68 |
+
</blockquote>
|
69 |
+
|
70 |
+
<A NAME=speech6><b>JOHN TALBOT</b></a>
|
71 |
+
<blockquote>
|
72 |
+
<A NAME=21>Then let me stay; and, father, do you fly:</A><br>
|
73 |
+
<A NAME=22>Your loss is great, so your regard should be;</A><br>
|
74 |
+
<A NAME=23>My worth unknown, no loss is known in me.</A><br>
|
75 |
+
<A NAME=24>Upon my death the French can little boast;</A><br>
|
76 |
+
<A NAME=25>In yours they will, in you all hopes are lost.</A><br>
|
77 |
+
<A NAME=26>Flight cannot stain the honour you have won;</A><br>
|
78 |
+
<A NAME=27>But mine it will, that no exploit have done:</A><br>
|
79 |
+
<A NAME=28>You fled for vantage, everyone will swear;</A><br>
|
80 |
+
<A NAME=29>But, if I bow, they'll say it was for fear.</A><br>
|
81 |
+
<A NAME=30>There is no hope that ever I will stay,</A><br>
|
82 |
+
<A NAME=31>If the first hour I shrink and run away.</A><br>
|
83 |
+
<A NAME=32>Here on my knee I beg mortality,</A><br>
|
84 |
+
<A NAME=33>Rather than life preserved with infamy.</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech7><b>TALBOT</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=34>Shall all thy mother's hopes lie in one tomb?</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech8><b>JOHN TALBOT</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=35>Ay, rather than I'll shame my mother's womb.</A><br>
|
95 |
+
</blockquote>
|
96 |
+
|
97 |
+
<A NAME=speech9><b>TALBOT</b></a>
|
98 |
+
<blockquote>
|
99 |
+
<A NAME=36>Upon my blessing, I command thee go.</A><br>
|
100 |
+
</blockquote>
|
101 |
+
|
102 |
+
<A NAME=speech10><b>JOHN TALBOT</b></a>
|
103 |
+
<blockquote>
|
104 |
+
<A NAME=37>To fight I will, but not to fly the foe.</A><br>
|
105 |
+
</blockquote>
|
106 |
+
|
107 |
+
<A NAME=speech11><b>TALBOT</b></a>
|
108 |
+
<blockquote>
|
109 |
+
<A NAME=38>Part of thy father may be saved in thee.</A><br>
|
110 |
+
</blockquote>
|
111 |
+
|
112 |
+
<A NAME=speech12><b>JOHN TALBOT</b></a>
|
113 |
+
<blockquote>
|
114 |
+
<A NAME=39>No part of him but will be shame in me.</A><br>
|
115 |
+
</blockquote>
|
116 |
+
|
117 |
+
<A NAME=speech13><b>TALBOT</b></a>
|
118 |
+
<blockquote>
|
119 |
+
<A NAME=40>Thou never hadst renown, nor canst not lose it.</A><br>
|
120 |
+
</blockquote>
|
121 |
+
|
122 |
+
<A NAME=speech14><b>JOHN TALBOT</b></a>
|
123 |
+
<blockquote>
|
124 |
+
<A NAME=41>Yes, your renowned name: shall flight abuse it?</A><br>
|
125 |
+
</blockquote>
|
126 |
+
|
127 |
+
<A NAME=speech15><b>TALBOT</b></a>
|
128 |
+
<blockquote>
|
129 |
+
<A NAME=42>Thy father's charge shall clear thee from that stain.</A><br>
|
130 |
+
</blockquote>
|
131 |
+
|
132 |
+
<A NAME=speech16><b>JOHN TALBOT</b></a>
|
133 |
+
<blockquote>
|
134 |
+
<A NAME=43>You cannot witness for me, being slain.</A><br>
|
135 |
+
<A NAME=44>If death be so apparent, then both fly.</A><br>
|
136 |
+
</blockquote>
|
137 |
+
|
138 |
+
<A NAME=speech17><b>TALBOT</b></a>
|
139 |
+
<blockquote>
|
140 |
+
<A NAME=45>And leave my followers here to fight and die?</A><br>
|
141 |
+
<A NAME=46>My age was never tainted with such shame.</A><br>
|
142 |
+
</blockquote>
|
143 |
+
|
144 |
+
<A NAME=speech18><b>JOHN TALBOT</b></a>
|
145 |
+
<blockquote>
|
146 |
+
<A NAME=47>And shall my youth be guilty of such blame?</A><br>
|
147 |
+
<A NAME=48>No more can I be sever'd from your side,</A><br>
|
148 |
+
<A NAME=49>Than can yourself yourself in twain divide:</A><br>
|
149 |
+
<A NAME=50>Stay, go, do what you will, the like do I;</A><br>
|
150 |
+
<A NAME=51>For live I will not, if my father die.</A><br>
|
151 |
+
</blockquote>
|
152 |
+
|
153 |
+
<A NAME=speech19><b>TALBOT</b></a>
|
154 |
+
<blockquote>
|
155 |
+
<A NAME=52>Then here I take my leave of thee, fair son,</A><br>
|
156 |
+
<A NAME=53>Born to eclipse thy life this afternoon.</A><br>
|
157 |
+
<A NAME=54>Come, side by side together live and die.</A><br>
|
158 |
+
<A NAME=55>And soul with soul from France to heaven fly.</A><br>
|
159 |
+
<p><i>Exeunt</i></p>
|
160 |
+
</blockquote>
|
161 |
+
<table width="100%" bgcolor="#CCF6F6">
|
162 |
+
<tr><td class="nav" align="center">
|
163 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
164 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
165 |
+
| Act 4, Scene 5
|
166 |
+
<br>
|
167 |
+
<a href="1henryvi.4.4.html">Previous scene</A>
|
168 |
+
| <a href="1henryvi.4.6.html">Next scene</A>
|
169 |
+
</table>
|
170 |
+
|
171 |
+
</body>
|
172 |
+
</html>
|
173 |
+
|
174 |
+
|
data/1henryvi.4.6.html
ADDED
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE VI. A field of battle.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 4, Scene 6
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.4.5.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.4.7.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE VI. A field of battle.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Alarum: excursions, wherein JOHN TALBOT is hemmed about, and TALBOT rescues him</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>TALBOT</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Saint George and victory! fight, soldiers, fight.</A><br>
|
33 |
+
<A NAME=2>The regent hath with Talbot broke his word</A><br>
|
34 |
+
<A NAME=3>And left us to the rage of France his sword.</A><br>
|
35 |
+
<A NAME=4>Where is John Talbot? Pause, and take thy breath;</A><br>
|
36 |
+
<A NAME=5>I gave thee life and rescued thee from death.</A><br>
|
37 |
+
</blockquote>
|
38 |
+
|
39 |
+
<A NAME=speech2><b>JOHN TALBOT</b></a>
|
40 |
+
<blockquote>
|
41 |
+
<A NAME=6>O, twice my father, twice am I thy son!</A><br>
|
42 |
+
<A NAME=7>The life thou gavest me first was lost and done,</A><br>
|
43 |
+
<A NAME=8>Till with thy warlike sword, despite of late,</A><br>
|
44 |
+
<A NAME=9>To my determined time thou gavest new date.</A><br>
|
45 |
+
</blockquote>
|
46 |
+
|
47 |
+
<A NAME=speech3><b>TALBOT</b></a>
|
48 |
+
<blockquote>
|
49 |
+
<A NAME=10>When from the Dauphin's crest thy sword struck fire,</A><br>
|
50 |
+
<A NAME=11>It warm'd thy father's heart with proud desire</A><br>
|
51 |
+
<A NAME=12>Of bold-faced victory. Then leaden age,</A><br>
|
52 |
+
<A NAME=13>Quicken'd with youthful spleen and warlike rage,</A><br>
|
53 |
+
<A NAME=14>Beat down Alencon, Orleans, Burgundy,</A><br>
|
54 |
+
<A NAME=15>And from the pride of Gallia rescued thee.</A><br>
|
55 |
+
<A NAME=16>The ireful bastard Orleans, that drew blood</A><br>
|
56 |
+
<A NAME=17>From thee, my boy, and had the maidenhood</A><br>
|
57 |
+
<A NAME=18>Of thy first fight, I soon encountered,</A><br>
|
58 |
+
<A NAME=19>And interchanging blows I quickly shed</A><br>
|
59 |
+
<A NAME=20>Some of his bastard blood; and in disgrace</A><br>
|
60 |
+
<A NAME=21>Bespoke him thus; 'Contaminated, base</A><br>
|
61 |
+
<A NAME=22>And misbegotten blood I spill of thine,</A><br>
|
62 |
+
<A NAME=23>Mean and right poor, for that pure blood of mine</A><br>
|
63 |
+
<A NAME=24>Which thou didst force from Talbot, my brave boy:'</A><br>
|
64 |
+
<A NAME=25>Here, purposing the Bastard to destroy,</A><br>
|
65 |
+
<A NAME=26>Came in strong rescue. Speak, thy father's care,</A><br>
|
66 |
+
<A NAME=27>Art thou not weary, John? how dost thou fare?</A><br>
|
67 |
+
<A NAME=28>Wilt thou yet leave the battle, boy, and fly,</A><br>
|
68 |
+
<A NAME=29>Now thou art seal'd the son of chivalry?</A><br>
|
69 |
+
<A NAME=30>Fly, to revenge my death when I am dead:</A><br>
|
70 |
+
<A NAME=31>The help of one stands me in little stead.</A><br>
|
71 |
+
<A NAME=32>O, too much folly is it, well I wot,</A><br>
|
72 |
+
<A NAME=33>To hazard all our lives in one small boat!</A><br>
|
73 |
+
<A NAME=34>If I to-day die not with Frenchmen's rage,</A><br>
|
74 |
+
<A NAME=35>To-morrow I shall die with mickle age:</A><br>
|
75 |
+
<A NAME=36>By me they nothing gain an if I stay;</A><br>
|
76 |
+
<A NAME=37>'Tis but the shortening of my life one day:</A><br>
|
77 |
+
<A NAME=38>In thee thy mother dies, our household's name,</A><br>
|
78 |
+
<A NAME=39>My death's revenge, thy youth, and England's fame:</A><br>
|
79 |
+
<A NAME=40>All these and more we hazard by thy stay;</A><br>
|
80 |
+
<A NAME=41>All these are saved if thou wilt fly away.</A><br>
|
81 |
+
</blockquote>
|
82 |
+
|
83 |
+
<A NAME=speech4><b>JOHN TALBOT</b></a>
|
84 |
+
<blockquote>
|
85 |
+
<A NAME=42>The sword of Orleans hath not made me smart;</A><br>
|
86 |
+
<A NAME=43>These words of yours draw life-blood from my heart:</A><br>
|
87 |
+
<A NAME=44>On that advantage, bought with such a shame,</A><br>
|
88 |
+
<A NAME=45>To save a paltry life and slay bright fame,</A><br>
|
89 |
+
<A NAME=46>Before young Talbot from old Talbot fly,</A><br>
|
90 |
+
<A NAME=47>The coward horse that bears me fail and die!</A><br>
|
91 |
+
<A NAME=48>And like me to the peasant boys of France,</A><br>
|
92 |
+
<A NAME=49>To be shame's scorn and subject of mischance!</A><br>
|
93 |
+
<A NAME=50>Surely, by all the glory you have won,</A><br>
|
94 |
+
<A NAME=51>An if I fly, I am not Talbot's son:</A><br>
|
95 |
+
<A NAME=52>Then talk no more of flight, it is no boot;</A><br>
|
96 |
+
<A NAME=53>If son to Talbot, die at Talbot's foot.</A><br>
|
97 |
+
</blockquote>
|
98 |
+
|
99 |
+
<A NAME=speech5><b>TALBOT</b></a>
|
100 |
+
<blockquote>
|
101 |
+
<A NAME=54>Then follow thou thy desperate sire of Crete,</A><br>
|
102 |
+
<A NAME=55>Thou Icarus; thy life to me is sweet:</A><br>
|
103 |
+
<A NAME=56>If thou wilt fight, fight by thy father's side;</A><br>
|
104 |
+
<A NAME=57>And, commendable proved, let's die in pride.</A><br>
|
105 |
+
<p><i>Exeunt</i></p>
|
106 |
+
</blockquote>
|
107 |
+
<table width="100%" bgcolor="#CCF6F6">
|
108 |
+
<tr><td class="nav" align="center">
|
109 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
110 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
111 |
+
| Act 4, Scene 6
|
112 |
+
<br>
|
113 |
+
<a href="1henryvi.4.5.html">Previous scene</A>
|
114 |
+
| <a href="1henryvi.4.7.html">Next scene</A>
|
115 |
+
</table>
|
116 |
+
|
117 |
+
</body>
|
118 |
+
</html>
|
119 |
+
|
120 |
+
|
data/1henryvi.4.7.html
ADDED
@@ -0,0 +1,222 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE VII. Another part of the field.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 4, Scene 7
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.4.6.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.5.1.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE VII. Another part of the field.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Alarum: excursions. Enter TALBOT led by a Servant</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>TALBOT</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Where is my other life? mine own is gone;</A><br>
|
33 |
+
<A NAME=2>O, where's young Talbot? where is valiant John?</A><br>
|
34 |
+
<A NAME=3>Triumphant death, smear'd with captivity,</A><br>
|
35 |
+
<A NAME=4>Young Talbot's valour makes me smile at thee:</A><br>
|
36 |
+
<A NAME=5>When he perceived me shrink and on my knee,</A><br>
|
37 |
+
<A NAME=6>His bloody sword he brandish'd over me,</A><br>
|
38 |
+
<A NAME=7>And, like a hungry lion, did commence</A><br>
|
39 |
+
<A NAME=8>Rough deeds of rage and stern impatience;</A><br>
|
40 |
+
<A NAME=9>But when my angry guardant stood alone,</A><br>
|
41 |
+
<A NAME=10>Tendering my ruin and assail'd of none,</A><br>
|
42 |
+
<A NAME=11>Dizzy-eyed fury and great rage of heart</A><br>
|
43 |
+
<A NAME=12>Suddenly made him from my side to start</A><br>
|
44 |
+
<A NAME=13>Into the clustering battle of the French;</A><br>
|
45 |
+
<A NAME=14>And in that sea of blood my boy did drench</A><br>
|
46 |
+
<A NAME=15>His over-mounting spirit, and there died,</A><br>
|
47 |
+
<A NAME=16>My Icarus, my blossom, in his pride.</A><br>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech2><b>Servant</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=17>O, my dear lord, lo, where your son is borne!</A><br>
|
53 |
+
<p><i>Enter Soldiers, with the body of JOHN TALBOT</i></p>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech3><b>TALBOT</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=18>Thou antic death, which laugh'st us here to scorn,</A><br>
|
59 |
+
<A NAME=19>Anon, from thy insulting tyranny,</A><br>
|
60 |
+
<A NAME=20>Coupled in bonds of perpetuity,</A><br>
|
61 |
+
<A NAME=21>Two Talbots, winged through the lither sky,</A><br>
|
62 |
+
<A NAME=22>In thy despite shall 'scape mortality.</A><br>
|
63 |
+
<A NAME=23>O, thou, whose wounds become hard-favour'd death,</A><br>
|
64 |
+
<A NAME=24>Speak to thy father ere thou yield thy breath!</A><br>
|
65 |
+
<A NAME=25>Brave death by speaking, whether he will or no;</A><br>
|
66 |
+
<A NAME=26>Imagine him a Frenchman and thy foe.</A><br>
|
67 |
+
<A NAME=27>Poor boy! he smiles, methinks, as who should say,</A><br>
|
68 |
+
<A NAME=28>Had death been French, then death had died to-day.</A><br>
|
69 |
+
<A NAME=29>Come, come and lay him in his father's arms:</A><br>
|
70 |
+
<A NAME=30>My spirit can no longer bear these harms.</A><br>
|
71 |
+
<A NAME=31>Soldiers, adieu! I have what I would have,</A><br>
|
72 |
+
<A NAME=32>Now my old arms are young John Talbot's grave.</A><br>
|
73 |
+
<p><i>Dies</i></p>
|
74 |
+
<p><i>Enter CHARLES, ALENCON, BURGUNDY, BASTARD OF ORLEANS, JOAN LA PUCELLE, and forces</i></p>
|
75 |
+
</blockquote>
|
76 |
+
|
77 |
+
<A NAME=speech4><b>CHARLES</b></a>
|
78 |
+
<blockquote>
|
79 |
+
<A NAME=33>Had York and Somerset brought rescue in,</A><br>
|
80 |
+
<A NAME=34>We should have found a bloody day of this.</A><br>
|
81 |
+
</blockquote>
|
82 |
+
|
83 |
+
<A NAME=speech5><b>BASTARD OF ORLEANS</b></a>
|
84 |
+
<blockquote>
|
85 |
+
<A NAME=35>How the young whelp of Talbot's, raging-wood,</A><br>
|
86 |
+
<A NAME=36>Did flesh his puny sword in Frenchmen's blood!</A><br>
|
87 |
+
</blockquote>
|
88 |
+
|
89 |
+
<A NAME=speech6><b>JOAN LA PUCELLE</b></a>
|
90 |
+
<blockquote>
|
91 |
+
<A NAME=37>Once I encounter'd him, and thus I said:</A><br>
|
92 |
+
<A NAME=38>'Thou maiden youth, be vanquish'd by a maid:'</A><br>
|
93 |
+
<A NAME=39>But, with a proud majestical high scorn,</A><br>
|
94 |
+
<A NAME=40>He answer'd thus: 'Young Talbot was not born</A><br>
|
95 |
+
<A NAME=41>To be the pillage of a giglot wench:'</A><br>
|
96 |
+
<A NAME=42>So, rushing in the bowels of the French,</A><br>
|
97 |
+
<A NAME=43>He left me proudly, as unworthy fight.</A><br>
|
98 |
+
</blockquote>
|
99 |
+
|
100 |
+
<A NAME=speech7><b>BURGUNDY</b></a>
|
101 |
+
<blockquote>
|
102 |
+
<A NAME=44>Doubtless he would have made a noble knight;</A><br>
|
103 |
+
<A NAME=45>See, where he lies inhearsed in the arms</A><br>
|
104 |
+
<A NAME=46>Of the most bloody nurser of his harms!</A><br>
|
105 |
+
</blockquote>
|
106 |
+
|
107 |
+
<A NAME=speech8><b>BASTARD OF ORLEANS</b></a>
|
108 |
+
<blockquote>
|
109 |
+
<A NAME=47>Hew them to pieces, hack their bones asunder</A><br>
|
110 |
+
<A NAME=48>Whose life was England's glory, Gallia's wonder.</A><br>
|
111 |
+
</blockquote>
|
112 |
+
|
113 |
+
<A NAME=speech9><b>CHARLES</b></a>
|
114 |
+
<blockquote>
|
115 |
+
<A NAME=49>O, no, forbear! for that which we have fled</A><br>
|
116 |
+
<A NAME=50>During the life, let us not wrong it dead.</A><br>
|
117 |
+
<p><i>Enter Sir William LUCY, attended; Herald of the French preceding</i></p>
|
118 |
+
</blockquote>
|
119 |
+
|
120 |
+
<A NAME=speech10><b>LUCY</b></a>
|
121 |
+
<blockquote>
|
122 |
+
<A NAME=51>Herald, conduct me to the Dauphin's tent,</A><br>
|
123 |
+
<A NAME=52>To know who hath obtained the glory of the day.</A><br>
|
124 |
+
</blockquote>
|
125 |
+
|
126 |
+
<A NAME=speech11><b>CHARLES</b></a>
|
127 |
+
<blockquote>
|
128 |
+
<A NAME=53>On what submissive message art thou sent?</A><br>
|
129 |
+
</blockquote>
|
130 |
+
|
131 |
+
<A NAME=speech12><b>LUCY</b></a>
|
132 |
+
<blockquote>
|
133 |
+
<A NAME=54>Submission, Dauphin! 'tis a mere French word;</A><br>
|
134 |
+
<A NAME=55>We English warriors wot not what it means.</A><br>
|
135 |
+
<A NAME=56>I come to know what prisoners thou hast ta'en</A><br>
|
136 |
+
<A NAME=57>And to survey the bodies of the dead.</A><br>
|
137 |
+
</blockquote>
|
138 |
+
|
139 |
+
<A NAME=speech13><b>CHARLES</b></a>
|
140 |
+
<blockquote>
|
141 |
+
<A NAME=58>For prisoners ask'st thou? hell our prison is.</A><br>
|
142 |
+
<A NAME=59>But tell me whom thou seek'st.</A><br>
|
143 |
+
</blockquote>
|
144 |
+
|
145 |
+
<A NAME=speech14><b>LUCY</b></a>
|
146 |
+
<blockquote>
|
147 |
+
<A NAME=60>But where's the great Alcides of the field,</A><br>
|
148 |
+
<A NAME=61>Valiant Lord Talbot, Earl of Shrewsbury,</A><br>
|
149 |
+
<A NAME=62>Created, for his rare success in arms,</A><br>
|
150 |
+
<A NAME=63>Great Earl of Washford, Waterford and Valence;</A><br>
|
151 |
+
<A NAME=64>Lord Talbot of Goodrig and Urchinfield,</A><br>
|
152 |
+
<A NAME=65>Lord Strange of Blackmere, Lord Verdun of Alton,</A><br>
|
153 |
+
<A NAME=66>Lord Cromwell of Wingfield, Lord Furnival of Sheffield,</A><br>
|
154 |
+
<A NAME=67>The thrice-victorious Lord of Falconbridge;</A><br>
|
155 |
+
<A NAME=68>Knight of the noble order of Saint George,</A><br>
|
156 |
+
<A NAME=69>Worthy Saint Michael and the Golden Fleece;</A><br>
|
157 |
+
<A NAME=70>Great marshal to Henry the Sixth</A><br>
|
158 |
+
<A NAME=71>Of all his wars within the realm of France?</A><br>
|
159 |
+
</blockquote>
|
160 |
+
|
161 |
+
<A NAME=speech15><b>JOAN LA PUCELLE</b></a>
|
162 |
+
<blockquote>
|
163 |
+
<A NAME=72>Here is a silly stately style indeed!</A><br>
|
164 |
+
<A NAME=73>The Turk, that two and fifty kingdoms hath,</A><br>
|
165 |
+
<A NAME=74>Writes not so tedious a style as this.</A><br>
|
166 |
+
<A NAME=75>Him that thou magnifiest with all these titles</A><br>
|
167 |
+
<A NAME=76>Stinking and fly-blown lies here at our feet.</A><br>
|
168 |
+
</blockquote>
|
169 |
+
|
170 |
+
<A NAME=speech16><b>LUCY</b></a>
|
171 |
+
<blockquote>
|
172 |
+
<A NAME=77>Is Talbot slain, the Frenchmen's only scourge,</A><br>
|
173 |
+
<A NAME=78>Your kingdom's terror and black Nemesis?</A><br>
|
174 |
+
<A NAME=79>O, were mine eyeballs into bullets turn'd,</A><br>
|
175 |
+
<A NAME=80>That I in rage might shoot them at your faces!</A><br>
|
176 |
+
<A NAME=81>O, that I could but call these dead to life!</A><br>
|
177 |
+
<A NAME=82>It were enough to fright the realm of France:</A><br>
|
178 |
+
<A NAME=83>Were but his picture left amongst you here,</A><br>
|
179 |
+
<A NAME=84>It would amaze the proudest of you all.</A><br>
|
180 |
+
<A NAME=85>Give me their bodies, that I may bear them hence</A><br>
|
181 |
+
<A NAME=86>And give them burial as beseems their worth.</A><br>
|
182 |
+
</blockquote>
|
183 |
+
|
184 |
+
<A NAME=speech17><b>JOAN LA PUCELLE</b></a>
|
185 |
+
<blockquote>
|
186 |
+
<A NAME=87>I think this upstart is old Talbot's ghost,</A><br>
|
187 |
+
<A NAME=88>He speaks with such a proud commanding spirit.</A><br>
|
188 |
+
<A NAME=89>For God's sake let him have 'em; to keep them here,</A><br>
|
189 |
+
<A NAME=90>They would but stink, and putrefy the air.</A><br>
|
190 |
+
</blockquote>
|
191 |
+
|
192 |
+
<A NAME=speech18><b>CHARLES</b></a>
|
193 |
+
<blockquote>
|
194 |
+
<A NAME=91>Go, take their bodies hence.</A><br>
|
195 |
+
</blockquote>
|
196 |
+
|
197 |
+
<A NAME=speech19><b>LUCY</b></a>
|
198 |
+
<blockquote>
|
199 |
+
<A NAME=92>I'll bear them hence; but from their ashes shall be rear'd</A><br>
|
200 |
+
<A NAME=93>A phoenix that shall make all France afeard.</A><br>
|
201 |
+
</blockquote>
|
202 |
+
|
203 |
+
<A NAME=speech20><b>CHARLES</b></a>
|
204 |
+
<blockquote>
|
205 |
+
<A NAME=94>So we be rid of them, do with 'em what thou wilt.</A><br>
|
206 |
+
<A NAME=95>And now to Paris, in this conquering vein:</A><br>
|
207 |
+
<A NAME=96>All will be ours, now bloody Talbot's slain.</A><br>
|
208 |
+
<p><i>Exeunt</i></p>
|
209 |
+
<table width="100%" bgcolor="#CCF6F6">
|
210 |
+
<tr><td class="nav" align="center">
|
211 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
212 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
213 |
+
| Act 4, Scene 7
|
214 |
+
<br>
|
215 |
+
<a href="1henryvi.4.6.html">Previous scene</A>
|
216 |
+
| <a href="1henryvi.5.1.html">Next scene</A>
|
217 |
+
</table>
|
218 |
+
|
219 |
+
</body>
|
220 |
+
</html>
|
221 |
+
|
222 |
+
|
data/1henryvi.5.1.html
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. London. The palace.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 5, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.4.7.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.5.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. London. The palace.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Sennet. Enter KING HENRY VI, GLOUCESTER, and EXETER</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>KING HENRY VI</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Have you perused the letters from the pope,</A><br>
|
33 |
+
<A NAME=2>The emperor and the Earl of Armagnac?</A><br>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>GLOUCESTER</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=3>I have, my lord: and their intent is this:</A><br>
|
39 |
+
<A NAME=4>They humbly sue unto your excellence</A><br>
|
40 |
+
<A NAME=5>To have a godly peace concluded of</A><br>
|
41 |
+
<A NAME=6>Between the realms of England and of France.</A><br>
|
42 |
+
</blockquote>
|
43 |
+
|
44 |
+
<A NAME=speech3><b>KING HENRY VI</b></a>
|
45 |
+
<blockquote>
|
46 |
+
<A NAME=7>How doth your grace affect their motion?</A><br>
|
47 |
+
</blockquote>
|
48 |
+
|
49 |
+
<A NAME=speech4><b>GLOUCESTER</b></a>
|
50 |
+
<blockquote>
|
51 |
+
<A NAME=8>Well, my good lord; and as the only means</A><br>
|
52 |
+
<A NAME=9>To stop effusion of our Christian blood</A><br>
|
53 |
+
<A NAME=10>And 'stablish quietness on every side.</A><br>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech5><b>KING HENRY VI</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=11>Ay, marry, uncle; for I always thought</A><br>
|
59 |
+
<A NAME=12>It was both impious and unnatural</A><br>
|
60 |
+
<A NAME=13>That such immanity and bloody strife</A><br>
|
61 |
+
<A NAME=14>Should reign among professors of one faith.</A><br>
|
62 |
+
</blockquote>
|
63 |
+
|
64 |
+
<A NAME=speech6><b>GLOUCESTER</b></a>
|
65 |
+
<blockquote>
|
66 |
+
<A NAME=15>Beside, my lord, the sooner to effect</A><br>
|
67 |
+
<A NAME=16>And surer bind this knot of amity,</A><br>
|
68 |
+
<A NAME=17>The Earl of Armagnac, near knit to Charles,</A><br>
|
69 |
+
<A NAME=18>A man of great authority in France,</A><br>
|
70 |
+
<A NAME=19>Proffers his only daughter to your grace</A><br>
|
71 |
+
<A NAME=20>In marriage, with a large and sumptuous dowry.</A><br>
|
72 |
+
</blockquote>
|
73 |
+
|
74 |
+
<A NAME=speech7><b>KING HENRY VI</b></a>
|
75 |
+
<blockquote>
|
76 |
+
<A NAME=21>Marriage, uncle! alas, my years are young!</A><br>
|
77 |
+
<A NAME=22>And fitter is my study and my books</A><br>
|
78 |
+
<A NAME=23>Than wanton dalliance with a paramour.</A><br>
|
79 |
+
<A NAME=24>Yet call the ambassador; and, as you please,</A><br>
|
80 |
+
<A NAME=25>So let them have their answers every one:</A><br>
|
81 |
+
<A NAME=26>I shall be well content with any choice</A><br>
|
82 |
+
<A NAME=27>Tends to God's glory and my country's weal.</A><br>
|
83 |
+
<p><i>Enter CARDINAL OF WINCHESTER in Cardinal's habit, a Legate and two Ambassadors</i></p>
|
84 |
+
</blockquote>
|
85 |
+
|
86 |
+
<A NAME=speech8><b>EXETER</b></a>
|
87 |
+
<blockquote>
|
88 |
+
<A NAME=28>What! is my Lord of Winchester install'd,</A><br>
|
89 |
+
<A NAME=29>And call'd unto a cardinal's degree?</A><br>
|
90 |
+
<A NAME=30>Then I perceive that will be verified</A><br>
|
91 |
+
<A NAME=31>Henry the Fifth did sometime prophesy,</A><br>
|
92 |
+
<A NAME=32>'If once he come to be a cardinal,</A><br>
|
93 |
+
<A NAME=33>He'll make his cap co-equal with the crown.'</A><br>
|
94 |
+
</blockquote>
|
95 |
+
|
96 |
+
<A NAME=speech9><b>KING HENRY VI</b></a>
|
97 |
+
<blockquote>
|
98 |
+
<A NAME=34>My lords ambassadors, your several suits</A><br>
|
99 |
+
<A NAME=35>Have been consider'd and debated on.</A><br>
|
100 |
+
<A NAME=36>And therefore are we certainly resolved</A><br>
|
101 |
+
<A NAME=37>To draw conditions of a friendly peace;</A><br>
|
102 |
+
<A NAME=38>Which by my Lord of Winchester we mean</A><br>
|
103 |
+
<A NAME=39>Shall be transported presently to France.</A><br>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech10><b>GLOUCESTER</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=40>And for the proffer of my lord your master,</A><br>
|
109 |
+
<A NAME=41>I have inform'd his highness so at large</A><br>
|
110 |
+
<A NAME=42>As liking of the lady's virtuous gifts,</A><br>
|
111 |
+
<A NAME=43>Her beauty and the value of her dower,</A><br>
|
112 |
+
<A NAME=44>He doth intend she shall be England's queen.</A><br>
|
113 |
+
</blockquote>
|
114 |
+
|
115 |
+
<A NAME=speech11><b>KING HENRY VI</b></a>
|
116 |
+
<blockquote>
|
117 |
+
<A NAME=45>In argument and proof of which contract,</A><br>
|
118 |
+
<A NAME=46>Bear her this jewel, pledge of my affection.</A><br>
|
119 |
+
<A NAME=47>And so, my lord protector, see them guarded</A><br>
|
120 |
+
<A NAME=48>And safely brought to Dover; where inshipp'd</A><br>
|
121 |
+
<A NAME=49>Commit them to the fortune of the sea.</A><br>
|
122 |
+
<p><i>Exeunt all but CARDINAL OF WINCHESTER and Legate</i></p>
|
123 |
+
<A NAME=50>CARDINAL</A><br>
|
124 |
+
</blockquote>
|
125 |
+
|
126 |
+
<A NAME=speech12><b>OF WINCHESTER</b></a>
|
127 |
+
<blockquote>
|
128 |
+
<A NAME=51>Stay, my lord legate: you shall first receive</A><br>
|
129 |
+
<A NAME=52>The sum of money which I promised</A><br>
|
130 |
+
<A NAME=53>Should be deliver'd to his holiness</A><br>
|
131 |
+
<A NAME=54>For clothing me in these grave ornaments.</A><br>
|
132 |
+
</blockquote>
|
133 |
+
|
134 |
+
<A NAME=speech13><b>Legate</b></a>
|
135 |
+
<blockquote>
|
136 |
+
<A NAME=55>I will attend upon your lordship's leisure.</A><br>
|
137 |
+
<A NAME=56>CARDINAL</A><br>
|
138 |
+
</blockquote>
|
139 |
+
|
140 |
+
<A NAME=speech14><b>OF WINCHESTER</b></a>
|
141 |
+
<blockquote>
|
142 |
+
<A NAME=57>[Aside] Now Winchester will not submit, I trow,</A><br>
|
143 |
+
<A NAME=58>Or be inferior to the proudest peer.</A><br>
|
144 |
+
<A NAME=59>Humphrey of Gloucester, thou shalt well perceive</A><br>
|
145 |
+
<A NAME=60>That, neither in birth or for authority,</A><br>
|
146 |
+
<A NAME=61>The bishop will be overborne by thee:</A><br>
|
147 |
+
<A NAME=62>I'll either make thee stoop and bend thy knee,</A><br>
|
148 |
+
<A NAME=63>Or sack this country with a mutiny.</A><br>
|
149 |
+
<p><i>Exeunt</i></p>
|
150 |
+
</blockquote>
|
151 |
+
<table width="100%" bgcolor="#CCF6F6">
|
152 |
+
<tr><td class="nav" align="center">
|
153 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
154 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
155 |
+
| Act 5, Scene 1
|
156 |
+
<br>
|
157 |
+
<a href="1henryvi.4.7.html">Previous scene</A>
|
158 |
+
| <a href="1henryvi.5.2.html">Next scene</A>
|
159 |
+
</table>
|
160 |
+
|
161 |
+
</body>
|
162 |
+
</html>
|
163 |
+
|
164 |
+
|
data/1henryvi.5.2.html
ADDED
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE II. France. Plains in Anjou.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 5, Scene 2
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.5.1.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.5.3.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE II. France. Plains in Anjou.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter CHARLES, BURGUNDY, ALENCON, BASTARD OF ORLEANS, REIGNIER, JOAN LA PUCELLE, and forces</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>CHARLES</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>These news, my lord, may cheer our drooping spirits:</A><br>
|
33 |
+
<A NAME=2>'Tis said the stout Parisians do revolt</A><br>
|
34 |
+
<A NAME=3>And turn again unto the warlike French.</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>ALENCON</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=4>Then march to Paris, royal Charles of France,</A><br>
|
40 |
+
<A NAME=5>And keep not back your powers in dalliance.</A><br>
|
41 |
+
</blockquote>
|
42 |
+
|
43 |
+
<A NAME=speech3><b>JOAN LA PUCELLE</b></a>
|
44 |
+
<blockquote>
|
45 |
+
<A NAME=6>Peace be amongst them, if they turn to us;</A><br>
|
46 |
+
<A NAME=7>Else, ruin combat with their palaces!</A><br>
|
47 |
+
<p><i>Enter Scout</i></p>
|
48 |
+
</blockquote>
|
49 |
+
|
50 |
+
<A NAME=speech4><b>Scout</b></a>
|
51 |
+
<blockquote>
|
52 |
+
<A NAME=8>Success unto our valiant general,</A><br>
|
53 |
+
<A NAME=9>And happiness to his accomplices!</A><br>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech5><b>CHARLES</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=10>What tidings send our scouts? I prithee, speak.</A><br>
|
59 |
+
</blockquote>
|
60 |
+
|
61 |
+
<A NAME=speech6><b>Scout</b></a>
|
62 |
+
<blockquote>
|
63 |
+
<A NAME=11>The English army, that divided was</A><br>
|
64 |
+
<A NAME=12>Into two parties, is now conjoined in one,</A><br>
|
65 |
+
<A NAME=13>And means to give you battle presently.</A><br>
|
66 |
+
</blockquote>
|
67 |
+
|
68 |
+
<A NAME=speech7><b>CHARLES</b></a>
|
69 |
+
<blockquote>
|
70 |
+
<A NAME=14>Somewhat too sudden, sirs, the warning is;</A><br>
|
71 |
+
<A NAME=15>But we will presently provide for them.</A><br>
|
72 |
+
</blockquote>
|
73 |
+
|
74 |
+
<A NAME=speech8><b>BURGUNDY</b></a>
|
75 |
+
<blockquote>
|
76 |
+
<A NAME=16>I trust the ghost of Talbot is not there:</A><br>
|
77 |
+
<A NAME=17>Now he is gone, my lord, you need not fear.</A><br>
|
78 |
+
</blockquote>
|
79 |
+
|
80 |
+
<A NAME=speech9><b>JOAN LA PUCELLE</b></a>
|
81 |
+
<blockquote>
|
82 |
+
<A NAME=18>Of all base passions, fear is most accursed.</A><br>
|
83 |
+
<A NAME=19>Command the conquest, Charles, it shall be thine,</A><br>
|
84 |
+
<A NAME=20>Let Henry fret and all the world repine.</A><br>
|
85 |
+
</blockquote>
|
86 |
+
|
87 |
+
<A NAME=speech10><b>CHARLES</b></a>
|
88 |
+
<blockquote>
|
89 |
+
<A NAME=21>Then on, my lords; and France be fortunate!</A><br>
|
90 |
+
<p><i>Exeunt</i></p>
|
91 |
+
</blockquote>
|
92 |
+
<table width="100%" bgcolor="#CCF6F6">
|
93 |
+
<tr><td class="nav" align="center">
|
94 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
95 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
96 |
+
| Act 5, Scene 2
|
97 |
+
<br>
|
98 |
+
<a href="1henryvi.5.1.html">Previous scene</A>
|
99 |
+
| <a href="1henryvi.5.3.html">Next scene</A>
|
100 |
+
</table>
|
101 |
+
|
102 |
+
</body>
|
103 |
+
</html>
|
104 |
+
|
105 |
+
|
data/1henryvi.5.3.html
ADDED
@@ -0,0 +1,534 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE III. Before Angiers.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 5, Scene 3
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.5.2.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.5.4.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE III. Before Angiers.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Alarum. Excursions. Enter JOAN LA PUCELLE</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>JOAN LA PUCELLE</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>The regent conquers, and the Frenchmen fly.</A><br>
|
33 |
+
<A NAME=2>Now help, ye charming spells and periapts;</A><br>
|
34 |
+
<A NAME=3>And ye choice spirits that admonish me</A><br>
|
35 |
+
<A NAME=4>And give me signs of future accidents.</A><br>
|
36 |
+
<p><i>Thunder</i></p>
|
37 |
+
<A NAME=5>You speedy helpers, that are substitutes</A><br>
|
38 |
+
<A NAME=6>Under the lordly monarch of the north,</A><br>
|
39 |
+
<A NAME=7>Appear and aid me in this enterprise.</A><br>
|
40 |
+
<p><i>Enter Fiends</i></p>
|
41 |
+
<A NAME=8>This speedy and quick appearance argues proof</A><br>
|
42 |
+
<A NAME=9>Of your accustom'd diligence to me.</A><br>
|
43 |
+
<A NAME=10>Now, ye familiar spirits, that are cull'd</A><br>
|
44 |
+
<A NAME=11>Out of the powerful regions under earth,</A><br>
|
45 |
+
<A NAME=12>Help me this once, that France may get the field.</A><br>
|
46 |
+
<p><i>They walk, and speak not</i></p>
|
47 |
+
<A NAME=13>O, hold me not with silence over-long!</A><br>
|
48 |
+
<A NAME=14>Where I was wont to feed you with my blood,</A><br>
|
49 |
+
<A NAME=15>I'll lop a member off and give it you</A><br>
|
50 |
+
<A NAME=16>In earnest of further benefit,</A><br>
|
51 |
+
<A NAME=17>So you do condescend to help me now.</A><br>
|
52 |
+
<p><i>They hang their heads</i></p>
|
53 |
+
<A NAME=18>No hope to have redress? My body shall</A><br>
|
54 |
+
<A NAME=19>Pay recompense, if you will grant my suit.</A><br>
|
55 |
+
<p><i>They shake their heads</i></p>
|
56 |
+
<A NAME=20>Cannot my body nor blood-sacrifice</A><br>
|
57 |
+
<A NAME=21>Entreat you to your wonted furtherance?</A><br>
|
58 |
+
<A NAME=22>Then take my soul, my body, soul and all,</A><br>
|
59 |
+
<A NAME=23>Before that England give the French the foil.</A><br>
|
60 |
+
<p><i>They depart</i></p>
|
61 |
+
<A NAME=24>See, they forsake me! Now the time is come</A><br>
|
62 |
+
<A NAME=25>That France must vail her lofty-plumed crest</A><br>
|
63 |
+
<A NAME=26>And let her head fall into England's lap.</A><br>
|
64 |
+
<A NAME=27>My ancient incantations are too weak,</A><br>
|
65 |
+
<A NAME=28>And hell too strong for me to buckle with:</A><br>
|
66 |
+
<A NAME=29>Now, France, thy glory droopeth to the dust.</A><br>
|
67 |
+
<p><i>Exit</i></p>
|
68 |
+
<p><i>Excursions. Re-enter JOAN LA PUCELLE fighting hand to hand with YORK. JOAN LA PUCELLE is taken. The French fly.</i></p>
|
69 |
+
</blockquote>
|
70 |
+
|
71 |
+
<A NAME=speech2><b>YORK</b></a>
|
72 |
+
<blockquote>
|
73 |
+
<A NAME=30>Damsel of France, I think I have you fast:</A><br>
|
74 |
+
<A NAME=31>Unchain your spirits now with spelling charms</A><br>
|
75 |
+
<A NAME=32>And try if they can gain your liberty.</A><br>
|
76 |
+
<A NAME=33>A goodly prize, fit for the devil's grace!</A><br>
|
77 |
+
<A NAME=34>See, how the ugly wench doth bend her brows,</A><br>
|
78 |
+
<A NAME=35>As if with Circe she would change my shape!</A><br>
|
79 |
+
</blockquote>
|
80 |
+
|
81 |
+
<A NAME=speech3><b>JOAN LA PUCELLE</b></a>
|
82 |
+
<blockquote>
|
83 |
+
<A NAME=36>Changed to a worser shape thou canst not be.</A><br>
|
84 |
+
</blockquote>
|
85 |
+
|
86 |
+
<A NAME=speech4><b>YORK</b></a>
|
87 |
+
<blockquote>
|
88 |
+
<A NAME=37>O, Charles the Dauphin is a proper man;</A><br>
|
89 |
+
<A NAME=38>No shape but his can please your dainty eye.</A><br>
|
90 |
+
</blockquote>
|
91 |
+
|
92 |
+
<A NAME=speech5><b>JOAN LA PUCELLE</b></a>
|
93 |
+
<blockquote>
|
94 |
+
<A NAME=39>A plaguing mischief light on Charles and thee!</A><br>
|
95 |
+
<A NAME=40>And may ye both be suddenly surprised</A><br>
|
96 |
+
<A NAME=41>By bloody hands, in sleeping on your beds!</A><br>
|
97 |
+
</blockquote>
|
98 |
+
|
99 |
+
<A NAME=speech6><b>YORK</b></a>
|
100 |
+
<blockquote>
|
101 |
+
<A NAME=42>Fell banning hag, enchantress, hold thy tongue!</A><br>
|
102 |
+
</blockquote>
|
103 |
+
|
104 |
+
<A NAME=speech7><b>JOAN LA PUCELLE</b></a>
|
105 |
+
<blockquote>
|
106 |
+
<A NAME=43>I prithee, give me leave to curse awhile.</A><br>
|
107 |
+
</blockquote>
|
108 |
+
|
109 |
+
<A NAME=speech8><b>YORK</b></a>
|
110 |
+
<blockquote>
|
111 |
+
<A NAME=44>Curse, miscreant, when thou comest to the stake.</A><br>
|
112 |
+
<p><i>Exeunt</i></p>
|
113 |
+
<p><i>Alarum. Enter SUFFOLK with MARGARET in his hand</i></p>
|
114 |
+
</blockquote>
|
115 |
+
|
116 |
+
<A NAME=speech9><b>SUFFOLK</b></a>
|
117 |
+
<blockquote>
|
118 |
+
<A NAME=45>Be what thou wilt, thou art my prisoner.</A><br>
|
119 |
+
<p><i>Gazes on her</i></p>
|
120 |
+
<A NAME=46>O fairest beauty, do not fear nor fly!</A><br>
|
121 |
+
<A NAME=47>For I will touch thee but with reverent hands;</A><br>
|
122 |
+
<A NAME=48>I kiss these fingers for eternal peace,</A><br>
|
123 |
+
<A NAME=49>And lay them gently on thy tender side.</A><br>
|
124 |
+
<A NAME=50>Who art thou? say, that I may honour thee.</A><br>
|
125 |
+
</blockquote>
|
126 |
+
|
127 |
+
<A NAME=speech10><b>MARGARET</b></a>
|
128 |
+
<blockquote>
|
129 |
+
<A NAME=51>Margaret my name, and daughter to a king,</A><br>
|
130 |
+
<A NAME=52>The King of Naples, whosoe'er thou art.</A><br>
|
131 |
+
</blockquote>
|
132 |
+
|
133 |
+
<A NAME=speech11><b>SUFFOLK</b></a>
|
134 |
+
<blockquote>
|
135 |
+
<A NAME=53>An earl I am, and Suffolk am I call'd.</A><br>
|
136 |
+
<A NAME=54>Be not offended, nature's miracle,</A><br>
|
137 |
+
<A NAME=55>Thou art allotted to be ta'en by me:</A><br>
|
138 |
+
<A NAME=56>So doth the swan her downy cygnets save,</A><br>
|
139 |
+
<A NAME=57>Keeping them prisoner underneath her wings.</A><br>
|
140 |
+
<A NAME=58>Yet, if this servile usage once offend.</A><br>
|
141 |
+
<A NAME=59>Go, and be free again, as Suffolk's friend.</A><br>
|
142 |
+
<p><i>She is going</i></p>
|
143 |
+
<A NAME=60>O, stay! I have no power to let her pass;</A><br>
|
144 |
+
<A NAME=61>My hand would free her, but my heart says no</A><br>
|
145 |
+
<A NAME=62>As plays the sun upon the glassy streams,</A><br>
|
146 |
+
<A NAME=63>Twinkling another counterfeited beam,</A><br>
|
147 |
+
<A NAME=64>So seems this gorgeous beauty to mine eyes.</A><br>
|
148 |
+
<A NAME=65>Fain would I woo her, yet I dare not speak:</A><br>
|
149 |
+
<A NAME=66>I'll call for pen and ink, and write my mind.</A><br>
|
150 |
+
<A NAME=67>Fie, de la Pole! disable not thyself;</A><br>
|
151 |
+
<A NAME=68>Hast not a tongue? is she not here?</A><br>
|
152 |
+
<A NAME=69>Wilt thou be daunted at a woman's sight?</A><br>
|
153 |
+
<A NAME=70>Ay, beauty's princely majesty is such,</A><br>
|
154 |
+
<A NAME=71>Confounds the tongue and makes the senses rough.</A><br>
|
155 |
+
</blockquote>
|
156 |
+
|
157 |
+
<A NAME=speech12><b>MARGARET</b></a>
|
158 |
+
<blockquote>
|
159 |
+
<A NAME=72>Say, Earl of Suffolk--if thy name be so--</A><br>
|
160 |
+
<A NAME=73>What ransom must I pay before I pass?</A><br>
|
161 |
+
<A NAME=74>For I perceive I am thy prisoner.</A><br>
|
162 |
+
</blockquote>
|
163 |
+
|
164 |
+
<A NAME=speech13><b>SUFFOLK</b></a>
|
165 |
+
<blockquote>
|
166 |
+
<A NAME=75>How canst thou tell she will deny thy suit,</A><br>
|
167 |
+
<A NAME=76>Before thou make a trial of her love?</A><br>
|
168 |
+
</blockquote>
|
169 |
+
|
170 |
+
<A NAME=speech14><b>MARGARET</b></a>
|
171 |
+
<blockquote>
|
172 |
+
<A NAME=77>Why speak'st thou not? what ransom must I pay?</A><br>
|
173 |
+
</blockquote>
|
174 |
+
|
175 |
+
<A NAME=speech15><b>SUFFOLK</b></a>
|
176 |
+
<blockquote>
|
177 |
+
<A NAME=78>She's beautiful, and therefore to be woo'd;</A><br>
|
178 |
+
<A NAME=79>She is a woman, therefore to be won.</A><br>
|
179 |
+
</blockquote>
|
180 |
+
|
181 |
+
<A NAME=speech16><b>MARGARET</b></a>
|
182 |
+
<blockquote>
|
183 |
+
<A NAME=80>Wilt thou accept of ransom? yea, or no.</A><br>
|
184 |
+
</blockquote>
|
185 |
+
|
186 |
+
<A NAME=speech17><b>SUFFOLK</b></a>
|
187 |
+
<blockquote>
|
188 |
+
<A NAME=81>Fond man, remember that thou hast a wife;</A><br>
|
189 |
+
<A NAME=82>Then how can Margaret be thy paramour?</A><br>
|
190 |
+
</blockquote>
|
191 |
+
|
192 |
+
<A NAME=speech18><b>MARGARET</b></a>
|
193 |
+
<blockquote>
|
194 |
+
<A NAME=83>I were best to leave him, for he will not hear.</A><br>
|
195 |
+
</blockquote>
|
196 |
+
|
197 |
+
<A NAME=speech19><b>SUFFOLK</b></a>
|
198 |
+
<blockquote>
|
199 |
+
<A NAME=84>There all is marr'd; there lies a cooling card.</A><br>
|
200 |
+
</blockquote>
|
201 |
+
|
202 |
+
<A NAME=speech20><b>MARGARET</b></a>
|
203 |
+
<blockquote>
|
204 |
+
<A NAME=85>He talks at random; sure, the man is mad.</A><br>
|
205 |
+
</blockquote>
|
206 |
+
|
207 |
+
<A NAME=speech21><b>SUFFOLK</b></a>
|
208 |
+
<blockquote>
|
209 |
+
<A NAME=86>And yet a dispensation may be had.</A><br>
|
210 |
+
</blockquote>
|
211 |
+
|
212 |
+
<A NAME=speech22><b>MARGARET</b></a>
|
213 |
+
<blockquote>
|
214 |
+
<A NAME=87>And yet I would that you would answer me.</A><br>
|
215 |
+
</blockquote>
|
216 |
+
|
217 |
+
<A NAME=speech23><b>SUFFOLK</b></a>
|
218 |
+
<blockquote>
|
219 |
+
<A NAME=88>I'll win this Lady Margaret. For whom?</A><br>
|
220 |
+
<A NAME=89>Why, for my king: tush, that's a wooden thing!</A><br>
|
221 |
+
</blockquote>
|
222 |
+
|
223 |
+
<A NAME=speech24><b>MARGARET</b></a>
|
224 |
+
<blockquote>
|
225 |
+
<A NAME=90>He talks of wood: it is some carpenter.</A><br>
|
226 |
+
</blockquote>
|
227 |
+
|
228 |
+
<A NAME=speech25><b>SUFFOLK</b></a>
|
229 |
+
<blockquote>
|
230 |
+
<A NAME=91>Yet so my fancy may be satisfied,</A><br>
|
231 |
+
<A NAME=92>And peace established between these realms</A><br>
|
232 |
+
<A NAME=93>But there remains a scruple in that too;</A><br>
|
233 |
+
<A NAME=94>For though her father be the King of Naples,</A><br>
|
234 |
+
<A NAME=95>Duke of Anjou and Maine, yet is he poor,</A><br>
|
235 |
+
<A NAME=96>And our nobility will scorn the match.</A><br>
|
236 |
+
</blockquote>
|
237 |
+
|
238 |
+
<A NAME=speech26><b>MARGARET</b></a>
|
239 |
+
<blockquote>
|
240 |
+
<A NAME=97>Hear ye, captain, are you not at leisure?</A><br>
|
241 |
+
</blockquote>
|
242 |
+
|
243 |
+
<A NAME=speech27><b>SUFFOLK</b></a>
|
244 |
+
<blockquote>
|
245 |
+
<A NAME=98>It shall be so, disdain they ne'er so much.</A><br>
|
246 |
+
<A NAME=99>Henry is youthful and will quickly yield.</A><br>
|
247 |
+
<A NAME=100>Madam, I have a secret to reveal.</A><br>
|
248 |
+
</blockquote>
|
249 |
+
|
250 |
+
<A NAME=speech28><b>MARGARET</b></a>
|
251 |
+
<blockquote>
|
252 |
+
<A NAME=101>What though I be enthrall'd? he seems a knight,</A><br>
|
253 |
+
<A NAME=102>And will not any way dishonour me.</A><br>
|
254 |
+
</blockquote>
|
255 |
+
|
256 |
+
<A NAME=speech29><b>SUFFOLK</b></a>
|
257 |
+
<blockquote>
|
258 |
+
<A NAME=103>Lady, vouchsafe to listen what I say.</A><br>
|
259 |
+
</blockquote>
|
260 |
+
|
261 |
+
<A NAME=speech30><b>MARGARET</b></a>
|
262 |
+
<blockquote>
|
263 |
+
<A NAME=104>Perhaps I shall be rescued by the French;</A><br>
|
264 |
+
<A NAME=105>And then I need not crave his courtesy.</A><br>
|
265 |
+
</blockquote>
|
266 |
+
|
267 |
+
<A NAME=speech31><b>SUFFOLK</b></a>
|
268 |
+
<blockquote>
|
269 |
+
<A NAME=106>Sweet madam, give me a hearing in a cause--</A><br>
|
270 |
+
</blockquote>
|
271 |
+
|
272 |
+
<A NAME=speech32><b>MARGARET</b></a>
|
273 |
+
<blockquote>
|
274 |
+
<A NAME=107>Tush, women have been captivate ere now.</A><br>
|
275 |
+
</blockquote>
|
276 |
+
|
277 |
+
<A NAME=speech33><b>SUFFOLK</b></a>
|
278 |
+
<blockquote>
|
279 |
+
<A NAME=108>Lady, wherefore talk you so?</A><br>
|
280 |
+
</blockquote>
|
281 |
+
|
282 |
+
<A NAME=speech34><b>MARGARET</b></a>
|
283 |
+
<blockquote>
|
284 |
+
<A NAME=109>I cry you mercy, 'tis but Quid for Quo.</A><br>
|
285 |
+
</blockquote>
|
286 |
+
|
287 |
+
<A NAME=speech35><b>SUFFOLK</b></a>
|
288 |
+
<blockquote>
|
289 |
+
<A NAME=110>Say, gentle princess, would you not suppose</A><br>
|
290 |
+
<A NAME=111>Your bondage happy, to be made a queen?</A><br>
|
291 |
+
</blockquote>
|
292 |
+
|
293 |
+
<A NAME=speech36><b>MARGARET</b></a>
|
294 |
+
<blockquote>
|
295 |
+
<A NAME=112>To be a queen in bondage is more vile</A><br>
|
296 |
+
<A NAME=113>Than is a slave in base servility;</A><br>
|
297 |
+
<A NAME=114>For princes should be free.</A><br>
|
298 |
+
</blockquote>
|
299 |
+
|
300 |
+
<A NAME=speech37><b>SUFFOLK</b></a>
|
301 |
+
<blockquote>
|
302 |
+
<A NAME=115>And so shall you,</A><br>
|
303 |
+
<A NAME=116>If happy England's royal king be free.</A><br>
|
304 |
+
</blockquote>
|
305 |
+
|
306 |
+
<A NAME=speech38><b>MARGARET</b></a>
|
307 |
+
<blockquote>
|
308 |
+
<A NAME=117>Why, what concerns his freedom unto me?</A><br>
|
309 |
+
</blockquote>
|
310 |
+
|
311 |
+
<A NAME=speech39><b>SUFFOLK</b></a>
|
312 |
+
<blockquote>
|
313 |
+
<A NAME=118>I'll undertake to make thee Henry's queen,</A><br>
|
314 |
+
<A NAME=119>To put a golden sceptre in thy hand</A><br>
|
315 |
+
<A NAME=120>And set a precious crown upon thy head,</A><br>
|
316 |
+
<A NAME=121>If thou wilt condescend to be my--</A><br>
|
317 |
+
</blockquote>
|
318 |
+
|
319 |
+
<A NAME=speech40><b>MARGARET</b></a>
|
320 |
+
<blockquote>
|
321 |
+
<A NAME=122>What?</A><br>
|
322 |
+
</blockquote>
|
323 |
+
|
324 |
+
<A NAME=speech41><b>SUFFOLK</b></a>
|
325 |
+
<blockquote>
|
326 |
+
<A NAME=123>His love.</A><br>
|
327 |
+
</blockquote>
|
328 |
+
|
329 |
+
<A NAME=speech42><b>MARGARET</b></a>
|
330 |
+
<blockquote>
|
331 |
+
<A NAME=124>I am unworthy to be Henry's wife.</A><br>
|
332 |
+
</blockquote>
|
333 |
+
|
334 |
+
<A NAME=speech43><b>SUFFOLK</b></a>
|
335 |
+
<blockquote>
|
336 |
+
<A NAME=125>No, gentle madam; I unworthy am</A><br>
|
337 |
+
<A NAME=126>To woo so fair a dame to be his wife,</A><br>
|
338 |
+
<A NAME=127>And have no portion in the choice myself.</A><br>
|
339 |
+
<A NAME=128>How say you, madam, are ye so content?</A><br>
|
340 |
+
</blockquote>
|
341 |
+
|
342 |
+
<A NAME=speech44><b>MARGARET</b></a>
|
343 |
+
<blockquote>
|
344 |
+
<A NAME=129>An if my father please, I am content.</A><br>
|
345 |
+
</blockquote>
|
346 |
+
|
347 |
+
<A NAME=speech45><b>SUFFOLK</b></a>
|
348 |
+
<blockquote>
|
349 |
+
<A NAME=130>Then call our captains and our colours forth.</A><br>
|
350 |
+
<A NAME=131>And, madam, at your father's castle walls</A><br>
|
351 |
+
<A NAME=132>We'll crave a parley, to confer with him.</A><br>
|
352 |
+
<p><i>A parley sounded. Enter REIGNIER on the walls</i></p>
|
353 |
+
<A NAME=133>See, Reignier, see, thy daughter prisoner!</A><br>
|
354 |
+
</blockquote>
|
355 |
+
|
356 |
+
<A NAME=speech46><b>REIGNIER</b></a>
|
357 |
+
<blockquote>
|
358 |
+
<A NAME=134>To whom?</A><br>
|
359 |
+
</blockquote>
|
360 |
+
|
361 |
+
<A NAME=speech47><b>SUFFOLK</b></a>
|
362 |
+
<blockquote>
|
363 |
+
<A NAME=135> To me.</A><br>
|
364 |
+
</blockquote>
|
365 |
+
|
366 |
+
<A NAME=speech48><b>REIGNIER</b></a>
|
367 |
+
<blockquote>
|
368 |
+
<A NAME=136> Suffolk, what remedy?</A><br>
|
369 |
+
<A NAME=137>I am a soldier, and unapt to weep,</A><br>
|
370 |
+
<A NAME=138>Or to exclaim on fortune's fickleness.</A><br>
|
371 |
+
</blockquote>
|
372 |
+
|
373 |
+
<A NAME=speech49><b>SU FFOLK</b></a>
|
374 |
+
<blockquote>
|
375 |
+
<A NAME=139>Yes, there is remedy enough, my lord:</A><br>
|
376 |
+
<A NAME=140>Consent, and for thy honour give consent,</A><br>
|
377 |
+
<A NAME=141>Thy daughter shall be wedded to my king;</A><br>
|
378 |
+
<A NAME=142>Whom I with pain have woo'd and won thereto;</A><br>
|
379 |
+
<A NAME=143>And this her easy-held imprisonment</A><br>
|
380 |
+
<A NAME=144>Hath gained thy daughter princely liberty.</A><br>
|
381 |
+
</blockquote>
|
382 |
+
|
383 |
+
<A NAME=speech50><b>REIGNIER</b></a>
|
384 |
+
<blockquote>
|
385 |
+
<A NAME=145>Speaks Suffolk as he thinks?</A><br>
|
386 |
+
</blockquote>
|
387 |
+
|
388 |
+
<A NAME=speech51><b>SUFFOLK</b></a>
|
389 |
+
<blockquote>
|
390 |
+
<A NAME=146>Fair Margaret knows</A><br>
|
391 |
+
<A NAME=147>That Suffolk doth not flatter, face, or feign.</A><br>
|
392 |
+
</blockquote>
|
393 |
+
|
394 |
+
<A NAME=speech52><b>REIGNIER</b></a>
|
395 |
+
<blockquote>
|
396 |
+
<A NAME=148>Upon thy princely warrant, I descend</A><br>
|
397 |
+
<A NAME=149>To give thee answer of thy just demand.</A><br>
|
398 |
+
<p><i>Exit from the walls</i></p>
|
399 |
+
</blockquote>
|
400 |
+
|
401 |
+
<A NAME=speech53><b>SUFFOLK</b></a>
|
402 |
+
<blockquote>
|
403 |
+
<A NAME=150>And here I will expect thy coming.</A><br>
|
404 |
+
<p><i>Trumpets sound. Enter REIGNIER, below</i></p>
|
405 |
+
</blockquote>
|
406 |
+
|
407 |
+
<A NAME=speech54><b>REIGNIER</b></a>
|
408 |
+
<blockquote>
|
409 |
+
<A NAME=151>Welcome, brave earl, into our territories:</A><br>
|
410 |
+
<A NAME=152>Command in Anjou what your honour pleases.</A><br>
|
411 |
+
</blockquote>
|
412 |
+
|
413 |
+
<A NAME=speech55><b>SUFFOLK</b></a>
|
414 |
+
<blockquote>
|
415 |
+
<A NAME=153>Thanks, Reignier, happy for so sweet a child,</A><br>
|
416 |
+
<A NAME=154>Fit to be made companion with a king:</A><br>
|
417 |
+
<A NAME=155>What answer makes your grace unto my suit?</A><br>
|
418 |
+
</blockquote>
|
419 |
+
|
420 |
+
<A NAME=speech56><b>REIGNIER</b></a>
|
421 |
+
<blockquote>
|
422 |
+
<A NAME=156>Since thou dost deign to woo her little worth</A><br>
|
423 |
+
<A NAME=157>To be the princely bride of such a lord;</A><br>
|
424 |
+
<A NAME=158>Upon condition I may quietly</A><br>
|
425 |
+
<A NAME=159>Enjoy mine own, the country Maine and Anjou,</A><br>
|
426 |
+
<A NAME=160>Free from oppression or the stroke of war,</A><br>
|
427 |
+
<A NAME=161>My daughter shall be Henry's, if he please.</A><br>
|
428 |
+
</blockquote>
|
429 |
+
|
430 |
+
<A NAME=speech57><b>SUFFOLK</b></a>
|
431 |
+
<blockquote>
|
432 |
+
<A NAME=162>That is her ransom; I deliver her;</A><br>
|
433 |
+
<A NAME=163>And those two counties I will undertake</A><br>
|
434 |
+
<A NAME=164>Your grace shall well and quietly enjoy.</A><br>
|
435 |
+
</blockquote>
|
436 |
+
|
437 |
+
<A NAME=speech58><b>REIGNIER</b></a>
|
438 |
+
<blockquote>
|
439 |
+
<A NAME=165>And I again, in Henry's royal name,</A><br>
|
440 |
+
<A NAME=166>As deputy unto that gracious king,</A><br>
|
441 |
+
<A NAME=167>Give thee her hand, for sign of plighted faith.</A><br>
|
442 |
+
</blockquote>
|
443 |
+
|
444 |
+
<A NAME=speech59><b>SUFFOLK</b></a>
|
445 |
+
<blockquote>
|
446 |
+
<A NAME=168>Reignier of France, I give thee kingly thanks,</A><br>
|
447 |
+
<A NAME=169>Because this is in traffic of a king.</A><br>
|
448 |
+
<p><i>Aside</i></p>
|
449 |
+
<A NAME=170>And yet, methinks, I could be well content</A><br>
|
450 |
+
<A NAME=171>To be mine own attorney in this case.</A><br>
|
451 |
+
<A NAME=172>I'll over then to England with this news,</A><br>
|
452 |
+
<A NAME=173>And make this marriage to be solemnized.</A><br>
|
453 |
+
<A NAME=174>So farewell, Reignier: set this diamond safe</A><br>
|
454 |
+
<A NAME=175>In golden palaces, as it becomes.</A><br>
|
455 |
+
</blockquote>
|
456 |
+
|
457 |
+
<A NAME=speech60><b>REIGNIER</b></a>
|
458 |
+
<blockquote>
|
459 |
+
<A NAME=176>I do embrace thee, as I would embrace</A><br>
|
460 |
+
<A NAME=177>The Christian prince, King Henry, were he here.</A><br>
|
461 |
+
</blockquote>
|
462 |
+
|
463 |
+
<A NAME=speech61><b>MARGARET</b></a>
|
464 |
+
<blockquote>
|
465 |
+
<A NAME=178>Farewell, my lord: good wishes, praise and prayers</A><br>
|
466 |
+
<A NAME=179>Shall Suffolk ever have of Margaret.</A><br>
|
467 |
+
<p><i>Going</i></p>
|
468 |
+
</blockquote>
|
469 |
+
|
470 |
+
<A NAME=speech62><b>SUFFOLK</b></a>
|
471 |
+
<blockquote>
|
472 |
+
<A NAME=180>Farewell, sweet madam: but hark you, Margaret;</A><br>
|
473 |
+
<A NAME=181>No princely commendations to my king?</A><br>
|
474 |
+
</blockquote>
|
475 |
+
|
476 |
+
<A NAME=speech63><b>MARGARET</b></a>
|
477 |
+
<blockquote>
|
478 |
+
<A NAME=182>Such commendations as becomes a maid,</A><br>
|
479 |
+
<A NAME=183>A virgin and his servant, say to him.</A><br>
|
480 |
+
</blockquote>
|
481 |
+
|
482 |
+
<A NAME=speech64><b>SUFFOLK</b></a>
|
483 |
+
<blockquote>
|
484 |
+
<A NAME=184>Words sweetly placed and modestly directed.</A><br>
|
485 |
+
<A NAME=185>But madam, I must trouble you again;</A><br>
|
486 |
+
<A NAME=186>No loving token to his majesty?</A><br>
|
487 |
+
</blockquote>
|
488 |
+
|
489 |
+
<A NAME=speech65><b>MARGARET</b></a>
|
490 |
+
<blockquote>
|
491 |
+
<A NAME=187>Yes, my good lord, a pure unspotted heart,</A><br>
|
492 |
+
<A NAME=188>Never yet taint with love, I send the king.</A><br>
|
493 |
+
</blockquote>
|
494 |
+
|
495 |
+
<A NAME=speech66><b>SUFFOLK</b></a>
|
496 |
+
<blockquote>
|
497 |
+
<A NAME=189>And this withal.</A><br>
|
498 |
+
<p><i>Kisses her</i></p>
|
499 |
+
</blockquote>
|
500 |
+
|
501 |
+
<A NAME=speech67><b>MARGARET</b></a>
|
502 |
+
<blockquote>
|
503 |
+
<A NAME=190>That for thyself: I will not so presume</A><br>
|
504 |
+
<A NAME=191>To send such peevish tokens to a king.</A><br>
|
505 |
+
<p><i>Exeunt REIGNIER and MARGARET</i></p>
|
506 |
+
</blockquote>
|
507 |
+
|
508 |
+
<A NAME=speech68><b>SUFFOLK</b></a>
|
509 |
+
<blockquote>
|
510 |
+
<A NAME=192>O, wert thou for myself! But, Suffolk, stay;</A><br>
|
511 |
+
<A NAME=193>Thou mayst not wander in that labyrinth;</A><br>
|
512 |
+
<A NAME=194>There Minotaurs and ugly treasons lurk.</A><br>
|
513 |
+
<A NAME=195>Solicit Henry with her wondrous praise:</A><br>
|
514 |
+
<A NAME=196>Bethink thee on her virtues that surmount,</A><br>
|
515 |
+
<A NAME=197>And natural graces that extinguish art;</A><br>
|
516 |
+
<A NAME=198>Repeat their semblance often on the seas,</A><br>
|
517 |
+
<A NAME=199>That, when thou comest to kneel at Henry's feet,</A><br>
|
518 |
+
<A NAME=200>Thou mayst bereave him of his wits with wonder.</A><br>
|
519 |
+
<p><i>Exit</i></p>
|
520 |
+
</blockquote>
|
521 |
+
<table width="100%" bgcolor="#CCF6F6">
|
522 |
+
<tr><td class="nav" align="center">
|
523 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
524 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
525 |
+
| Act 5, Scene 3
|
526 |
+
<br>
|
527 |
+
<a href="1henryvi.5.2.html">Previous scene</A>
|
528 |
+
| <a href="1henryvi.5.4.html">Next scene</A>
|
529 |
+
</table>
|
530 |
+
|
531 |
+
</body>
|
532 |
+
</html>
|
533 |
+
|
534 |
+
|
data/1henryvi.5.4.html
ADDED
@@ -0,0 +1,389 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE IV. Camp of the YORK in Anjou.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 5, Scene 4
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.5.3.html">Previous scene</A>
|
21 |
+
| <a href="1henryvi.5.5.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE IV. Camp of the YORK in Anjou.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter YORK, WARWICK, and others</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>YORK</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Bring forth that sorceress condemn'd to burn.</A><br>
|
33 |
+
<p><i>Enter JOAN LA PUCELLE, guarded, and a Shepherd</i></p>
|
34 |
+
</blockquote>
|
35 |
+
|
36 |
+
<A NAME=speech2><b>Shepherd</b></a>
|
37 |
+
<blockquote>
|
38 |
+
<A NAME=2>Ah, Joan, this kills thy father's heart outright!</A><br>
|
39 |
+
<A NAME=3>Have I sought every country far and near,</A><br>
|
40 |
+
<A NAME=4>And, now it is my chance to find thee out,</A><br>
|
41 |
+
<A NAME=5>Must I behold thy timeless cruel death?</A><br>
|
42 |
+
<A NAME=6>Ah, Joan, sweet daughter Joan, I'll die with thee!</A><br>
|
43 |
+
</blockquote>
|
44 |
+
|
45 |
+
<A NAME=speech3><b>JOAN LA PUCELLE</b></a>
|
46 |
+
<blockquote>
|
47 |
+
<A NAME=7>Decrepit miser! base ignoble wretch!</A><br>
|
48 |
+
<A NAME=8>I am descended of a gentler blood:</A><br>
|
49 |
+
<A NAME=9>Thou art no father nor no friend of mine.</A><br>
|
50 |
+
</blockquote>
|
51 |
+
|
52 |
+
<A NAME=speech4><b>Shepherd</b></a>
|
53 |
+
<blockquote>
|
54 |
+
<A NAME=10>Out, out! My lords, an please you, 'tis not so;</A><br>
|
55 |
+
<A NAME=11>I did beget her, all the parish knows:</A><br>
|
56 |
+
<A NAME=12>Her mother liveth yet, can testify</A><br>
|
57 |
+
<A NAME=13>She was the first fruit of my bachelorship.</A><br>
|
58 |
+
</blockquote>
|
59 |
+
|
60 |
+
<A NAME=speech5><b>WARWICK</b></a>
|
61 |
+
<blockquote>
|
62 |
+
<A NAME=14>Graceless! wilt thou deny thy parentage?</A><br>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech6><b>YORK</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=15>This argues what her kind of life hath been,</A><br>
|
68 |
+
<A NAME=16>Wicked and vile; and so her death concludes.</A><br>
|
69 |
+
</blockquote>
|
70 |
+
|
71 |
+
<A NAME=speech7><b>Shepherd</b></a>
|
72 |
+
<blockquote>
|
73 |
+
<A NAME=17>Fie, Joan, that thou wilt be so obstacle!</A><br>
|
74 |
+
<A NAME=18>God knows thou art a collop of my flesh;</A><br>
|
75 |
+
<A NAME=19>And for thy sake have I shed many a tear:</A><br>
|
76 |
+
<A NAME=20>Deny me not, I prithee, gentle Joan.</A><br>
|
77 |
+
</blockquote>
|
78 |
+
|
79 |
+
<A NAME=speech8><b>JOAN LA PUCELLE</b></a>
|
80 |
+
<blockquote>
|
81 |
+
<A NAME=21>Peasant, avaunt! You have suborn'd this man,</A><br>
|
82 |
+
<A NAME=22>Of purpose to obscure my noble birth.</A><br>
|
83 |
+
</blockquote>
|
84 |
+
|
85 |
+
<A NAME=speech9><b>Shepherd</b></a>
|
86 |
+
<blockquote>
|
87 |
+
<A NAME=23>'Tis true, I gave a noble to the priest</A><br>
|
88 |
+
<A NAME=24>The morn that I was wedded to her mother.</A><br>
|
89 |
+
<A NAME=25>Kneel down and take my blessing, good my girl.</A><br>
|
90 |
+
<A NAME=26>Wilt thou not stoop? Now cursed be the time</A><br>
|
91 |
+
<A NAME=27>Of thy nativity! I would the milk</A><br>
|
92 |
+
<A NAME=28>Thy mother gave thee when thou suck'dst her breast,</A><br>
|
93 |
+
<A NAME=29>Had been a little ratsbane for thy sake!</A><br>
|
94 |
+
<A NAME=30>Or else, when thou didst keep my lambs a-field,</A><br>
|
95 |
+
<A NAME=31>I wish some ravenous wolf had eaten thee!</A><br>
|
96 |
+
<A NAME=32>Dost thou deny thy father, cursed drab?</A><br>
|
97 |
+
<A NAME=33>O, burn her, burn her! hanging is too good.</A><br>
|
98 |
+
<p><i>Exit</i></p>
|
99 |
+
</blockquote>
|
100 |
+
|
101 |
+
<A NAME=speech10><b>YORK</b></a>
|
102 |
+
<blockquote>
|
103 |
+
<A NAME=34>Take her away; for she hath lived too long,</A><br>
|
104 |
+
<A NAME=35>To fill the world with vicious qualities.</A><br>
|
105 |
+
</blockquote>
|
106 |
+
|
107 |
+
<A NAME=speech11><b>JOAN LA PUCELLE</b></a>
|
108 |
+
<blockquote>
|
109 |
+
<A NAME=36>First, let me tell you whom you have condemn'd:</A><br>
|
110 |
+
<A NAME=37>Not me begotten of a shepherd swain,</A><br>
|
111 |
+
<A NAME=38>But issued from the progeny of kings;</A><br>
|
112 |
+
<A NAME=39>Virtuous and holy; chosen from above,</A><br>
|
113 |
+
<A NAME=40>By inspiration of celestial grace,</A><br>
|
114 |
+
<A NAME=41>To work exceeding miracles on earth.</A><br>
|
115 |
+
<A NAME=42>I never had to do with wicked spirits:</A><br>
|
116 |
+
<A NAME=43>But you, that are polluted with your lusts,</A><br>
|
117 |
+
<A NAME=44>Stain'd with the guiltless blood of innocents,</A><br>
|
118 |
+
<A NAME=45>Corrupt and tainted with a thousand vices,</A><br>
|
119 |
+
<A NAME=46>Because you want the grace that others have,</A><br>
|
120 |
+
<A NAME=47>You judge it straight a thing impossible</A><br>
|
121 |
+
<A NAME=48>To compass wonders but by help of devils.</A><br>
|
122 |
+
<A NAME=49>No, misconceived! Joan of Arc hath been</A><br>
|
123 |
+
<A NAME=50>A virgin from her tender infancy,</A><br>
|
124 |
+
<A NAME=51>Chaste and immaculate in very thought;</A><br>
|
125 |
+
<A NAME=52>Whose maiden blood, thus rigorously effused,</A><br>
|
126 |
+
<A NAME=53>Will cry for vengeance at the gates of heaven.</A><br>
|
127 |
+
</blockquote>
|
128 |
+
|
129 |
+
<A NAME=speech12><b>YORK</b></a>
|
130 |
+
<blockquote>
|
131 |
+
<A NAME=54>Ay, ay: away with her to execution!</A><br>
|
132 |
+
</blockquote>
|
133 |
+
|
134 |
+
<A NAME=speech13><b>WARWICK</b></a>
|
135 |
+
<blockquote>
|
136 |
+
<A NAME=55>And hark ye, sirs; because she is a maid,</A><br>
|
137 |
+
<A NAME=56>Spare for no faggots, let there be enow:</A><br>
|
138 |
+
<A NAME=57>Place barrels of pitch upon the fatal stake,</A><br>
|
139 |
+
<A NAME=58>That so her torture may be shortened.</A><br>
|
140 |
+
</blockquote>
|
141 |
+
|
142 |
+
<A NAME=speech14><b>JOAN LA PUCELLE</b></a>
|
143 |
+
<blockquote>
|
144 |
+
<A NAME=59>Will nothing turn your unrelenting hearts?</A><br>
|
145 |
+
<A NAME=60>Then, Joan, discover thine infirmity,</A><br>
|
146 |
+
<A NAME=61>That warranteth by law to be thy privilege.</A><br>
|
147 |
+
<A NAME=62>I am with child, ye bloody homicides:</A><br>
|
148 |
+
<A NAME=63>Murder not then the fruit within my womb,</A><br>
|
149 |
+
<A NAME=64>Although ye hale me to a violent death.</A><br>
|
150 |
+
</blockquote>
|
151 |
+
|
152 |
+
<A NAME=speech15><b>YORK</b></a>
|
153 |
+
<blockquote>
|
154 |
+
<A NAME=65>Now heaven forfend! the holy maid with child!</A><br>
|
155 |
+
</blockquote>
|
156 |
+
|
157 |
+
<A NAME=speech16><b>WARWICK</b></a>
|
158 |
+
<blockquote>
|
159 |
+
<A NAME=66>The greatest miracle that e'er ye wrought:</A><br>
|
160 |
+
<A NAME=67>Is all your strict preciseness come to this?</A><br>
|
161 |
+
</blockquote>
|
162 |
+
|
163 |
+
<A NAME=speech17><b>YORK</b></a>
|
164 |
+
<blockquote>
|
165 |
+
<A NAME=68>She and the Dauphin have been juggling:</A><br>
|
166 |
+
<A NAME=69>I did imagine what would be her refuge.</A><br>
|
167 |
+
</blockquote>
|
168 |
+
|
169 |
+
<A NAME=speech18><b>WARWICK</b></a>
|
170 |
+
<blockquote>
|
171 |
+
<A NAME=70>Well, go to; we'll have no bastards live;</A><br>
|
172 |
+
<A NAME=71>Especially since Charles must father it.</A><br>
|
173 |
+
</blockquote>
|
174 |
+
|
175 |
+
<A NAME=speech19><b>JOAN LA PUCELLE</b></a>
|
176 |
+
<blockquote>
|
177 |
+
<A NAME=72>You are deceived; my child is none of his:</A><br>
|
178 |
+
<A NAME=73>It was Alencon that enjoy'd my love.</A><br>
|
179 |
+
</blockquote>
|
180 |
+
|
181 |
+
<A NAME=speech20><b>YORK</b></a>
|
182 |
+
<blockquote>
|
183 |
+
<A NAME=74>Alencon! that notorious Machiavel!</A><br>
|
184 |
+
<A NAME=75>It dies, an if it had a thousand lives.</A><br>
|
185 |
+
</blockquote>
|
186 |
+
|
187 |
+
<A NAME=speech21><b>JOAN LA PUCELLE</b></a>
|
188 |
+
<blockquote>
|
189 |
+
<A NAME=76>O, give me leave, I have deluded you:</A><br>
|
190 |
+
<A NAME=77>'Twas neither Charles nor yet the duke I named,</A><br>
|
191 |
+
<A NAME=78>But Reignier, king of Naples, that prevail'd.</A><br>
|
192 |
+
</blockquote>
|
193 |
+
|
194 |
+
<A NAME=speech22><b>WARWICK</b></a>
|
195 |
+
<blockquote>
|
196 |
+
<A NAME=79>A married man! that's most intolerable.</A><br>
|
197 |
+
</blockquote>
|
198 |
+
|
199 |
+
<A NAME=speech23><b>YORK</b></a>
|
200 |
+
<blockquote>
|
201 |
+
<A NAME=80>Why, here's a girl! I think she knows not well,</A><br>
|
202 |
+
<A NAME=81>There were so many, whom she may accuse.</A><br>
|
203 |
+
</blockquote>
|
204 |
+
|
205 |
+
<A NAME=speech24><b>WARWICK</b></a>
|
206 |
+
<blockquote>
|
207 |
+
<A NAME=82>It's sign she hath been liberal and free.</A><br>
|
208 |
+
</blockquote>
|
209 |
+
|
210 |
+
<A NAME=speech25><b>YORK</b></a>
|
211 |
+
<blockquote>
|
212 |
+
<A NAME=83>And yet, forsooth, she is a virgin pure.</A><br>
|
213 |
+
<A NAME=84>Strumpet, thy words condemn thy brat and thee:</A><br>
|
214 |
+
<A NAME=85>Use no entreaty, for it is in vain.</A><br>
|
215 |
+
</blockquote>
|
216 |
+
|
217 |
+
<A NAME=speech26><b>JOAN LA PUCELLE</b></a>
|
218 |
+
<blockquote>
|
219 |
+
<A NAME=86>Then lead me hence; with whom I leave my curse:</A><br>
|
220 |
+
<A NAME=87>May never glorious sun reflex his beams</A><br>
|
221 |
+
<A NAME=88>Upon the country where you make abode;</A><br>
|
222 |
+
<A NAME=89>But darkness and the gloomy shade of death</A><br>
|
223 |
+
<A NAME=90>Environ you, till mischief and despair</A><br>
|
224 |
+
<A NAME=91>Drive you to break your necks or hang yourselves!</A><br>
|
225 |
+
<p><i>Exit, guarded</i></p>
|
226 |
+
</blockquote>
|
227 |
+
|
228 |
+
<A NAME=speech27><b>YORK</b></a>
|
229 |
+
<blockquote>
|
230 |
+
<A NAME=92>Break thou in pieces and consume to ashes,</A><br>
|
231 |
+
<A NAME=93>Thou foul accursed minister of hell!</A><br>
|
232 |
+
<p><i>Enter CARDINAL OF WINCHESTER, attended</i></p>
|
233 |
+
<A NAME=94>CARDINAL</A><br>
|
234 |
+
</blockquote>
|
235 |
+
|
236 |
+
<A NAME=speech28><b>OF WINCHESTER</b></a>
|
237 |
+
<blockquote>
|
238 |
+
<A NAME=95>Lord regent, I do greet your excellence</A><br>
|
239 |
+
<A NAME=96>With letters of commission from the king.</A><br>
|
240 |
+
<A NAME=97>For know, my lords, the states of Christendom,</A><br>
|
241 |
+
<A NAME=98>Moved with remorse of these outrageous broils,</A><br>
|
242 |
+
<A NAME=99>Have earnestly implored a general peace</A><br>
|
243 |
+
<A NAME=100>Betwixt our nation and the aspiring French;</A><br>
|
244 |
+
<A NAME=101>And here at hand the Dauphin and his train</A><br>
|
245 |
+
<A NAME=102>Approacheth, to confer about some matter.</A><br>
|
246 |
+
</blockquote>
|
247 |
+
|
248 |
+
<A NAME=speech29><b>YORK</b></a>
|
249 |
+
<blockquote>
|
250 |
+
<A NAME=103> Is all our travail turn'd to this effect?</A><br>
|
251 |
+
<A NAME=104>After the slaughter of so many peers,</A><br>
|
252 |
+
<A NAME=105>So many captains, gentlemen and soldiers,</A><br>
|
253 |
+
<A NAME=106>That in this quarrel have been overthrown</A><br>
|
254 |
+
<A NAME=107>And sold their bodies for their country's benefit,</A><br>
|
255 |
+
<A NAME=108>Shall we at last conclude effeminate peace?</A><br>
|
256 |
+
<A NAME=109>Have we not lost most part of all the towns,</A><br>
|
257 |
+
<A NAME=110>By treason, falsehood and by treachery,</A><br>
|
258 |
+
<A NAME=111>Our great progenitors had conquered?</A><br>
|
259 |
+
<A NAME=112>O Warwick, Warwick! I foresee with grief</A><br>
|
260 |
+
<A NAME=113>The utter loss of all the realm of France.</A><br>
|
261 |
+
</blockquote>
|
262 |
+
|
263 |
+
<A NAME=speech30><b>WARWICK</b></a>
|
264 |
+
<blockquote>
|
265 |
+
<A NAME=114>Be patient, York: if we conclude a peace,</A><br>
|
266 |
+
<A NAME=115>It shall be with such strict and severe covenants</A><br>
|
267 |
+
<A NAME=116>As little shall the Frenchmen gain thereby.</A><br>
|
268 |
+
<p><i>Enter CHARLES, ALENCON, BASTARD OF ORLEANS, REIGNIER, and others</i></p>
|
269 |
+
</blockquote>
|
270 |
+
|
271 |
+
<A NAME=speech31><b>CHARLES</b></a>
|
272 |
+
<blockquote>
|
273 |
+
<A NAME=117>Since, lords of England, it is thus agreed</A><br>
|
274 |
+
<A NAME=118>That peaceful truce shall be proclaim'd in France,</A><br>
|
275 |
+
<A NAME=119>We come to be informed by yourselves</A><br>
|
276 |
+
<A NAME=120>What the conditions of that league must be.</A><br>
|
277 |
+
</blockquote>
|
278 |
+
|
279 |
+
<A NAME=speech32><b>YORK</b></a>
|
280 |
+
<blockquote>
|
281 |
+
<A NAME=121>Speak, Winchester; for boiling choler chokes</A><br>
|
282 |
+
<A NAME=122>The hollow passage of my poison'd voice,</A><br>
|
283 |
+
<A NAME=123>By sight of these our baleful enemies.</A><br>
|
284 |
+
<A NAME=124>CARDINAL</A><br>
|
285 |
+
</blockquote>
|
286 |
+
|
287 |
+
<A NAME=speech33><b>OF WINCHESTER</b></a>
|
288 |
+
<blockquote>
|
289 |
+
<A NAME=125>Charles, and the rest, it is enacted thus:</A><br>
|
290 |
+
<A NAME=126>That, in regard King Henry gives consent,</A><br>
|
291 |
+
<A NAME=127>Of mere compassion and of lenity,</A><br>
|
292 |
+
<A NAME=128>To ease your country of distressful war,</A><br>
|
293 |
+
<A NAME=129>And suffer you to breathe in fruitful peace,</A><br>
|
294 |
+
<A NAME=130>You shall become true liegemen to his crown:</A><br>
|
295 |
+
<A NAME=131>And Charles, upon condition thou wilt swear</A><br>
|
296 |
+
<A NAME=132>To pay him tribute, submit thyself,</A><br>
|
297 |
+
<A NAME=133>Thou shalt be placed as viceroy under him,</A><br>
|
298 |
+
<A NAME=134>And still enjoy thy regal dignity.</A><br>
|
299 |
+
</blockquote>
|
300 |
+
|
301 |
+
<A NAME=speech34><b>ALENCON</b></a>
|
302 |
+
<blockquote>
|
303 |
+
<A NAME=135>Must he be then as shadow of himself?</A><br>
|
304 |
+
<A NAME=136>Adorn his temples with a coronet,</A><br>
|
305 |
+
<A NAME=137>And yet, in substance and authority,</A><br>
|
306 |
+
<A NAME=138>Retain but privilege of a private man?</A><br>
|
307 |
+
<A NAME=139>This proffer is absurd and reasonless.</A><br>
|
308 |
+
</blockquote>
|
309 |
+
|
310 |
+
<A NAME=speech35><b>CHARLES</b></a>
|
311 |
+
<blockquote>
|
312 |
+
<A NAME=140>'Tis known already that I am possess'd</A><br>
|
313 |
+
<A NAME=141>With more than half the Gallian territories,</A><br>
|
314 |
+
<A NAME=142>And therein reverenced for their lawful king:</A><br>
|
315 |
+
<A NAME=143>Shall I, for lucre of the rest unvanquish'd,</A><br>
|
316 |
+
<A NAME=144>Detract so much from that prerogative,</A><br>
|
317 |
+
<A NAME=145>As to be call'd but viceroy of the whole?</A><br>
|
318 |
+
<A NAME=146>No, lord ambassador, I'll rather keep</A><br>
|
319 |
+
<A NAME=147>That which I have than, coveting for more,</A><br>
|
320 |
+
<A NAME=148>Be cast from possibility of all.</A><br>
|
321 |
+
</blockquote>
|
322 |
+
|
323 |
+
<A NAME=speech36><b>YORK</b></a>
|
324 |
+
<blockquote>
|
325 |
+
<A NAME=149>Insulting Charles! hast thou by secret means</A><br>
|
326 |
+
<A NAME=150>Used intercession to obtain a league,</A><br>
|
327 |
+
<A NAME=151>And, now the matter grows to compromise,</A><br>
|
328 |
+
<A NAME=152>Stand'st thou aloof upon comparison?</A><br>
|
329 |
+
<A NAME=153>Either accept the title thou usurp'st,</A><br>
|
330 |
+
<A NAME=154>Of benefit proceeding from our king</A><br>
|
331 |
+
<A NAME=155>And not of any challenge of desert,</A><br>
|
332 |
+
<A NAME=156>Or we will plague thee with incessant wars.</A><br>
|
333 |
+
</blockquote>
|
334 |
+
|
335 |
+
<A NAME=speech37><b>REIGNIER</b></a>
|
336 |
+
<blockquote>
|
337 |
+
<A NAME=157>My lord, you do not well in obstinacy</A><br>
|
338 |
+
<A NAME=158>To cavil in the course of this contract:</A><br>
|
339 |
+
<A NAME=159>If once it be neglected, ten to one</A><br>
|
340 |
+
<A NAME=160>We shall not find like opportunity.</A><br>
|
341 |
+
</blockquote>
|
342 |
+
|
343 |
+
<A NAME=speech38><b>ALENCON</b></a>
|
344 |
+
<blockquote>
|
345 |
+
<A NAME=161>To say the truth, it is your policy</A><br>
|
346 |
+
<A NAME=162>To save your subjects from such massacre</A><br>
|
347 |
+
<A NAME=163>And ruthless slaughters as are daily seen</A><br>
|
348 |
+
<A NAME=164>By our proceeding in hostility;</A><br>
|
349 |
+
<A NAME=165>And therefore take this compact of a truce,</A><br>
|
350 |
+
<A NAME=166>Although you break it when your pleasure serves.</A><br>
|
351 |
+
</blockquote>
|
352 |
+
|
353 |
+
<A NAME=speech39><b>WARWICK</b></a>
|
354 |
+
<blockquote>
|
355 |
+
<A NAME=167>How say'st thou, Charles? shall our condition stand?</A><br>
|
356 |
+
</blockquote>
|
357 |
+
|
358 |
+
<A NAME=speech40><b>CHARLES</b></a>
|
359 |
+
<blockquote>
|
360 |
+
<A NAME=168>It shall;</A><br>
|
361 |
+
<A NAME=169>Only reserved, you claim no interest</A><br>
|
362 |
+
<A NAME=170>In any of our towns of garrison.</A><br>
|
363 |
+
</blockquote>
|
364 |
+
|
365 |
+
<A NAME=speech41><b>YORK</b></a>
|
366 |
+
<blockquote>
|
367 |
+
<A NAME=171>Then swear allegiance to his majesty,</A><br>
|
368 |
+
<A NAME=172>As thou art knight, never to disobey</A><br>
|
369 |
+
<A NAME=173>Nor be rebellious to the crown of England,</A><br>
|
370 |
+
<A NAME=174>Thou, nor thy nobles, to the crown of England.</A><br>
|
371 |
+
<A NAME=175>So, now dismiss your army when ye please:</A><br>
|
372 |
+
<A NAME=176>Hang up your ensign, let your drums be still,</A><br>
|
373 |
+
<A NAME=177>For here we entertain a solemn peace.</A><br>
|
374 |
+
<p><i>Exeunt</i></p>
|
375 |
+
</blockquote>
|
376 |
+
<table width="100%" bgcolor="#CCF6F6">
|
377 |
+
<tr><td class="nav" align="center">
|
378 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
379 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
380 |
+
| Act 5, Scene 4
|
381 |
+
<br>
|
382 |
+
<a href="1henryvi.5.3.html">Previous scene</A>
|
383 |
+
| <a href="1henryvi.5.5.html">Next scene</A>
|
384 |
+
</table>
|
385 |
+
|
386 |
+
</body>
|
387 |
+
</html>
|
388 |
+
|
389 |
+
|
data/1henryvi.5.5.html
ADDED
@@ -0,0 +1,190 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE V. London. The palace.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/1henryvi/">Henry VI, part 1</A>
|
18 |
+
| Act 5, Scene 5
|
19 |
+
<br>
|
20 |
+
<a href="1henryvi.5.4.html">Previous scene</A>
|
21 |
+
</table>
|
22 |
+
|
23 |
+
<H3>SCENE V. London. The palace.</H3>
|
24 |
+
|
25 |
+
<p><blockquote>
|
26 |
+
<i>Enter SUFFOLK in conference with KING HENRY VI, GLOUCESTER and EXETER</i>
|
27 |
+
</blockquote>
|
28 |
+
|
29 |
+
<A NAME=speech1><b>KING HENRY VI</b></a>
|
30 |
+
<blockquote>
|
31 |
+
<A NAME=1>Your wondrous rare description, noble earl,</A><br>
|
32 |
+
<A NAME=2>Of beauteous Margaret hath astonish'd me:</A><br>
|
33 |
+
<A NAME=3>Her virtues graced with external gifts</A><br>
|
34 |
+
<A NAME=4>Do breed love's settled passions in my heart:</A><br>
|
35 |
+
<A NAME=5>And like as rigor of tempestuous gusts</A><br>
|
36 |
+
<A NAME=6>Provokes the mightiest hulk against the tide,</A><br>
|
37 |
+
<A NAME=7>So am I driven by breath of her renown</A><br>
|
38 |
+
<A NAME=8>Either to suffer shipwreck or arrive</A><br>
|
39 |
+
<A NAME=9>Where I may have fruition of her love.</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech2><b>SUFFOLK</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=10>Tush, my good lord, this superficial tale</A><br>
|
45 |
+
<A NAME=11>Is but a preface of her worthy praise;</A><br>
|
46 |
+
<A NAME=12>The chief perfections of that lovely dame</A><br>
|
47 |
+
<A NAME=13>Had I sufficient skill to utter them,</A><br>
|
48 |
+
<A NAME=14>Would make a volume of enticing lines,</A><br>
|
49 |
+
<A NAME=15>Able to ravish any dull conceit:</A><br>
|
50 |
+
<A NAME=16>And, which is more, she is not so divine,</A><br>
|
51 |
+
<A NAME=17>So full-replete with choice of all delights,</A><br>
|
52 |
+
<A NAME=18>But with as humble lowliness of mind</A><br>
|
53 |
+
<A NAME=19>She is content to be at your command;</A><br>
|
54 |
+
<A NAME=20>Command, I mean, of virtuous chaste intents,</A><br>
|
55 |
+
<A NAME=21>To love and honour Henry as her lord.</A><br>
|
56 |
+
</blockquote>
|
57 |
+
|
58 |
+
<A NAME=speech3><b>KING HENRY VI</b></a>
|
59 |
+
<blockquote>
|
60 |
+
<A NAME=22>And otherwise will Henry ne'er presume.</A><br>
|
61 |
+
<A NAME=23>Therefore, my lord protector, give consent</A><br>
|
62 |
+
<A NAME=24>That Margaret may be England's royal queen.</A><br>
|
63 |
+
</blockquote>
|
64 |
+
|
65 |
+
<A NAME=speech4><b>GLOUCESTER</b></a>
|
66 |
+
<blockquote>
|
67 |
+
<A NAME=25>So should I give consent to flatter sin.</A><br>
|
68 |
+
<A NAME=26>You know, my lord, your highness is betroth'd</A><br>
|
69 |
+
<A NAME=27>Unto another lady of esteem:</A><br>
|
70 |
+
<A NAME=28>How shall we then dispense with that contract,</A><br>
|
71 |
+
<A NAME=29>And not deface your honour with reproach?</A><br>
|
72 |
+
</blockquote>
|
73 |
+
|
74 |
+
<A NAME=speech5><b>SUFFOLK</b></a>
|
75 |
+
<blockquote>
|
76 |
+
<A NAME=30>As doth a ruler with unlawful oaths;</A><br>
|
77 |
+
<A NAME=31>Or one that, at a triumph having vow'd</A><br>
|
78 |
+
<A NAME=32>To try his strength, forsaketh yet the lists</A><br>
|
79 |
+
<A NAME=33>By reason of his adversary's odds:</A><br>
|
80 |
+
<A NAME=34>A poor earl's daughter is unequal odds,</A><br>
|
81 |
+
<A NAME=35>And therefore may be broke without offence.</A><br>
|
82 |
+
</blockquote>
|
83 |
+
|
84 |
+
<A NAME=speech6><b>GLOUCESTER</b></a>
|
85 |
+
<blockquote>
|
86 |
+
<A NAME=36>Why, what, I pray, is Margaret more than that?</A><br>
|
87 |
+
<A NAME=37>Her father is no better than an earl,</A><br>
|
88 |
+
<A NAME=38>Although in glorious titles he excel.</A><br>
|
89 |
+
</blockquote>
|
90 |
+
|
91 |
+
<A NAME=speech7><b>SUFFOLK</b></a>
|
92 |
+
<blockquote>
|
93 |
+
<A NAME=39>Yes, lord, her father is a king,</A><br>
|
94 |
+
<A NAME=40>The King of Naples and Jerusalem;</A><br>
|
95 |
+
<A NAME=41>And of such great authority in France</A><br>
|
96 |
+
<A NAME=42>As his alliance will confirm our peace</A><br>
|
97 |
+
<A NAME=43>And keep the Frenchmen in allegiance.</A><br>
|
98 |
+
</blockquote>
|
99 |
+
|
100 |
+
<A NAME=speech8><b>GLOUCESTER</b></a>
|
101 |
+
<blockquote>
|
102 |
+
<A NAME=44>And so the Earl of Armagnac may do,</A><br>
|
103 |
+
<A NAME=45>Because he is near kinsman unto Charles.</A><br>
|
104 |
+
</blockquote>
|
105 |
+
|
106 |
+
<A NAME=speech9><b>EXETER</b></a>
|
107 |
+
<blockquote>
|
108 |
+
<A NAME=46>Beside, his wealth doth warrant a liberal dower,</A><br>
|
109 |
+
<A NAME=47>Where Reignier sooner will receive than give.</A><br>
|
110 |
+
</blockquote>
|
111 |
+
|
112 |
+
<A NAME=speech10><b>SUFFOLK</b></a>
|
113 |
+
<blockquote>
|
114 |
+
<A NAME=48>A dower, my lords! disgrace not so your king,</A><br>
|
115 |
+
<A NAME=49>That he should be so abject, base and poor,</A><br>
|
116 |
+
<A NAME=50>To choose for wealth and not for perfect love.</A><br>
|
117 |
+
<A NAME=51>Henry is able to enrich his queen</A><br>
|
118 |
+
<A NAME=52>And not seek a queen to make him rich:</A><br>
|
119 |
+
<A NAME=53>So worthless peasants bargain for their wives,</A><br>
|
120 |
+
<A NAME=54>As market-men for oxen, sheep, or horse.</A><br>
|
121 |
+
<A NAME=55>Marriage is a matter of more worth</A><br>
|
122 |
+
<A NAME=56>Than to be dealt in by attorneyship;</A><br>
|
123 |
+
<A NAME=57>Not whom we will, but whom his grace affects,</A><br>
|
124 |
+
<A NAME=58>Must be companion of his nuptial bed:</A><br>
|
125 |
+
<A NAME=59>And therefore, lords, since he affects her most,</A><br>
|
126 |
+
<A NAME=60>It most of all these reasons bindeth us,</A><br>
|
127 |
+
<A NAME=61>In our opinions she should be preferr'd.</A><br>
|
128 |
+
<A NAME=62>For what is wedlock forced but a hell,</A><br>
|
129 |
+
<A NAME=63>An age of discord and continual strife?</A><br>
|
130 |
+
<A NAME=64>Whereas the contrary bringeth bliss,</A><br>
|
131 |
+
<A NAME=65>And is a pattern of celestial peace.</A><br>
|
132 |
+
<A NAME=66>Whom should we match with Henry, being a king,</A><br>
|
133 |
+
<A NAME=67>But Margaret, that is daughter to a king?</A><br>
|
134 |
+
<A NAME=68>Her peerless feature, joined with her birth,</A><br>
|
135 |
+
<A NAME=69>Approves her fit for none but for a king:</A><br>
|
136 |
+
<A NAME=70>Her valiant courage and undaunted spirit,</A><br>
|
137 |
+
<A NAME=71>More than in women commonly is seen,</A><br>
|
138 |
+
<A NAME=72>Will answer our hope in issue of a king;</A><br>
|
139 |
+
<A NAME=73>For Henry, son unto a conqueror,</A><br>
|
140 |
+
<A NAME=74>Is likely to beget more conquerors,</A><br>
|
141 |
+
<A NAME=75>If with a lady of so high resolve</A><br>
|
142 |
+
<A NAME=76>As is fair Margaret he be link'd in love.</A><br>
|
143 |
+
<A NAME=77>Then yield, my lords; and here conclude with me</A><br>
|
144 |
+
<A NAME=78>That Margaret shall be queen, and none but she.</A><br>
|
145 |
+
</blockquote>
|
146 |
+
|
147 |
+
<A NAME=speech11><b>KING HENRY VI</b></a>
|
148 |
+
<blockquote>
|
149 |
+
<A NAME=79>Whether it be through force of your report,</A><br>
|
150 |
+
<A NAME=80>My noble Lord of Suffolk, or for that</A><br>
|
151 |
+
<A NAME=81>My tender youth was never yet attaint</A><br>
|
152 |
+
<A NAME=82>With any passion of inflaming love,</A><br>
|
153 |
+
<A NAME=83>I cannot tell; but this I am assured,</A><br>
|
154 |
+
<A NAME=84>I feel such sharp dissension in my breast,</A><br>
|
155 |
+
<A NAME=85>Such fierce alarums both of hope and fear,</A><br>
|
156 |
+
<A NAME=86>As I am sick with working of my thoughts.</A><br>
|
157 |
+
<A NAME=87>Take, therefore, shipping; post, my lord, to France;</A><br>
|
158 |
+
<A NAME=88>Agree to any covenants, and procure</A><br>
|
159 |
+
<A NAME=89>That Lady Margaret do vouchsafe to come</A><br>
|
160 |
+
<A NAME=90>To cross the seas to England and be crown'd</A><br>
|
161 |
+
<A NAME=91>King Henry's faithful and anointed queen:</A><br>
|
162 |
+
<A NAME=92>For your expenses and sufficient charge,</A><br>
|
163 |
+
<A NAME=93>Among the people gather up a tenth.</A><br>
|
164 |
+
<A NAME=94>Be gone, I say; for, till you do return,</A><br>
|
165 |
+
<A NAME=95>I rest perplexed with a thousand cares.</A><br>
|
166 |
+
<A NAME=96>And you, good uncle, banish all offence:</A><br>
|
167 |
+
<A NAME=97>If you do censure me by what you were,</A><br>
|
168 |
+
<A NAME=98>Not what you are, I know it will excuse</A><br>
|
169 |
+
<A NAME=99>This sudden execution of my will.</A><br>
|
170 |
+
<A NAME=100>And so, conduct me where, from company,</A><br>
|
171 |
+
<A NAME=101>I may revolve and ruminate my grief.</A><br>
|
172 |
+
<p><i>Exit</i></p>
|
173 |
+
</blockquote>
|
174 |
+
|
175 |
+
<A NAME=speech12><b>GLOUCESTER</b></a>
|
176 |
+
<blockquote>
|
177 |
+
<A NAME=102>Ay, grief, I fear me, both at first and last.</A><br>
|
178 |
+
<p><i>Exeunt GLOUCESTER and EXETER</i></p>
|
179 |
+
</blockquote>
|
180 |
+
|
181 |
+
<A NAME=speech13><b>SUFFOLK</b></a>
|
182 |
+
<blockquote>
|
183 |
+
<A NAME=103>Thus Suffolk hath prevail'd; and thus he goes,</A><br>
|
184 |
+
<A NAME=104>As did the youthful Paris once to Greece,</A><br>
|
185 |
+
<A NAME=105>With hope to find the like event in love,</A><br>
|
186 |
+
<A NAME=106>But prosper better than the Trojan did.</A><br>
|
187 |
+
<A NAME=107>Margaret shall now be queen, and rule the king;</A><br>
|
188 |
+
<A NAME=108>But I will rule both her, the king and realm.</A><br>
|
189 |
+
<p><i>Exit</i></p>
|
190 |
+
|
data/1kinghenryiv.html
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>Henry IV, part 1: List of Scenes
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| Henry IV, part 1
|
18 |
+
</table>
|
19 |
+
|
20 |
+
<p><a href="full.html">Entire play</a> in one page</p>
|
21 |
+
|
22 |
+
<p>
|
23 |
+
Act 1, Scene 1: <a href="1henryiv.1.1.html">London. The palace.</a><br>
|
24 |
+
Act 1, Scene 2: <a href="1henryiv.1.2.html">London. An apartment of the Prince's.</a><br>
|
25 |
+
Act 1, Scene 3: <a href="1henryiv.1.3.html">London. The palace.</a><br>
|
26 |
+
<p>
|
27 |
+
Act 2, Scene 1: <a href="1henryiv.2.1.html">Rochester. An inn yard.</a><br>
|
28 |
+
Act 2, Scene 2: <a href="1henryiv.2.2.html">The highway, near Gadshill.</a><br>
|
29 |
+
Act 2, Scene 3: <a href="1henryiv.2.3.html">Warkworth castle</a><br>
|
30 |
+
Act 2, Scene 4: <a href="1henryiv.2.4.html">The Boar's-Head Tavern, Eastcheap.</a><br>
|
31 |
+
<p>
|
32 |
+
Act 3, Scene 1: <a href="1henryiv.3.1.html">Bangor. The Archdeacon's house.</a><br>
|
33 |
+
Act 3, Scene 2: <a href="1henryiv.3.2.html">London. The palace.</a><br>
|
34 |
+
<p>
|
35 |
+
Act 4, Scene 1: <a href="1henryiv.4.1.html">The rebel camp near Shrewsbury.</a><br>
|
36 |
+
Act 4, Scene 2: <a href="1henryiv.4.2.html">A public road near Coventry.</a><br>
|
37 |
+
Act 4, Scene 3: <a href="1henryiv.4.3.html">The rebel camp near Shrewsbury.</a><br>
|
38 |
+
Act 4, Scene 4: <a href="1henryiv.4.4.html">York. The ARCHBISHOP'S palace.</a><br>
|
39 |
+
<p>
|
40 |
+
Act 5, Scene 1: <a href="1henryiv.5.1.html">KING HENRY IV's camp near Shrewsbury.</a><br>
|
41 |
+
Act 5, Scene 2: <a href="1henryiv.5.2.html">The rebel camp.</a><br>
|
42 |
+
Act 5, Scene 3: <a href="1henryiv.5.3.html">Plain between the camps.</a><br>
|
43 |
+
Act 5, Scene 4: <a href="1henryiv.5.4.html">Another part of the field.</a><br>
|
44 |
+
Act 5, Scene 5: <a href="1henryiv.5.5.html">Another part of the field.</a><br>
|
45 |
+
</body>
|
46 |
+
</html>
|
47 |
+
|
48 |
+
|
data/1kinghenryvi.html
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>Henry VI, part 1: List of Scenes
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The First part of King Henry the Sixth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| Henry VI, part 1
|
18 |
+
</table>
|
19 |
+
|
20 |
+
<p><a href="full.html">Entire play</a> in one page</p>
|
21 |
+
|
22 |
+
<p>
|
23 |
+
Act 1, Scene 1: <a href="1henryvi.1.1.html">Westminster Abbey.</a><br>
|
24 |
+
Act 1, Scene 2: <a href="1henryvi.1.2.html">France. Before Orleans.</a><br>
|
25 |
+
Act 1, Scene 3: <a href="1henryvi.1.3.html">London. Before the Tower.</a><br>
|
26 |
+
Act 1, Scene 4: <a href="1henryvi.1.4.html">Orleans.</a><br>
|
27 |
+
Act 1, Scene 5: <a href="1henryvi.1.5.html">The same.</a><br>
|
28 |
+
Act 1, Scene 6: <a href="1henryvi.1.6.html">The same.</a><br>
|
29 |
+
<p>
|
30 |
+
Act 2, Scene 1: <a href="1henryvi.2.1.html">Before Orleans.</a><br>
|
31 |
+
Act 2, Scene 2: <a href="1henryvi.2.2.html">Orleans. Within the town.</a><br>
|
32 |
+
Act 2, Scene 3: <a href="1henryvi.2.3.html">Auvergne. The COUNTESS's castle.</a><br>
|
33 |
+
Act 2, Scene 4: <a href="1henryvi.2.4.html">London. The Temple-garden.</a><br>
|
34 |
+
Act 2, Scene 5: <a href="1henryvi.2.5.html">The Tower of London.</a><br>
|
35 |
+
<p>
|
36 |
+
Act 3, Scene 1: <a href="1henryvi.3.1.html">London. The Parliament-house.</a><br>
|
37 |
+
Act 3, Scene 2: <a href="1henryvi.3.2.html">France. Before Rouen.</a><br>
|
38 |
+
Act 3, Scene 3: <a href="1henryvi.3.3.html">The plains near Rouen.</a><br>
|
39 |
+
Act 3, Scene 4: <a href="1henryvi.3.4.html">Paris. The palace.</a><br>
|
40 |
+
<p>
|
41 |
+
Act 4, Scene 1: <a href="1henryvi.4.1.html">Paris. A hall of state.</a><br>
|
42 |
+
Act 4, Scene 2: <a href="1henryvi.4.2.html">Before Bourdeaux.</a><br>
|
43 |
+
Act 4, Scene 3: <a href="1henryvi.4.3.html">Plains in Gascony.</a><br>
|
44 |
+
Act 4, Scene 4: <a href="1henryvi.4.4.html">Other plains in Gascony.</a><br>
|
45 |
+
Act 4, Scene 5: <a href="1henryvi.4.5.html">The English camp near Bourdeaux.</a><br>
|
46 |
+
Act 4, Scene 6: <a href="1henryvi.4.6.html">A field of battle.</a><br>
|
47 |
+
Act 4, Scene 7: <a href="1henryvi.4.7.html">Another part of the field.</a><br>
|
48 |
+
<p>
|
49 |
+
Act 5, Scene 1: <a href="1henryvi.5.1.html">London. The palace.</a><br>
|
50 |
+
Act 5, Scene 2: <a href="1henryvi.5.2.html">France. Plains in Anjou.</a><br>
|
51 |
+
Act 5, Scene 3: <a href="1henryvi.5.3.html">Before Angiers.</a><br>
|
52 |
+
Act 5, Scene 4: <a href="1henryvi.5.4.html">Camp of the YORK in Anjou.</a><br>
|
53 |
+
Act 5, Scene 5: <a href="1henryvi.5.5.html">London. The palace.</a><br>
|
54 |
+
</body>
|
55 |
+
</html>
|
56 |
+
|
57 |
+
|
data/2henryiv.0.0.html
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>Induction
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The Second part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/2henryiv/">Henry IV, part 2</A>
|
18 |
+
| Induction
|
19 |
+
<br>
|
20 |
+
<a href="2henryiv.1.1.html">Next scene</A>
|
21 |
+
</table>
|
22 |
+
|
23 |
+
<h3>Induction</H3>
|
24 |
+
|
25 |
+
<p><blockquote>
|
26 |
+
<i>Warkworth. Before the castle</i>
|
27 |
+
</blockquote>
|
28 |
+
<p><blockquote>
|
29 |
+
<i>Enter RUMOUR, painted full of tongues</i>
|
30 |
+
</blockquote>
|
31 |
+
|
32 |
+
<A NAME=speech1><b>RUMOUR</b></a>
|
33 |
+
<blockquote>
|
34 |
+
<A NAME=1>Open your ears; for which of you will stop</A><br>
|
35 |
+
<A NAME=2>The vent of hearing when loud Rumour speaks?</A><br>
|
36 |
+
<A NAME=3>I, from the orient to the drooping west,</A><br>
|
37 |
+
<A NAME=4>Making the wind my post-horse, still unfold</A><br>
|
38 |
+
<A NAME=5>The acts commenced on this ball of earth:</A><br>
|
39 |
+
<A NAME=6>Upon my tongues continual slanders ride,</A><br>
|
40 |
+
<A NAME=7>The which in every language I pronounce,</A><br>
|
41 |
+
<A NAME=8>Stuffing the ears of men with false reports.</A><br>
|
42 |
+
<A NAME=9>I speak of peace, while covert enmity</A><br>
|
43 |
+
<A NAME=10>Under the smile of safety wounds the world:</A><br>
|
44 |
+
<A NAME=11>And who but Rumour, who but only I,</A><br>
|
45 |
+
<A NAME=12>Make fearful musters and prepared defence,</A><br>
|
46 |
+
<A NAME=13>Whiles the big year, swoln with some other grief,</A><br>
|
47 |
+
<A NAME=14>Is thought with child by the stern tyrant war,</A><br>
|
48 |
+
<A NAME=15>And no such matter? Rumour is a pipe</A><br>
|
49 |
+
<A NAME=16>Blown by surmises, jealousies, conjectures</A><br>
|
50 |
+
<A NAME=17>And of so easy and so plain a stop</A><br>
|
51 |
+
<A NAME=18>That the blunt monster with uncounted heads,</A><br>
|
52 |
+
<A NAME=19>The still-discordant wavering multitude,</A><br>
|
53 |
+
<A NAME=20>Can play upon it. But what need I thus</A><br>
|
54 |
+
<A NAME=21>My well-known body to anatomize</A><br>
|
55 |
+
<A NAME=22>Among my household? Why is Rumour here?</A><br>
|
56 |
+
<A NAME=23>I run before King Harry's victory;</A><br>
|
57 |
+
<A NAME=24>Who in a bloody field by Shrewsbury</A><br>
|
58 |
+
<A NAME=25>Hath beaten down young Hotspur and his troops,</A><br>
|
59 |
+
<A NAME=26>Quenching the flame of bold rebellion</A><br>
|
60 |
+
<A NAME=27>Even with the rebel's blood. But what mean I</A><br>
|
61 |
+
<A NAME=28>To speak so true at first? my office is</A><br>
|
62 |
+
<A NAME=29>To noise abroad that Harry Monmouth fell</A><br>
|
63 |
+
<A NAME=30>Under the wrath of noble Hotspur's sword,</A><br>
|
64 |
+
<A NAME=31>And that the king before the Douglas' rage</A><br>
|
65 |
+
<A NAME=32>Stoop'd his anointed head as low as death.</A><br>
|
66 |
+
<A NAME=33>This have I rumour'd through the peasant towns</A><br>
|
67 |
+
<A NAME=34>Between that royal field of Shrewsbury</A><br>
|
68 |
+
<A NAME=35>And this worm-eaten hold of ragged stone,</A><br>
|
69 |
+
<A NAME=36>Where Hotspur's father, old Northumberland,</A><br>
|
70 |
+
<A NAME=37>Lies crafty-sick: the posts come tiring on,</A><br>
|
71 |
+
<A NAME=38>And not a man of them brings other news</A><br>
|
72 |
+
<A NAME=39>Than they have learn'd of me: from Rumour's tongues</A><br>
|
73 |
+
<A NAME=40>They bring smooth comforts false, worse than</A><br>
|
74 |
+
<A NAME=41>true wrongs.</A><br>
|
75 |
+
<p><i>Exit</i></p>
|
76 |
+
<table width="100%" bgcolor="#CCF6F6">
|
77 |
+
<tr><td class="nav" align="center">
|
78 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
79 |
+
| <A href="/Shakespeare/2henryiv/">Henry IV, part 2</A>
|
80 |
+
| Induction
|
81 |
+
<br>
|
82 |
+
<a href="2henryiv.1.1.html">Next scene</A>
|
83 |
+
</table>
|
84 |
+
|
85 |
+
</body>
|
86 |
+
</html>
|
87 |
+
|
88 |
+
|
data/2henryiv.1.1.html
ADDED
@@ -0,0 +1,414 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/REC-html40/loose.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>SCENE I. The same.
|
6 |
+
</title>
|
7 |
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
8 |
+
<LINK rel="stylesheet" type="text/css" media="screen"
|
9 |
+
href="/shake.css">
|
10 |
+
</HEAD>
|
11 |
+
<body bgcolor="#ffffff" text="#000000">
|
12 |
+
|
13 |
+
<table width="100%" bgcolor="#CCF6F6">
|
14 |
+
<tr><td class="play" align="center">The Second part of King Henry the Fourth
|
15 |
+
<tr><td class="nav" align="center">
|
16 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
17 |
+
| <A href="/Shakespeare/2henryiv/">Henry IV, part 2</A>
|
18 |
+
| Act 1, Scene 1
|
19 |
+
<br>
|
20 |
+
<a href="2henryiv.0.0.html">Previous scene</A>
|
21 |
+
| <a href="2henryiv.1.2.html">Next scene</A>
|
22 |
+
</table>
|
23 |
+
|
24 |
+
<H3>SCENE I. The same.</h3>
|
25 |
+
|
26 |
+
<p><blockquote>
|
27 |
+
<i>Enter LORD BARDOLPH</i>
|
28 |
+
</blockquote>
|
29 |
+
|
30 |
+
<A NAME=speech1><b>LORD BARDOLPH</b></a>
|
31 |
+
<blockquote>
|
32 |
+
<A NAME=1>Who keeps the gate here, ho?</A><br>
|
33 |
+
<p><i>The Porter opens the gate</i></p>
|
34 |
+
<A NAME=2>Where is the earl?</A><br>
|
35 |
+
</blockquote>
|
36 |
+
|
37 |
+
<A NAME=speech2><b>Porter</b></a>
|
38 |
+
<blockquote>
|
39 |
+
<A NAME=3>What shall I say you are?</A><br>
|
40 |
+
</blockquote>
|
41 |
+
|
42 |
+
<A NAME=speech3><b>LORD BARDOLPH</b></a>
|
43 |
+
<blockquote>
|
44 |
+
<A NAME=4>Tell thou the earl</A><br>
|
45 |
+
<A NAME=5>That the Lord Bardolph doth attend him here.</A><br>
|
46 |
+
</blockquote>
|
47 |
+
|
48 |
+
<A NAME=speech4><b>Porter</b></a>
|
49 |
+
<blockquote>
|
50 |
+
<A NAME=6>His lordship is walk'd forth into the orchard;</A><br>
|
51 |
+
<A NAME=7>Please it your honour, knock but at the gate,</A><br>
|
52 |
+
<A NAME=8>And he himself wilt answer.</A><br>
|
53 |
+
<p><i>Enter NORTHUMBERLAND</i></p>
|
54 |
+
</blockquote>
|
55 |
+
|
56 |
+
<A NAME=speech5><b>LORD BARDOLPH</b></a>
|
57 |
+
<blockquote>
|
58 |
+
<A NAME=9>Here comes the earl.</A><br>
|
59 |
+
<p><i>Exit Porter</i></p>
|
60 |
+
</blockquote>
|
61 |
+
|
62 |
+
<A NAME=speech6><b>NORTHUMBERLAND</b></a>
|
63 |
+
<blockquote>
|
64 |
+
<A NAME=10>What news, Lord Bardolph? every minute now</A><br>
|
65 |
+
<A NAME=11>Should be the father of some stratagem:</A><br>
|
66 |
+
<A NAME=12>The times are wild: contention, like a horse</A><br>
|
67 |
+
<A NAME=13>Full of high feeding, madly hath broke loose</A><br>
|
68 |
+
<A NAME=14>And bears down all before him.</A><br>
|
69 |
+
</blockquote>
|
70 |
+
|
71 |
+
<A NAME=speech7><b>LORD BARDOLPH</b></a>
|
72 |
+
<blockquote>
|
73 |
+
<A NAME=15>Noble earl,</A><br>
|
74 |
+
<A NAME=16>I bring you certain news from Shrewsbury.</A><br>
|
75 |
+
</blockquote>
|
76 |
+
|
77 |
+
<A NAME=speech8><b>NORTHUMBERLAND</b></a>
|
78 |
+
<blockquote>
|
79 |
+
<A NAME=17>Good, an God will!</A><br>
|
80 |
+
</blockquote>
|
81 |
+
|
82 |
+
<A NAME=speech9><b>LORD BARDOLPH</b></a>
|
83 |
+
<blockquote>
|
84 |
+
<A NAME=18> As good as heart can wish:</A><br>
|
85 |
+
<A NAME=19>The king is almost wounded to the death;</A><br>
|
86 |
+
<A NAME=20>And, in the fortune of my lord your son,</A><br>
|
87 |
+
<A NAME=21>Prince Harry slain outright; and both the Blunts</A><br>
|
88 |
+
<A NAME=22>Kill'd by the hand of Douglas; young Prince John</A><br>
|
89 |
+
<A NAME=23>And Westmoreland and Stafford fled the field;</A><br>
|
90 |
+
<A NAME=24>And Harry Monmouth's brawn, the hulk Sir John,</A><br>
|
91 |
+
<A NAME=25>Is prisoner to your son: O, such a day,</A><br>
|
92 |
+
<A NAME=26>So fought, so follow'd and so fairly won,</A><br>
|
93 |
+
<A NAME=27>Came not till now to dignify the times,</A><br>
|
94 |
+
<A NAME=28>Since Caesar's fortunes!</A><br>
|
95 |
+
</blockquote>
|
96 |
+
|
97 |
+
<A NAME=speech10><b>NORTHUMBERLAND</b></a>
|
98 |
+
<blockquote>
|
99 |
+
<A NAME=29>How is this derived?</A><br>
|
100 |
+
<A NAME=30>Saw you the field? came you from Shrewsbury?</A><br>
|
101 |
+
</blockquote>
|
102 |
+
|
103 |
+
<A NAME=speech11><b>LORD BARDOLPH</b></a>
|
104 |
+
<blockquote>
|
105 |
+
<A NAME=31>I spake with one, my lord, that came from thence,</A><br>
|
106 |
+
<A NAME=32>A gentleman well bred and of good name,</A><br>
|
107 |
+
<A NAME=33>That freely render'd me these news for true.</A><br>
|
108 |
+
</blockquote>
|
109 |
+
|
110 |
+
<A NAME=speech12><b>NORTHUMBERLAND</b></a>
|
111 |
+
<blockquote>
|
112 |
+
<A NAME=34>Here comes my servant Travers, whom I sent</A><br>
|
113 |
+
<A NAME=35>On Tuesday last to listen after news.</A><br>
|
114 |
+
<p><i>Enter TRAVERS</i></p>
|
115 |
+
</blockquote>
|
116 |
+
|
117 |
+
<A NAME=speech13><b>LORD BARDOLPH</b></a>
|
118 |
+
<blockquote>
|
119 |
+
<A NAME=36>My lord, I over-rode him on the way;</A><br>
|
120 |
+
<A NAME=37>And he is furnish'd with no certainties</A><br>
|
121 |
+
<A NAME=38>More than he haply may retail from me.</A><br>
|
122 |
+
</blockquote>
|
123 |
+
|
124 |
+
<A NAME=speech14><b>NORTHUMBERLAND</b></a>
|
125 |
+
<blockquote>
|
126 |
+
<A NAME=39>Now, Travers, what good tidings comes with you?</A><br>
|
127 |
+
</blockquote>
|
128 |
+
|
129 |
+
<A NAME=speech15><b>TRAVERS</b></a>
|
130 |
+
<blockquote>
|
131 |
+
<A NAME=40>My lord, Sir John Umfrevile turn'd me back</A><br>
|
132 |
+
<A NAME=41>With joyful tidings; and, being better horsed,</A><br>
|
133 |
+
<A NAME=42>Out-rode me. After him came spurring hard</A><br>
|
134 |
+
<A NAME=43>A gentleman, almost forspent with speed,</A><br>
|
135 |
+
<A NAME=44>That stopp'd by me to breathe his bloodied horse.</A><br>
|
136 |
+
<A NAME=45>He ask'd the way to Chester; and of him</A><br>
|
137 |
+
<A NAME=46>I did demand what news from Shrewsbury:</A><br>
|
138 |
+
<A NAME=47>He told me that rebellion had bad luck</A><br>
|
139 |
+
<A NAME=48>And that young Harry Percy's spur was cold.</A><br>
|
140 |
+
<A NAME=49>With that, he gave his able horse the head,</A><br>
|
141 |
+
<A NAME=50>And bending forward struck his armed heels</A><br>
|
142 |
+
<A NAME=51>Against the panting sides of his poor jade</A><br>
|
143 |
+
<A NAME=52>Up to the rowel-head, and starting so</A><br>
|
144 |
+
<A NAME=53>He seem'd in running to devour the way,</A><br>
|
145 |
+
<A NAME=54>Staying no longer question.</A><br>
|
146 |
+
</blockquote>
|
147 |
+
|
148 |
+
<A NAME=speech16><b>NORTHUMBERLAND</b></a>
|
149 |
+
<blockquote>
|
150 |
+
<A NAME=55>Ha! Again:</A><br>
|
151 |
+
<A NAME=56>Said he young Harry Percy's spur was cold?</A><br>
|
152 |
+
<A NAME=57>Of Hotspur Coldspur? that rebellion</A><br>
|
153 |
+
<A NAME=58>Had met ill luck?</A><br>
|
154 |
+
</blockquote>
|
155 |
+
|
156 |
+
<A NAME=speech17><b>LORD BARDOLPH</b></a>
|
157 |
+
<blockquote>
|
158 |
+
<A NAME=59> My lord, I'll tell you what;</A><br>
|
159 |
+
<A NAME=60>If my young lord your son have not the day,</A><br>
|
160 |
+
<A NAME=61>Upon mine honour, for a silken point</A><br>
|
161 |
+
<A NAME=62>I'll give my barony: never talk of it.</A><br>
|
162 |
+
</blockquote>
|
163 |
+
|
164 |
+
<A NAME=speech18><b>NORTHUMBERLAND</b></a>
|
165 |
+
<blockquote>
|
166 |
+
<A NAME=63>Why should that gentleman that rode by Travers</A><br>
|
167 |
+
<A NAME=64>Give then such instances of loss?</A><br>
|
168 |
+
</blockquote>
|
169 |
+
|
170 |
+
<A NAME=speech19><b>LORD BARDOLPH</b></a>
|
171 |
+
<blockquote>
|
172 |
+
<A NAME=65>Who, he?</A><br>
|
173 |
+
<A NAME=66>He was some hilding fellow that had stolen</A><br>
|
174 |
+
<A NAME=67>The horse he rode on, and, upon my life,</A><br>
|
175 |
+
<A NAME=68>Spoke at a venture. Look, here comes more news.</A><br>
|
176 |
+
<p><i>Enter MORTON</i></p>
|
177 |
+
</blockquote>
|
178 |
+
|
179 |
+
<A NAME=speech20><b>NORTHUMBERLAND</b></a>
|
180 |
+
<blockquote>
|
181 |
+
<A NAME=69>Yea, this man's brow, like to a title-leaf,</A><br>
|
182 |
+
<A NAME=70>Foretells the nature of a tragic volume:</A><br>
|
183 |
+
<A NAME=71>So looks the strand whereon the imperious flood</A><br>
|
184 |
+
<A NAME=72>Hath left a witness'd usurpation.</A><br>
|
185 |
+
<A NAME=73>Say, Morton, didst thou come from Shrewsbury?</A><br>
|
186 |
+
</blockquote>
|
187 |
+
|
188 |
+
<A NAME=speech21><b>MORTON</b></a>
|
189 |
+
<blockquote>
|
190 |
+
<A NAME=74>I ran from Shrewsbury, my noble lord;</A><br>
|
191 |
+
<A NAME=75>Where hateful death put on his ugliest mask</A><br>
|
192 |
+
<A NAME=76>To fright our party.</A><br>
|
193 |
+
</blockquote>
|
194 |
+
|
195 |
+
<A NAME=speech22><b>NORTHUMBERLAND</b></a>
|
196 |
+
<blockquote>
|
197 |
+
<A NAME=77>How doth my son and brother?</A><br>
|
198 |
+
<A NAME=78>Thou tremblest; and the whiteness in thy cheek</A><br>
|
199 |
+
<A NAME=79>Is apter than thy tongue to tell thy errand.</A><br>
|
200 |
+
<A NAME=80>Even such a man, so faint, so spiritless,</A><br>
|
201 |
+
<A NAME=81>So dull, so dead in look, so woe-begone,</A><br>
|
202 |
+
<A NAME=82>Drew Priam's curtain in the dead of night,</A><br>
|
203 |
+
<A NAME=83>And would have told him half his Troy was burnt;</A><br>
|
204 |
+
<A NAME=84>But Priam found the fire ere he his tongue,</A><br>
|
205 |
+
<A NAME=85>And I my Percy's death ere thou report'st it.</A><br>
|
206 |
+
<A NAME=86>This thou wouldst say, 'Your son did thus and thus;</A><br>
|
207 |
+
<A NAME=87>Your brother thus: so fought the noble Douglas:'</A><br>
|
208 |
+
<A NAME=88>Stopping my greedy ear with their bold deeds:</A><br>
|
209 |
+
<A NAME=89>But in the end, to stop my ear indeed,</A><br>
|
210 |
+
<A NAME=90>Thou hast a sigh to blow away this praise,</A><br>
|
211 |
+
<A NAME=91>Ending with 'Brother, son, and all are dead.'</A><br>
|
212 |
+
</blockquote>
|
213 |
+
|
214 |
+
<A NAME=speech23><b>MORTON</b></a>
|
215 |
+
<blockquote>
|
216 |
+
<A NAME=92>Douglas is living, and your brother, yet;</A><br>
|
217 |
+
<A NAME=93>But, for my lord your son--</A><br>
|
218 |
+
</blockquote>
|
219 |
+
|
220 |
+
<A NAME=speech24><b>NORTHUMBERLAND</b></a>
|
221 |
+
<blockquote>
|
222 |
+
<A NAME=94>Why, he is dead.</A><br>
|
223 |
+
<A NAME=95>See what a ready tongue suspicion hath!</A><br>
|
224 |
+
<A NAME=96>He that but fears the thing he would not know</A><br>
|
225 |
+
<A NAME=97>Hath by instinct knowledge from others' eyes</A><br>
|
226 |
+
<A NAME=98>That what he fear'd is chanced. Yet speak, Morton;</A><br>
|
227 |
+
<A NAME=99>Tell thou an earl his divination lies,</A><br>
|
228 |
+
<A NAME=100>And I will take it as a sweet disgrace</A><br>
|
229 |
+
<A NAME=101>And make thee rich for doing me such wrong.</A><br>
|
230 |
+
</blockquote>
|
231 |
+
|
232 |
+
<A NAME=speech25><b>MORTON</b></a>
|
233 |
+
<blockquote>
|
234 |
+
<A NAME=102>You are too great to be by me gainsaid:</A><br>
|
235 |
+
<A NAME=103>Your spirit is too true, your fears too certain.</A><br>
|
236 |
+
</blockquote>
|
237 |
+
|
238 |
+
<A NAME=speech26><b>NORTHUMBERLAND</b></a>
|
239 |
+
<blockquote>
|
240 |
+
<A NAME=104>Yet, for all this, say not that Percy's dead.</A><br>
|
241 |
+
<A NAME=105>I see a strange confession in thine eye:</A><br>
|
242 |
+
<A NAME=106>Thou shakest thy head and hold'st it fear or sin</A><br>
|
243 |
+
<A NAME=107>To speak a truth. If he be slain, say so;</A><br>
|
244 |
+
<A NAME=108>The tongue offends not that reports his death:</A><br>
|
245 |
+
<A NAME=109>And he doth sin that doth belie the dead,</A><br>
|
246 |
+
<A NAME=110>Not he which says the dead is not alive.</A><br>
|
247 |
+
<A NAME=111>Yet the first bringer of unwelcome news</A><br>
|
248 |
+
<A NAME=112>Hath but a losing office, and his tongue</A><br>
|
249 |
+
<A NAME=113>Sounds ever after as a sullen bell,</A><br>
|
250 |
+
<A NAME=114>Remember'd tolling a departing friend.</A><br>
|
251 |
+
</blockquote>
|
252 |
+
|
253 |
+
<A NAME=speech27><b>LORD BARDOLPH</b></a>
|
254 |
+
<blockquote>
|
255 |
+
<A NAME=115>I cannot think, my lord, your son is dead.</A><br>
|
256 |
+
</blockquote>
|
257 |
+
|
258 |
+
<A NAME=speech28><b>MORTON</b></a>
|
259 |
+
<blockquote>
|
260 |
+
<A NAME=116>I am sorry I should force you to believe</A><br>
|
261 |
+
<A NAME=117>That which I would to God I had not seen;</A><br>
|
262 |
+
<A NAME=118>But these mine eyes saw him in bloody state,</A><br>
|
263 |
+
<A NAME=119>Rendering faint quittance, wearied and out-breathed,</A><br>
|
264 |
+
<A NAME=120>To Harry Monmouth; whose swift wrath beat down</A><br>
|
265 |
+
<A NAME=121>The never-daunted Percy to the earth,</A><br>
|
266 |
+
<A NAME=122>From whence with life he never more sprung up.</A><br>
|
267 |
+
<A NAME=123>In few, his death, whose spirit lent a fire</A><br>
|
268 |
+
<A NAME=124>Even to the dullest peasant in his camp,</A><br>
|
269 |
+
<A NAME=125>Being bruited once, took fire and heat away</A><br>
|
270 |
+
<A NAME=126>From the best temper'd courage in his troops;</A><br>
|
271 |
+
<A NAME=127>For from his metal was his party steel'd;</A><br>
|
272 |
+
<A NAME=128>Which once in him abated, all the rest</A><br>
|
273 |
+
<A NAME=129>Turn'd on themselves, like dull and heavy lead:</A><br>
|
274 |
+
<A NAME=130>And as the thing that's heavy in itself,</A><br>
|
275 |
+
<A NAME=131>Upon enforcement flies with greatest speed,</A><br>
|
276 |
+
<A NAME=132>So did our men, heavy in Hotspur's loss,</A><br>
|
277 |
+
<A NAME=133>Lend to this weight such lightness with their fear</A><br>
|
278 |
+
<A NAME=134>That arrows fled not swifter toward their aim</A><br>
|
279 |
+
<A NAME=135>Than did our soldiers, aiming at their safety,</A><br>
|
280 |
+
<A NAME=136>Fly from the field. Then was the noble Worcester</A><br>
|
281 |
+
<A NAME=137>Too soon ta'en prisoner; and that furious Scot,</A><br>
|
282 |
+
<A NAME=138>The bloody Douglas, whose well-labouring sword</A><br>
|
283 |
+
<A NAME=139>Had three times slain the appearance of the king,</A><br>
|
284 |
+
<A NAME=140>'Gan vail his stomach and did grace the shame</A><br>
|
285 |
+
<A NAME=141>Of those that turn'd their backs, and in his flight,</A><br>
|
286 |
+
<A NAME=142>Stumbling in fear, was took. The sum of all</A><br>
|
287 |
+
<A NAME=143>Is that the king hath won, and hath sent out</A><br>
|
288 |
+
<A NAME=144>A speedy power to encounter you, my lord,</A><br>
|
289 |
+
<A NAME=145>Under the conduct of young Lancaster</A><br>
|
290 |
+
<A NAME=146>And Westmoreland. This is the news at full.</A><br>
|
291 |
+
</blockquote>
|
292 |
+
|
293 |
+
<A NAME=speech29><b>NORTHUMBERLAND</b></a>
|
294 |
+
<blockquote>
|
295 |
+
<A NAME=147>For this I shall have time enough to mourn.</A><br>
|
296 |
+
<A NAME=148>In poison there is physic; and these news,</A><br>
|
297 |
+
<A NAME=149>Having been well, that would have made me sick,</A><br>
|
298 |
+
<A NAME=150>Being sick, have in some measure made me well:</A><br>
|
299 |
+
<A NAME=151>And as the wretch, whose fever-weaken'd joints,</A><br>
|
300 |
+
<A NAME=152>Like strengthless hinges, buckle under life,</A><br>
|
301 |
+
<A NAME=153>Impatient of his fit, breaks like a fire</A><br>
|
302 |
+
<A NAME=154>Out of his keeper's arms, even so my limbs,</A><br>
|
303 |
+
<A NAME=155>Weaken'd with grief, being now enraged with grief,</A><br>
|
304 |
+
<A NAME=156>Are thrice themselves. Hence, therefore, thou nice crutch!</A><br>
|
305 |
+
<A NAME=157>A scaly gauntlet now with joints of steel</A><br>
|
306 |
+
<A NAME=158>Must glove this hand: and hence, thou sickly quoif!</A><br>
|
307 |
+
<A NAME=159>Thou art a guard too wanton for the head</A><br>
|
308 |
+
<A NAME=160>Which princes, flesh'd with conquest, aim to hit.</A><br>
|
309 |
+
<A NAME=161>Now bind my brows with iron; and approach</A><br>
|
310 |
+
<A NAME=162>The ragged'st hour that time and spite dare bring</A><br>
|
311 |
+
<A NAME=163>To frown upon the enraged Northumberland!</A><br>
|
312 |
+
<A NAME=164>Let heaven kiss earth! now let not Nature's hand</A><br>
|
313 |
+
<A NAME=165>Keep the wild flood confined! let order die!</A><br>
|
314 |
+
<A NAME=166>And let this world no longer be a stage</A><br>
|
315 |
+
<A NAME=167>To feed contention in a lingering act;</A><br>
|
316 |
+
<A NAME=168>But let one spirit of the first-born Cain</A><br>
|
317 |
+
<A NAME=169>Reign in all bosoms, that, each heart being set</A><br>
|
318 |
+
<A NAME=170>On bloody courses, the rude scene may end,</A><br>
|
319 |
+
<A NAME=171>And darkness be the burier of the dead!</A><br>
|
320 |
+
</blockquote>
|
321 |
+
|
322 |
+
<A NAME=speech30><b>TRAVERS</b></a>
|
323 |
+
<blockquote>
|
324 |
+
<A NAME=172>This strained passion doth you wrong, my lord.</A><br>
|
325 |
+
</blockquote>
|
326 |
+
|
327 |
+
<A NAME=speech31><b>LORD BARDOLPH</b></a>
|
328 |
+
<blockquote>
|
329 |
+
<A NAME=173>Sweet earl, divorce not wisdom from your honour.</A><br>
|
330 |
+
</blockquote>
|
331 |
+
|
332 |
+
<A NAME=speech32><b>MORTON</b></a>
|
333 |
+
<blockquote>
|
334 |
+
<A NAME=174>The lives of all your loving complices</A><br>
|
335 |
+
<A NAME=175>Lean on your health; the which, if you give o'er</A><br>
|
336 |
+
<A NAME=176>To stormy passion, must perforce decay.</A><br>
|
337 |
+
<A NAME=177>You cast the event of war, my noble lord,</A><br>
|
338 |
+
<A NAME=178>And summ'd the account of chance, before you said</A><br>
|
339 |
+
<A NAME=179>'Let us make head.' It was your presurmise,</A><br>
|
340 |
+
<A NAME=180>That, in the dole of blows, your son might drop:</A><br>
|
341 |
+
<A NAME=181>You knew he walk'd o'er perils, on an edge,</A><br>
|
342 |
+
<A NAME=182>More likely to fall in than to get o'er;</A><br>
|
343 |
+
<A NAME=183>You were advised his flesh was capable</A><br>
|
344 |
+
<A NAME=184>Of wounds and scars and that his forward spirit</A><br>
|
345 |
+
<A NAME=185>Would lift him where most trade of danger ranged:</A><br>
|
346 |
+
<A NAME=186>Yet did you say 'Go forth;' and none of this,</A><br>
|
347 |
+
<A NAME=187>Though strongly apprehended, could restrain</A><br>
|
348 |
+
<A NAME=188>The stiff-borne action: what hath then befallen,</A><br>
|
349 |
+
<A NAME=189>Or what hath this bold enterprise brought forth,</A><br>
|
350 |
+
<A NAME=190>More than that being which was like to be?</A><br>
|
351 |
+
</blockquote>
|
352 |
+
|
353 |
+
<A NAME=speech33><b>LORD BARDOLPH</b></a>
|
354 |
+
<blockquote>
|
355 |
+
<A NAME=191>We all that are engaged to this loss</A><br>
|
356 |
+
<A NAME=192>Knew that we ventured on such dangerous seas</A><br>
|
357 |
+
<A NAME=193>That if we wrought our life 'twas ten to one;</A><br>
|
358 |
+
<A NAME=194>And yet we ventured, for the gain proposed</A><br>
|
359 |
+
<A NAME=195>Choked the respect of likely peril fear'd;</A><br>
|
360 |
+
<A NAME=196>And since we are o'erset, venture again.</A><br>
|
361 |
+
<A NAME=197>Come, we will all put forth, body and goods.</A><br>
|
362 |
+
</blockquote>
|
363 |
+
|
364 |
+
<A NAME=speech34><b>MORTON</b></a>
|
365 |
+
<blockquote>
|
366 |
+
<A NAME=198>'Tis more than time: and, my most noble lord,</A><br>
|
367 |
+
<A NAME=199>I hear for certain, and do speak the truth,</A><br>
|
368 |
+
<A NAME=200>The gentle Archbishop of York is up</A><br>
|
369 |
+
<A NAME=201>With well-appointed powers: he is a man</A><br>
|
370 |
+
<A NAME=202>Who with a double surety binds his followers.</A><br>
|
371 |
+
<A NAME=203>My lord your son had only but the corpse,</A><br>
|
372 |
+
<A NAME=204>But shadows and the shows of men, to fight;</A><br>
|
373 |
+
<A NAME=205>For that same word, rebellion, did divide</A><br>
|
374 |
+
<A NAME=206>The action of their bodies from their souls;</A><br>
|
375 |
+
<A NAME=207>And they did fight with queasiness, constrain'd,</A><br>
|
376 |
+
<A NAME=208>As men drink potions, that their weapons only</A><br>
|
377 |
+
<A NAME=209>Seem'd on our side; but, for their spirits and souls,</A><br>
|
378 |
+
<A NAME=210>This word, rebellion, it had froze them up,</A><br>
|
379 |
+
<A NAME=211>As fish are in a pond. But now the bishop</A><br>
|
380 |
+
<A NAME=212>Turns insurrection to religion:</A><br>
|
381 |
+
<A NAME=213>Supposed sincere and holy in his thoughts,</A><br>
|
382 |
+
<A NAME=214>He's followed both with body and with mind;</A><br>
|
383 |
+
<A NAME=215>And doth enlarge his rising with the blood</A><br>
|
384 |
+
<A NAME=216>Of fair King Richard, scraped from Pomfret stones;</A><br>
|
385 |
+
<A NAME=217>Derives from heaven his quarrel and his cause;</A><br>
|
386 |
+
<A NAME=218>Tells them he doth bestride a bleeding land,</A><br>
|
387 |
+
<A NAME=219>Gasping for life under great Bolingbroke;</A><br>
|
388 |
+
<A NAME=220>And more and less do flock to follow him.</A><br>
|
389 |
+
</blockquote>
|
390 |
+
|
391 |
+
<A NAME=speech35><b>NORTHUMBERLAND</b></a>
|
392 |
+
<blockquote>
|
393 |
+
<A NAME=221>I knew of this before; but, to speak truth,</A><br>
|
394 |
+
<A NAME=222>This present grief had wiped it from my mind.</A><br>
|
395 |
+
<A NAME=223>Go in with me; and counsel every man</A><br>
|
396 |
+
<A NAME=224>The aptest way for safety and revenge:</A><br>
|
397 |
+
<A NAME=225>Get posts and letters, and make friends with speed:</A><br>
|
398 |
+
<A NAME=226>Never so few, and never yet more need.</A><br>
|
399 |
+
<p><i>Exeunt</i></p>
|
400 |
+
</blockquote>
|
401 |
+
<table width="100%" bgcolor="#CCF6F6">
|
402 |
+
<tr><td class="nav" align="center">
|
403 |
+
<a href="/Shakespeare">Shakespeare homepage</A>
|
404 |
+
| <A href="/Shakespeare/2henryiv/">Henry IV, part 2</A>
|
405 |
+
| Act 1, Scene 1
|
406 |
+
<br>
|
407 |
+
<a href="2henryiv.0.0.html">Previous scene</A>
|
408 |
+
| <a href="2henryiv.1.2.html">Next scene</A>
|
409 |
+
</table>
|
410 |
+
|
411 |
+
</body>
|
412 |
+
</html>
|
413 |
+
|
414 |
+
|