Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 |
class AbilityConstructionHealthBonus extends EngineerAbility config(UT2004RPG) abstract; var config float HealthBonus; static simulated function int Cost(RPGPlayerDataObject Data, int CurrentLevel) { local bool ok; local int x; for (x = 0; x < Data.Abilities.length; x++) if (Data.Abilities[x] == class'ClassEngineer') ok = true; if(!ok) { if(CurrentLevel > 0) log("Warning:"@data.Name@"has"@default.class@"Level"@CurrentLevel@"but does not have an associated Class to allow them to purchase it"); return 0; } return super.Cost(Data, CurrentLevel); } static simulated function ModifyConstruction(Vehicle Other, int AbilityLevel) { Other.HealthMax += Other.HealthMax * (Default.HealthBonus * AbilityLevel); Other.Health += Other.Health * (Default.HealthBonus * AbilityLevel); Other.SuperHealthMax += Other.SuperHealthMax * (Default.HealthBonus * AbilityLevel); } defaultproperties { AbilityName="Constructions: Health Bonus" Description="Gives an additional health bonus to your summoned constructions. Each level adds 30% health to your construction's max health. (Max Level: 10)|You must be an Engineer to purchase this skill.|Cost (per level): 2,6,10,14,18,22,26,30,34,38" StartingCost=2 CostAddPerLevel=4 MaxLevel=10 HealthBonus=0.300000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |