Skip to content

Commit

Permalink
added lua file for thurion
Browse files Browse the repository at this point in the history
  • Loading branch information
BrknRobot committed Nov 21, 2011
1 parent 876397a commit d73cbdf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions dat/faction.xml
Expand Up @@ -122,6 +122,7 @@
<logo>thurion</logo>
<colour>grey50</colour>
<player>1</player>
<lua>thurion</lua>
<enemies>
<enemy>Pirate</enemy>
</enemies>
Expand Down
17 changes: 17 additions & 0 deletions dat/factions/thurion.lua
@@ -0,0 +1,17 @@


include "dat/factions/skel.lua"


-- Faction caps.
_fcap_kill = 10 -- Kill cap
_fdelta_distress = {-1, 0} -- Maximum change constraints
_fdelta_kill = {-5, 1} -- Maximum change constraints
_fcap_misn = 30 -- Starting mission cap, gets overwritten
_fcap_misn_var = "_fcap_thurion" -- Mission variable to use for limits
_fthis = faction.get("Thurion")


function faction_hit( current, amount, source, secondary )
return default_hit(current, amount, source, secondary)
end

0 comments on commit d73cbdf

Please sign in to comment.