084248f98f
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@3314 127b21dd-08f5-0310-b4b7-95ae10353056
29 lines
528 B
Plaintext
29 lines
528 B
Plaintext
/* List of roles pirates will attack.
|
|
|
|
Ships whose primary role is among those listed can be located with the AI
|
|
methods scanForNearestMerchantman and scanForRandomMerchantman. They can
|
|
also be identified with the JavaScript property isPirateVictim.
|
|
*/
|
|
|
|
(
|
|
"player",
|
|
"trader",
|
|
"shuttle",
|
|
|
|
// Known trader-like roles from pre-1.70 plug-ins
|
|
"delta",
|
|
"gemini",
|
|
"starseeker",
|
|
"liner",
|
|
"strelka",
|
|
"trident",
|
|
"coachwhip",
|
|
"coral",
|
|
"moraytransport",
|
|
"woma",
|
|
"fueltransport",
|
|
"att1",
|
|
"impfreighter",
|
|
"imptanker"
|
|
)
|