File: flf_commodity_run.lua

package info (click to toggle)
naev 0.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 386,084 kB
  • sloc: ansic: 93,149; xml: 87,292; python: 2,347; sh: 904; makefile: 654; lisp: 162; awk: 4
file content (49 lines) | stat: -rw-r--r-- 2,042 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
--[[
<?xml version='1.0' encoding='utf8'?>
<mission name="FLF Commodity Run">
  <avail>
   <priority>5</priority>
   <cond>var.peek("commodity_runs_active") == nil or var.peek("commodity_runs_active") &lt; 3</cond>
   <chance>90</chance>
   <location>Computer</location>
   <faction>FLF</faction>
  </avail>
  <notes>
   <done_misn name="Deal with the FLF agent"/>
  </notes>
 </mission>
 --]]
--[[

   FLF Commodity Delivery Mission

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.

--]]

require "missions/neutral/commodity_run.lua"

misn_title = _("FLF: %s Supply Run")
misn_desc = _("There is a need to supply %s with more %s. Find a planet where you can buy this commodity and bring as much of it back as possible.")

cargo_land = {}
cargo_land[1] = _("The containers of %s are carried out of your ship and tallied. After making sure nothing was missed from your cargo hold, you are paid %s, thanked for assisting the FLF's operations, and dismissed.")
cargo_land[2] = _("The containers of %s are quickly and efficiently unloaded and transported to the storage facility. The FLF officer in charge thanks you with a credit chip worth %s.")
cargo_land[3] = _("The containers of %s are unloaded from your vessel by a team of FLF soldiers who are in no rush to finish, eventually delivering %s after the number of tonnes is determined.")

osd_title = _("FLF Supply Run")


commchoices = { "Food", "Ore", "Industrial Goods", "Medicine", "Water" }