197119ccc8
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@1473 127b21dd-08f5-0310-b4b7-95ae10353056
48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>constrictor-mission-thief</key>
|
|
<dict>
|
|
<key>random_seed</key>
|
|
<string>1 3 5 7 11 13</string><!-- fix the name and details, but use the key to keep it secret -->
|
|
<key>bounty</key>
|
|
<integer>1000</integer><!-- not actually used, we do the reward in the script -->
|
|
<key>origin</key>
|
|
<integer>7</integer><!-- system number seven (Lave in Galaxy 0) -->
|
|
<key>script_actions</key>
|
|
<!--
|
|
check if docked
|
|
print congratulatory message from the Imperial Navy
|
|
award a special bounty
|
|
-->
|
|
<array>
|
|
<dict>
|
|
<key>conditions</key>
|
|
<array>
|
|
<string>status_string equal STATUS_DOCKED</string>
|
|
</array>
|
|
<key>do</key>
|
|
<array>
|
|
<dict>
|
|
<key>conditions</key>
|
|
<array>
|
|
<string>gui_screen_string notequal GUI_SCREEN_MISSION</string>
|
|
</array>
|
|
<key>do</key>
|
|
<array>
|
|
<string>setMissionMusic: none</string>
|
|
<string>setMissionImage: none</string>
|
|
<string>showShipModel: none</string>
|
|
<string>setGuiToMissionScreen</string>
|
|
</array>
|
|
</dict>
|
|
<string>awardCredits: 1000</string>
|
|
<string>addMissionText: conhunt-thief-captured</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|