2005-11-19 12:06:54 +00:00
|
|
|
<?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>
|
2006-05-10 18:19:13 +00:00
|
|
|
<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>
|
|
|
|
<string>awardCredits: 1000</string>
|
|
|
|
<string>addMissionText: conhunt-thief-captured</string><!-- missiontext key -->
|
|
|
|
</array>
|
|
|
|
</dict>
|
|
|
|
</array>
|
|
|
|
</dict>
|
2005-11-19 12:06:54 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|