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 SYREEN_STRINGS_H
20 #define SYREEN_STRINGS_H
21 
22 enum
23 {
24 	NULL_PHRASE,
25 	HELLO_BEFORE_AMBUSH_1,
26 	HELLO_BEFORE_AMBUSH_2,
27 	HELLO_BEFORE_AMBUSH_3,
28 	HELLO_BEFORE_AMBUSH_4,
29 	we_are_vice_squad,
30 	OK_VICE,
31 	we_are_the_one_for_you_baby,
32 	MAYBE_CAPTAIN,
33 	we_are_vindicator0,
34 	we_are_vindicator1,
35 	we_are_vindicator2,
36 	WELCOME_VINDICATOR0,
37 	WELCOME_VINDICATOR1,
38 	WELCOME_VINDICATOR2,
39 	we_are_impressed,
40 	SO_AM_I_CAPTAIN,
41 	HOW_CAN_YOU_BE_HERE,
42 	we_here_to_help,
43 	NO_NEED_HELP,
44 	we_need_help,
45 	CANT_GIVE_HELP,
46 	i_need_you,
47 	OK_NEED,
48 	i_need_touch_o_vision,
49 	TOUCH_O_VISION,
50 	know_about_deep_children,
51 	WHAT_ABOUT_DEEP_CHILDREN,
52 	mycons_involved,
53 	WHAT_PROOF,
54 	have_no_proof,
55 	NEED_PROOF,
56 	have_proof,
57 	SEE_PROOF,
58 	look_at_egg_sacks,
59 	HORRIBLE_TRUTH,
60 	what_doing_here,
61 	OUR_NEW_WORLD,
62 	what_about_war,
63 	ABOUT_WAR,
64 	help_us,
65 	WONT_HELP,
66 	what_about_history,
67 	BEFORE_WAR,
68 	what_about_homeworld,
69 	ABOUT_HOMEWORLD,
70 	what_happened,
71 	DONT_KNOW_HOW,
72 	what_about_outfit,
73 	HOPE_YOU_LIKE_IT,
74 	where_mates,
75 	MATES_KILLED,
76 	get_lonely,
77 	MAKE_OUT_ALL_RIGHT,
78 	bye,
79 	GOODBYE,
80 	MUST_ACT,
81 	whats_next_step,
82 	OPEN_VAULT,
83 	where_is_it,
84 	DONT_KNOW_WHERE,
85 	been_there,
86 	GREAT,
87 	GIVE_SHUTTLE,
88 	im_on_my_way,
89 	doing_this_for_you,
90 	if_i_die,
91 	GOOD_LUCK,
92 	OK_FOUND_VAULT,
93 	what_now,
94 	HERES_THE_PLAN,
95 	whats_my_reward,
96 	HERES_REWARD,
97 	bye_after_vault,
98 	GOODBYE_AFTER_VAULT,
99 	HELLO_AFTER_AMBUSH_1,
100 	HELLO_AFTER_AMBUSH_2,
101 	HELLO_AFTER_AMBUSH_3,
102 	HELLO_AFTER_AMBUSH_4,
103 	what_now_after_ambush,
104 	DO_THIS_AFTER_AMBUSH,
105 	what_about_you,
106 	ABOUT_ME,
107 	whats_up_after_ambush,
108 	GENERAL_INFO_AFTER_AMBUSH_1,
109 	GENERAL_INFO_AFTER_AMBUSH_2,
110 	GENERAL_INFO_AFTER_AMBUSH_3,
111 	GENERAL_INFO_AFTER_AMBUSH_4,
112 	bye_after_ambush,
113 	GOODBYE_AFTER_AMBUSH,
114 	FOUND_VAULT_YET_1,
115 	FOUND_VAULT_YET_2,
116 	vault_hint,
117 	OK_HINT,
118 	found_vault,
119 	bye_before_vault,
120 	GOODBYE_BEFORE_VAULT,
121 	what_do_i_get_for_this,
122 	GRATITUDE,
123 	not_sure,
124 	PLEASE,
125 	READY_FOR_AMBUSH,
126 	repeat_plan,
127 	OK_REPEAT_PLAN,
128 	bye_before_ambush,
129 	GOODBYE_BEFORE_AMBUSH,
130 	what_about_us,
131 	ABOUT_US,
132 	MORE_COMFORTABLE,
133 	in_the_spirit,
134 	OK_SPIRIT,
135 	what_in_mind,
136 	SOMETHING_LIKE_THIS,
137 	hands_off,
138 	OK_WONT_USE_HANDS,
139 	why_lights_off,
140 	LIGHTS_OFF_BECAUSE,
141 	evil_monster,
142 	NOT_EVIL_MONSTER,
143 	disease,
144 	JUST_RELAX,
145 	what_happens_if_i_touch_this,
146 	THIS_HAPPENS,
147 	are_you_sure_this_is_ok,
148 	YES_SURE,
149 	boy_they_never_taught,
150 	THEN_LET_ME_TEACH,
151 	not_much_more_to_say,
152 	THEN_STOP_TALKING,
153 	LATER,
154 	SEX_GOODBYE,
155 	OUT_TAKES,
156 };
157 
158 #endif /* _STRINGS_H */
159