1 //Copyright Paul Reiche, Fred Ford. 1992-2002
2 
3 /*
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18 
19 #ifndef ORZ_STRINGS_H
20 #define ORZ_STRINGS_H
21 
22 enum
23 {
24 	NULL_PHRASE,
25 	INIT_HELLO,
26 	who_you,
27 	WE_ARE_ORZ,
28 	why_here,
29 	HERE_BECAUSE,
30 	ALLIED_HOMEWORLD_HELLO_1,
31 	ALLIED_HOMEWORLD_HELLO_2,
32 	ALLIED_HOMEWORLD_HELLO_3,
33 	ALLIED_HOMEWORLD_HELLO_4,
34 	ALLIED_SPACE_HELLO_1,
35 	ALLIED_SPACE_HELLO_2,
36 	ALLIED_SPACE_HELLO_3,
37 	ALLIED_SPACE_HELLO_4,
38 	whats_up_ally,
39 	GENERAL_INFO_ALLY_1,
40 	GENERAL_INFO_ALLY_2,
41 	GENERAL_INFO_ALLY_3,
42 	GENERAL_INFO_ALLY_4,
43 	more_about_you,
44 	ABOUT_US_1,
45 	ABOUT_US_2,
46 	ABOUT_US_3,
47 	ABOUT_US_4,
48 	where_androsyn,
49 	DISEMBLE_ABOUT_ANDROSYN,
50 	must_know_about_androsyn,
51 	KNOW_TOO_MUCH,
52 	dont_really_care,
53 	YOU_ARE_OUR_FRIENDS,
54 	about_andro_1,
55 	FORGET_ANDRO_1,
56 	about_andro_2,
57 	FORGET_ANDRO_2,
58 	about_andro_3,
59 	BLEW_IT,
60 	NEUTRAL_HOMEWORLD_HELLO_1,
61 	NEUTRAL_HOMEWORLD_HELLO_2,
62 	NEUTRAL_HOMEWORLD_HELLO_3,
63 	NEUTRAL_HOMEWORLD_HELLO_4,
64 	NEUTRAL_SPACE_HELLO_1,
65 	NEUTRAL_SPACE_HELLO_2,
66 	NEUTRAL_SPACE_HELLO_3,
67 	NEUTRAL_SPACE_HELLO_4,
68 	hostile_1,
69 	HOSTILITY_IS_BAD_1,
70 	hostile_2,
71 	HOSTILITY_IS_BAD_2,
72 	we_are_vindicator0,
73 	we_are_vindicator1,
74 	we_are_vindicator2,
75 	NICE_TO_MEET_YOU,
76 	seem_like_nice_guys,
77 	ARE_NICE_WANT_ALLY,
78 	talk_about_alliance,
79 	OK_TALK_ALLIANCE,
80 	yes_alliance,
81 	GREAT,
82 	no_alliance,
83 	MAYBE_LATER,
84 	decide_later,
85 	OK_LATER,
86 	why_so_trusting,
87 	TRUSTING_BECAUSE,
88 	bye_neutral,
89 	GOODBYE_NEUTRAL,
90 	ANGRY_SPACE_HELLO_1,
91 	ANGRY_SPACE_HELLO_2,
92 	ANGRY_HOMEWORLD_HELLO_1,
93 	ANGRY_HOMEWORLD_HELLO_2,
94 	whats_up_angry,
95 	GENERAL_INFO_ANGRY_1,
96 	GENERAL_INFO_ANGRY_2,
97 	were_sorry,
98 	APOLOGY_ACCEPTED,
99 	insult_1,
100 	insult_2,
101 	insult_3,
102 	insult_4,
103 	insult_5,
104 	insult_6,
105 	insult_7,
106 	insult_8,
107 	INSULTED_1,
108 	INSULTED_2,
109 	INSULTED_3,
110 	INSULTED_4,
111 	bye_angry,
112 	GOODBYE_ANGRY,
113 	ANGRY_TAALO_HELLO_1,
114 	ANGRY_TAALO_HELLO_2,
115 	FRIENDLY_ALLIED_TAALO_HELLO_1,
116 	FRIENDLY_ALLIED_TAALO_HELLO_2,
117 	demand_to_land,
118 	NO_DEMAND,
119 	ASK_NICELY,
120 	why_you_here,
121 	ANGRY_EXPLANATION,
122 	FRIENDLY_EXPLANATION,
123 	what_is_this_place,
124 	FRIENDLY_PLACE,
125 	ANGRY_PLACE,
126 	may_we_land,
127 	SURE_LAND,
128 	ALLIES_CAN_VISIT,
129 	make_alliance,
130 	CANT_ALLY_HERE,
131 	why_busy,
132 	BUSY_BECAUSE,
133 	bye_taalo,
134 	bye_ally,
135 	GOODBYE_ALLY,
136 	FRIENDLY_TAALO_GOODBYE,
137 	ANGRY_TAALO_GOODBYE,
138 	HOSTILE_HELLO_1,
139 	HOSTILE_HELLO_2,
140 	OUT_TAKES,
141 };
142 
143 #endif /* _STRINGS_H */
144