View Single Post
  #2341  
Old June 11th, 2006, 02:08 PM
Ed Kolis's Avatar

Ed Kolis Ed Kolis is offline
General
 
Join Date: Apr 2001
Location: Cincinnati, Ohio, USA
Posts: 4,547
Thanks: 1
Thanked 7 Times in 5 Posts
Ed Kolis is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

In MOO2, fighters could carry powerful bombs which ships could only use against planets, but fighters (due to their agility) could use against ships as well. Why couldn't this be done in SE5? After all, fighters in SE4 have Small Rocket Pods, which are less than 10% the size and cost of CSM's but do comparable damage, just with a shorter range and longer reload time, and they're DF rather than seekers
All in all, I think it would be best for both styles of emissive armor to be available to modders... who knows, with the scripting engine, they might be already! For all I know, you can do something like this to emulate the SF way:
Code:

/* Functions.txt */
Name := CalculateHullDamage
Num Parameters := 4
Parameter 1 Type := Integer
Parameter 1 Name := amount
Parameter 2 Type := DamageType
Parameter 2 Name := type
Parameter 3 Type := Unit
Parameter 3 Name := source
Parameter 2 Type := Unit
Parameter 2 Name := target
Return Value := amount * type.HullDamage * (1.0 - target.Abilities["Emissive Armor"])


And to emulate the SE4 way:
Code:

/* Functions.txt */
Name := CalculateHullDamage
Num Parameters := 4
Parameter 1 Type := Integer
Parameter 1 Name := amount
Parameter 2 Type := DamageType
Parameter 2 Name := type
Parameter 3 Type := Unit
Parameter 3 Name := source
Parameter 2 Type := Unit
Parameter 2 Name := target
Return Value := amount * type.HullDamage - target.Abilities["Emissive Armor"]



But of course all this is only speculation
__________________
The Ed draws near! What dost thou deaux?
Reply With Quote