Aelthai
Legendary Miss Fixit
|
quote:
Trescol: The following are used for all three guests PortalLevel = Max(Level + 3, Floor(0.0008 * Level^2 + 0.84 * Level + 10.375)) Rep is your Rep with that particular Guest BaseSPCost = Round(0.13125 * (38.1 + 2.3375 * PortalLevel + 0.01125 * PortalLevel^2)); RepSPCost = BaseSPCost * (1 - Rep * 0.05); If the Guest does not want to be there, the SP cost is double the RepSPCost The Guests attack 100% at 0 CHA (as if they had a TD of -66). Parsha one hit attack Earth Melee Base = Round(0.36 * (4 + 0.5 * PortalLevel + 0.005 * PortalLevel^2)) Rand = Round(0.36 * (13 + 1.25 * PortalLevel + 0.005 * PortalLevel^2)) Stat = Round(0.675 * (200 + 8.8 * PortalLevel)) BtH = Math.floor(PortalLevel / 4) Note: Stat appears to be bugged. Female Ch. Two possible attacks 50/50 chance of each One Hit Darkness Magic or Light Magic Base = Round(0.36 * (4 + 0.5 * PortalLevel + 0.005 * PortalLevel^2)) Rand = Round(0.36 * (13 + 1.25 * PortalLevel + 0.005 * PortalLevel^2)) Stat = Round(0.675 * (200 + 8.8 * PortalLevel)) BtH = Math.floor(PortalLevel / 4) Note: Stat appears to be bugged. Male Ch. Two possible attacks 50/50 chance of each Two Hit Earth Melee Each hit is: Base = Floor(Round(0.3 * (4 + 0.5 * PortalLevel + 0.005 * PortalLevel^2)) / 2 * 1.0625) Rand = Floor(Round(0.3 * (13 + 1.25 * PortalLevel + 0.005 * PortalLevel^2)) / 2 * 1.0625) Stat = Floor(Round(0.5625 * (200 + 8.8 * PortalLevel)) / 2 * 1.0625) BtH = Floor(PortalLevel / 4) - 5; one Hit Earth Ranged Base = Floor(Round(0.3 * (4 + 0.5 * PortalLevel + 0.005 * PortalLevel^2)) * 0.9411765) Rand = Floor(Round(0.3 * (13 + 1.25 * PortalLevel + 0.005 * PortalLevel^2)) * 0.9411765) Stat = Floor(Round(0.5625 * (200 + 8.8 * PortalLevel)) * 0.9411765) BtH = Floor(PortalLevel / 4) + 5; Note: Stat appears to be bugged. Kairula: The following are used for both guests PortalLevel = Max(Level + 3, Floor(0.0008 * Level^2 + 0.84 * Level + 10.375)) Rep is your Rep with that particular Guest BaseSPCost = Round(0.13125 * (38.1 + 2.3375 * PortalLevel + 0.01125 * PortalLevel^2)); RepSPCost = BaseSPCost * (1 - Rep * 0.05); If the Guest does not want to be there, the SP cost is double the RepSPCost The Guests attack 100% at 0 CHA (as if they had a TD of -66). red odanata 50/50 chance of each attack Energy Melee or Energy Ranged one hit Each is: Base = Round(0.36 * (4 + 0.5 * PortalLevel + 0.005 * PortalLevel^2)) Rand = Round(0.36 * (13 + 1.25 * PortalLevel + 0.005 * PortalLevel^2)) Stat = Round(0.675 * (200 + 8.8 * PortalLevel)) BtH = Math.floor(PortalLevel / 4) Note: Stat appears to be bugged. green odanata two hits Wind Melee Each hit is: Base = Round(0.36 * (4 + 0.5 * PortalLevel + 0.005 * PortalLevel^2) / 2 * 1.0625) Rand = Round(0.36 * (13 + 1.25 * PortalLevel + 0.005 * PortalLevel^2) / 2 * 1.0625) Stat = Round(0.675 * (200 + 8.8 * PortalLevel) / 2 * 1.0625) BtH = Math.floor(PortalLevel / 4) - 5 four hits Wind Ranged Each hit is: Base = Round(0.36 * (4 + 0.5 * PortalLevel + 0.005 * PortalLevel^2) / 4 * 0.9411765) Rand = Round(0.36 * (13 + 1.25 * PortalLevel + 0.005 * PortalLevel^2) / 4 * 0.9411765) Stat = Round(0.675 * (200 + 8.8 * PortalLevel) / 4 * 0.9411765) BtH = Math.floor(PortalLevel / 4) + 5 Note: Stat appears to be bugged. All added. Thanks! ~In Media Res
< Message edited by In Media Res -- 4/7/2009 1:48:26 >
|