mirror of
https://github.com/Rogiel/l2jserver2
synced 2026-02-01 23:42:47 +00:00
@@ -4,7 +4,7 @@
|
|||||||
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
|
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
|
||||||
<classpathentry excluding="mysql5/|db4o/" kind="src" path="src/dao"/>
|
<classpathentry excluding="mysql5/|db4o/" kind="src" path="src/dao"/>
|
||||||
<classpathentry kind="src" path="src/dao/mysql5"/>
|
<classpathentry kind="src" path="src/dao/mysql5"/>
|
||||||
<classpathentry kind="src" output="target/scripts" path="data/script/template"/>
|
<classpathentry kind="src" output="target/templates" path="data/script/template"/>
|
||||||
<classpathentry kind="src" output="target/scripts" path="data/script/quest"/>
|
<classpathentry kind="src" output="target/scripts" path="data/script/quest"/>
|
||||||
<classpathentry kind="src" output="target/scripts" path="data/script/ai"/>
|
<classpathentry kind="src" output="target/scripts" path="data/script/ai"/>
|
||||||
<classpathentry kind="src" output="target/scripts" path="data/plugin"/>
|
<classpathentry kind="src" output="target/scripts" path="data/plugin"/>
|
||||||
|
|||||||
24
config/template-compiled.xml
Normal file
24
config/template-compiled.xml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version='1.0' encoding='UTF-8' ?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
~ This file is part of l2jserver.
|
||||||
|
~
|
||||||
|
~ l2jserver 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.
|
||||||
|
~
|
||||||
|
~ l2jserver 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 l2jserver. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<scriptlist xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:noNamespaceSchemaLocation="../../contexts.xsd">
|
||||||
|
<scriptinfo root="./target/templates"/>
|
||||||
|
<compiler>com.l2jserver.service.game.scripting.impl.compiled.PrecompiledScriptCompiler</compiler>
|
||||||
|
</scriptlist>
|
||||||
1
config/template.properties
Normal file
1
config/template.properties
Normal file
@@ -0,0 +1 @@
|
|||||||
|
#template.descriptor = config/template-compiled.xml
|
||||||
@@ -30,6 +30,7 @@
|
|||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element ref="scriptinfo" minOccurs="0" maxOccurs="unbounded"/>
|
<xs:element ref="scriptinfo" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
<xs:element name="library" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
|
<xs:element name="library" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
<xs:element name="compiler" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
<xs:attribute name="root" type="xs:string" use="required"/>
|
<xs:attribute name="root" type="xs:string" use="required"/>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class AbyssWalkerTemplate extends AssassinTemplate {
|
public class AbyssWalkerTemplate extends AssassinTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public AbyssWalkerTemplate(CharacterTemplateIDProvider provider) {
|
public AbyssWalkerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ABYSS_WALKER.id),
|
super(provider.createID(CharacterClass.ABYSS_WALKER.id), CharacterClass.ABYSS_WALKER, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.ABYSS_WALKER, Point.fromXYZ(28377, 10916, -4224));
|
|
||||||
|
this.hpBase = 1096.000;
|
||||||
|
this.hpAdd = 49.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 602.800;
|
||||||
|
this.cpAdd = 27.170;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class AbyssWalkerTemplate extends AssassinTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected AbyssWalkerTemplate(CharacterTemplateID id,
|
protected AbyssWalkerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class AdventurerTemplate extends TreasureHunterTemplate {
|
public class AdventurerTemplate extends TreasureHunterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public AdventurerTemplate(CharacterTemplateIDProvider provider) {
|
public AdventurerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ADVENTURER.id),
|
super(provider.createID(CharacterClass.ADVENTURER.id), CharacterClass.ADVENTURER, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.ADVENTURER, Point.fromXYZ(-71338, 258271, -3104));
|
|
||||||
|
this.hpBase = 2623.700;
|
||||||
|
this.hpAdd = 53.120;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1443.035;
|
||||||
|
this.cpAdd = 29.216;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class AdventurerTemplate extends TreasureHunterTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected AdventurerTemplate(CharacterTemplateID id,
|
protected AdventurerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ArbalesterTemplate extends WarderTemplate {
|
public class ArbalesterTemplate extends WarderTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ArbalesterTemplate(CharacterTemplateIDProvider provider) {
|
public ArbalesterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ARBALESTER.id),
|
super(provider.createID(CharacterClass.ARBALESTER.id), CharacterClass.ARBALESTER, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.ARBALESTER, Point.fromXYZ(-125533, 38114, 1142));
|
|
||||||
|
this.hpBase = 1139.740;
|
||||||
|
this.hpAdd = 57.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 487.030;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 569.870;
|
||||||
|
this.cpAdd = 28.600;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 28;
|
attributes.intelligence = 28;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -45,15 +56,16 @@ public class ArbalesterTemplate extends WarderTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 22.6;
|
this.maleCollisionHeight = 22.6;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ArbalesterTemplate(CharacterTemplateID id,
|
protected ArbalesterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ArcanaLordTemplate extends WarlockTemplate {
|
public class ArcanaLordTemplate extends WarlockTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ArcanaLordTemplate(CharacterTemplateIDProvider provider) {
|
public ArcanaLordTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ARCANA_LORD.id),
|
super(provider.createID(CharacterClass.ARCANA_LORD.id), CharacterClass.ARCANA_LORD, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.ARCANA_LORD, Point
|
|
||||||
.fromXYZ(-90890, 248027, -3570));
|
this.hpBase = 3039.300;
|
||||||
|
this.hpAdd = 63.080;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1823.500;
|
||||||
|
this.cpAdd = 37.850;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -46,15 +56,16 @@ public class ArcanaLordTemplate extends WarlockTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ArcanaLordTemplate(CharacterTemplateID id,
|
protected ArcanaLordTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ArchmageTemplate extends SorcerorTemplate {
|
public class ArchmageTemplate extends SorcerorTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ArchmageTemplate(CharacterTemplateIDProvider provider) {
|
public ArchmageTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ARCHMAGE.id),
|
super(provider.createID(CharacterClass.ARCHMAGE.id), CharacterClass.ARCHMAGE, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.ARCHMAGE, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 2880.000;
|
||||||
|
this.hpAdd = 58.100;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1728.000;
|
||||||
|
this.cpAdd = 29.050;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class ArchmageTemplate extends SorcerorTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ArchmageTemplate(CharacterTemplateID id,
|
protected ArchmageTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ArtisanTemplate extends DwarvenFighterTemplate {
|
public class ArtisanTemplate extends DwarvenFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ArtisanTemplate(CharacterTemplateIDProvider provider) {
|
public ArtisanTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ARTISAN.id),
|
super(provider.createID(CharacterClass.ARTISAN.id), CharacterClass.ARTISAN, Point.fromXYZ(108512, -174026, -400));
|
||||||
CharacterClass.ARTISAN, Point.fromXYZ(108512, -174026, -400));
|
|
||||||
|
this.hpBase = 346.000;
|
||||||
|
this.hpAdd = 32.900;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 276.800;
|
||||||
|
this.cpAdd = 26.300;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 20;
|
attributes.intelligence = 20;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -45,15 +56,16 @@ public class ArtisanTemplate extends DwarvenFighterTemplate {
|
|||||||
attributes.criticalChance = 43;
|
attributes.criticalChance = 43;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 83000;
|
attributes.maxWeigth = 83000;
|
||||||
attributes.craft = true;
|
attributes.craft = true;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 18.0;
|
this.maleCollisionHeight = 18.0;
|
||||||
this.femaleCollisionRadius = 5.0;
|
this.femaleCollisionRadius = 5.0;
|
||||||
this.femaleCollisionHeight = 19.0;
|
this.femaleCollisionHeight = 19.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ArtisanTemplate(CharacterTemplateID id,
|
protected ArtisanTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class AssassinTemplate extends DarkFighterTemplate {
|
public class AssassinTemplate extends DarkFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public AssassinTemplate(CharacterTemplateIDProvider provider) {
|
public AssassinTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ASSASSIN.id),
|
super(provider.createID(CharacterClass.ASSASSIN.id), CharacterClass.ASSASSIN, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.ASSASSIN, Point.fromXYZ(28377, 10916, -4224));
|
|
||||||
|
this.hpBase = 379.000;
|
||||||
|
this.hpAdd = 33.000;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 185.100;
|
||||||
|
this.cpAdd = 15.800;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class AssassinTemplate extends DarkFighterTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected AssassinTemplate(CharacterTemplateID id,
|
protected AssassinTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class BersekerTemplate extends TrooperTemplate {
|
public class BersekerTemplate extends TrooperTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public BersekerTemplate(CharacterTemplateIDProvider provider) {
|
public BersekerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.BERSEKER.id),
|
super(provider.createID(CharacterClass.BERSEKER.id), CharacterClass.BERSEKER, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.BERSEKER, Point.fromXYZ(-125533, 38114, 1142));
|
|
||||||
|
this.hpBase = 1178.810;
|
||||||
|
this.hpAdd = 57.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 370.110;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 589.405;
|
||||||
|
this.cpAdd = 28.600;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 29;
|
attributes.intelligence = 29;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class BersekerTemplate extends TrooperTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected BersekerTemplate(CharacterTemplateID id,
|
protected BersekerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class BishopTemplate extends ClericTemplate {
|
public class BishopTemplate extends ClericTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public BishopTemplate(CharacterTemplateIDProvider provider) {
|
public BishopTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.BISHOP.id),
|
super(provider.createID(CharacterClass.BISHOP.id), CharacterClass.BISHOP, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.BISHOP, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 1164.900;
|
||||||
|
this.hpAdd = 49.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1048.410;
|
||||||
|
this.cpAdd = 44.460;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class BishopTemplate extends ClericTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected BishopTemplate(CharacterTemplateID id,
|
protected BishopTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class BladedancerTemplate extends PalusKnightTemplate {
|
public class BladedancerTemplate extends PalusKnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public BladedancerTemplate(CharacterTemplateIDProvider provider) {
|
public BladedancerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.BLADEDANCER.id),
|
super(provider.createID(CharacterClass.BLADEDANCER.id), CharacterClass.BLADEDANCER, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.BLADEDANCER, Point.fromXYZ(28377, 10916, -4224));
|
|
||||||
|
this.hpBase = 1143.800;
|
||||||
|
this.hpAdd = 58.500;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 571.900;
|
||||||
|
this.cpAdd = 29.250;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class BladedancerTemplate extends PalusKnightTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected BladedancerTemplate(CharacterTemplateID id,
|
protected BladedancerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class BountyHunterTemplate extends ScavengerTemplate {
|
public class BountyHunterTemplate extends ScavengerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public BountyHunterTemplate(CharacterTemplateIDProvider provider) {
|
public BountyHunterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.BOUNTY_HUNTER.id),
|
super(provider.createID(CharacterClass.BOUNTY_HUNTER.id), CharacterClass.BOUNTY_HUNTER, Point.fromXYZ(108512, -174026, -400));
|
||||||
CharacterClass.BOUNTY_HUNTER, Point.fromXYZ(108512, -174026,
|
|
||||||
-400));
|
this.hpBase = 1110.800;
|
||||||
|
this.hpAdd = 57.100;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.400;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 777.500;
|
||||||
|
this.cpAdd = 39.940;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 20;
|
attributes.intelligence = 20;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -46,15 +56,16 @@ public class BountyHunterTemplate extends ScavengerTemplate {
|
|||||||
attributes.criticalChance = 43;
|
attributes.criticalChance = 43;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 83000;
|
attributes.maxWeigth = 83000;
|
||||||
attributes.craft = true;
|
attributes.craft = true;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 18.0;
|
this.maleCollisionHeight = 18.0;
|
||||||
this.femaleCollisionRadius = 5.0;
|
this.femaleCollisionRadius = 5.0;
|
||||||
this.femaleCollisionHeight = 19.0;
|
this.femaleCollisionHeight = 19.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected BountyHunterTemplate(CharacterTemplateID id,
|
protected BountyHunterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class CardinalTemplate extends BishopTemplate {
|
public class CardinalTemplate extends BishopTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public CardinalTemplate(CharacterTemplateIDProvider provider) {
|
public CardinalTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.CARDINAL.id),
|
super(provider.createID(CharacterClass.CARDINAL.id), CharacterClass.CARDINAL, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.CARDINAL, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 3182.700;
|
||||||
|
this.hpAdd = 63.080;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 2864.430;
|
||||||
|
this.cpAdd = 56.772;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class CardinalTemplate extends BishopTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected CardinalTemplate(CharacterTemplateID id,
|
protected CardinalTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ClericTemplate extends HumanMysticTemplate {
|
public class ClericTemplate extends HumanMysticTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ClericTemplate(CharacterTemplateIDProvider provider) {
|
public ClericTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.CLERIC.id),
|
super(provider.createID(CharacterClass.CLERIC.id), CharacterClass.CLERIC, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.CLERIC, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 424.000;
|
||||||
|
this.hpAdd = 34.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 192.000;
|
||||||
|
this.mpAdd = 13.300;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 212.000;
|
||||||
|
this.cpAdd = 17.150;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class ClericTemplate extends HumanMysticTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ClericTemplate(CharacterTemplateID id,
|
protected ClericTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DarkAvengerTemplate extends KnightTemplate {
|
public class DarkAvengerTemplate extends KnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DarkAvengerTemplate(CharacterTemplateIDProvider provider) {
|
public DarkAvengerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DARK_AVENGER.id),
|
super(provider.createID(CharacterClass.DARK_AVENGER.id), CharacterClass.DARK_AVENGER, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.DARK_AVENGER, Point.fromXYZ(-71338, 258271,
|
|
||||||
-3104));
|
this.hpBase = 972.300;
|
||||||
|
this.hpAdd = 46.800;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 583.300;
|
||||||
|
this.cpAdd = 28.080;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class DarkAvengerTemplate extends KnightTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DarkAvengerTemplate(CharacterTemplateID id,
|
protected DarkAvengerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DarkFighterTemplate extends AbstractDarkElfCharacterTemplate {
|
public class DarkFighterTemplate extends AbstractDarkElfCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DarkFighterTemplate(CharacterTemplateIDProvider provider) {
|
public DarkFighterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DARK_FIGHTER.id),
|
super(provider.createID(CharacterClass.DARK_FIGHTER.id), CharacterClass.DARK_FIGHTER, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.DARK_FIGHTER, Point.fromXYZ(28377, 10916, -4224));
|
|
||||||
|
this.hpBase = 94.000;
|
||||||
|
this.hpAdd = 13.650;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 30.000;
|
||||||
|
this.mpAdd = 5.460;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 37.600;
|
||||||
|
this.cpAdd = 3.800;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class DarkFighterTemplate extends AbstractDarkElfCharacterTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DarkFighterTemplate(CharacterTemplateID id,
|
protected DarkFighterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DarkMysticTemplate extends AbstractDarkElfCharacterTemplate {
|
public class DarkMysticTemplate extends AbstractDarkElfCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DarkMysticTemplate(CharacterTemplateIDProvider provider) {
|
public DarkMysticTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DARK_MYSTIC.id),
|
super(provider.createID(CharacterClass.DARK_MYSTIC.id), CharacterClass.DARK_MYSTIC, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.DARK_MYSTIC, Point.fromXYZ(28295, 11063, -4224));
|
|
||||||
|
this.hpBase = 106.000;
|
||||||
|
this.hpAdd = 15.570;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 40.000;
|
||||||
|
this.mpAdd = 7.380;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 53.000;
|
||||||
|
this.cpAdd = 7.840;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -45,15 +56,16 @@ public class DarkMysticTemplate extends AbstractDarkElfCharacterTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DarkMysticTemplate(CharacterTemplateID id,
|
protected DarkMysticTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DarkWizardTemplate extends DarkMysticTemplate {
|
public class DarkWizardTemplate extends DarkMysticTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DarkWizardTemplate(CharacterTemplateIDProvider provider) {
|
public DarkWizardTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DARK_WIZARD.id),
|
super(provider.createID(CharacterClass.DARK_WIZARD.id), CharacterClass.DARK_WIZARD, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.DARK_WIZARD, Point.fromXYZ(28295, 11063, -4224));
|
|
||||||
|
this.hpBase = 429.000;
|
||||||
|
this.hpAdd = 29.800;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 192.000;
|
||||||
|
this.mpAdd = 13.300;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 214.500;
|
||||||
|
this.cpAdd = 14.950;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -45,15 +56,16 @@ public class DarkWizardTemplate extends DarkMysticTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DarkWizardTemplate(CharacterTemplateID id,
|
protected DarkWizardTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DestroyerTemplate extends OrcRaiderTemplate {
|
public class DestroyerTemplate extends OrcRaiderTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DestroyerTemplate(CharacterTemplateIDProvider provider) {
|
public DestroyerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DESTROYER.id),
|
super(provider.createID(CharacterClass.DESTROYER.id), CharacterClass.DESTROYER, Point.fromXYZ(-56693, -113610, -690));
|
||||||
CharacterClass.DESTROYER, Point.fromXYZ(-56693, -113610, -690));
|
|
||||||
|
this.hpBase = 1110.800;
|
||||||
|
this.hpAdd = 57.100;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.400;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 777.500;
|
||||||
|
this.cpAdd = 39.940;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 18;
|
attributes.intelligence = 18;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class DestroyerTemplate extends OrcRaiderTemplate {
|
|||||||
attributes.criticalChance = 42;
|
attributes.criticalChance = 42;
|
||||||
attributes.evasionChance = 31;
|
attributes.evasionChance = 31;
|
||||||
attributes.runSpeed = 117;
|
attributes.runSpeed = 117;
|
||||||
|
attributes.walkSpeed = 117;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 11.0;
|
this.maleCollisionRadius = 11.0;
|
||||||
this.maleCollisionHeight = 28.0;
|
this.maleCollisionHeight = 28.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 27.0;
|
this.femaleCollisionHeight = 27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DestroyerTemplate(CharacterTemplateID id,
|
protected DestroyerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DominatorTemplate extends OverlordTemplate {
|
public class DominatorTemplate extends OverlordTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DominatorTemplate(CharacterTemplateIDProvider provider) {
|
public DominatorTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DOMINATOR.id),
|
super(provider.createID(CharacterClass.DOMINATOR.id), CharacterClass.DOMINATOR, Point.fromXYZ(-56682, -113730, -690));
|
||||||
CharacterClass.DOMINATOR, Point.fromXYZ(-56682, -113730, -690));
|
|
||||||
|
this.hpBase = 3359.900;
|
||||||
|
this.hpAdd = 67.960;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 3037.300;
|
||||||
|
this.cpAdd = 54.350;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 31;
|
attributes.intelligence = 31;
|
||||||
attributes.strength = 27;
|
attributes.strength = 27;
|
||||||
@@ -45,15 +56,16 @@ public class DominatorTemplate extends OverlordTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 121;
|
attributes.runSpeed = 121;
|
||||||
|
attributes.walkSpeed = 121;
|
||||||
attributes.maxWeigth = 68000;
|
attributes.maxWeigth = 68000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.0;
|
this.maleCollisionRadius = 7.0;
|
||||||
this.maleCollisionHeight = 27.5;
|
this.maleCollisionHeight = 27.5;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 25.5;
|
this.femaleCollisionHeight = 25.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DominatorTemplate(CharacterTemplateID id,
|
protected DominatorTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DoombringerTemplate extends BersekerTemplate {
|
public class DoombringerTemplate extends BersekerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DoombringerTemplate(CharacterTemplateIDProvider provider) {
|
public DoombringerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DOOMBRINGER.id),
|
super(provider.createID(CharacterClass.DOOMBRINGER.id), CharacterClass.DOOMBRINGER, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.DOOMBRINGER, Point.fromXYZ(-125533, 38114, 1142));
|
|
||||||
|
this.hpBase = 3515.210;
|
||||||
|
this.hpAdd = 73.040;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1166.610;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1757.605;
|
||||||
|
this.cpAdd = 36.520;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 29;
|
attributes.intelligence = 29;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class DoombringerTemplate extends BersekerTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DoombringerTemplate(CharacterTemplateID id,
|
protected DoombringerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DoomcryerTemplate extends WarcryerTemplate {
|
public class DoomcryerTemplate extends WarcryerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DoomcryerTemplate(CharacterTemplateIDProvider provider) {
|
public DoomcryerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DOOMCRYER.id),
|
super(provider.createID(CharacterClass.DOOMCRYER.id), CharacterClass.DOOMCRYER, Point.fromXYZ(-56682, -113730, -690));
|
||||||
CharacterClass.DOOMCRYER, Point.fromXYZ(-56682, -113730, -690));
|
|
||||||
|
this.hpBase = 3359.900;
|
||||||
|
this.hpAdd = 67.960;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1679.900;
|
||||||
|
this.cpAdd = 33.930;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 31;
|
attributes.intelligence = 31;
|
||||||
attributes.strength = 27;
|
attributes.strength = 27;
|
||||||
@@ -45,15 +56,16 @@ public class DoomcryerTemplate extends WarcryerTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 121;
|
attributes.runSpeed = 121;
|
||||||
|
attributes.walkSpeed = 121;
|
||||||
attributes.maxWeigth = 68000;
|
attributes.maxWeigth = 68000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.0;
|
this.maleCollisionRadius = 7.0;
|
||||||
this.maleCollisionHeight = 27.5;
|
this.maleCollisionHeight = 27.5;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 25.5;
|
this.femaleCollisionHeight = 25.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DoomcryerTemplate(CharacterTemplateID id,
|
protected DoomcryerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DreadnoughtTemplate extends WarlordTemplate {
|
public class DreadnoughtTemplate extends WarlordTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DreadnoughtTemplate(CharacterTemplateIDProvider provider) {
|
public DreadnoughtTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DREADNOUGHT.id),
|
super(provider.createID(CharacterClass.DREADNOUGHT.id), CharacterClass.DREADNOUGHT, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.DREADNOUGHT, Point
|
|
||||||
.fromXYZ(-71338, 258271, -3104));
|
this.hpBase = 3274.200;
|
||||||
|
this.hpAdd = 69.720;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 2619.300;
|
||||||
|
this.cpAdd = 55.780;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class DreadnoughtTemplate extends WarlordTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DreadnoughtTemplate(CharacterTemplateID id,
|
protected DreadnoughtTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DuelistTemplate extends GladiatorTemplate {
|
public class DuelistTemplate extends GladiatorTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DuelistTemplate(CharacterTemplateIDProvider provider) {
|
public DuelistTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DUELIST.id),
|
super(provider.createID(CharacterClass.DUELIST.id), CharacterClass.DUELIST, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.DUELIST, Point.fromXYZ(-71338, 258271, -3104));
|
|
||||||
|
this.hpBase = 3061.800;
|
||||||
|
this.hpAdd = 63.080;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 2755.600;
|
||||||
|
this.cpAdd = 56.770;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class DuelistTemplate extends GladiatorTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DuelistTemplate(CharacterTemplateID id,
|
protected DuelistTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class DwarvenFighterTemplate extends AbstractDwarfCharacterTemplate {
|
public class DwarvenFighterTemplate extends AbstractDwarfCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public DwarvenFighterTemplate(CharacterTemplateIDProvider provider) {
|
public DwarvenFighterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.DWARVEN_FIGHTER.id),
|
super(provider.createID(CharacterClass.DWARVEN_FIGHTER.id), CharacterClass.DWARVEN_FIGHTER, Point.fromXYZ(108512, -174026, -400));
|
||||||
CharacterClass.DWARVEN_FIGHTER, Point.fromXYZ(108512, -174026,
|
|
||||||
-400));
|
this.hpBase = 80.000;
|
||||||
|
this.hpAdd = 12.640;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 30.000;
|
||||||
|
this.mpAdd = 5.360;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 56.000;
|
||||||
|
this.cpAdd = 8.820;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 20;
|
attributes.intelligence = 20;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -46,15 +56,16 @@ public class DwarvenFighterTemplate extends AbstractDwarfCharacterTemplate {
|
|||||||
attributes.criticalChance = 43;
|
attributes.criticalChance = 43;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 83000;
|
attributes.maxWeigth = 83000;
|
||||||
attributes.craft = true;
|
attributes.craft = true;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 18.0;
|
this.maleCollisionHeight = 18.0;
|
||||||
this.femaleCollisionRadius = 5.0;
|
this.femaleCollisionRadius = 5.0;
|
||||||
this.femaleCollisionHeight = 19.0;
|
this.femaleCollisionHeight = 19.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DwarvenFighterTemplate(CharacterTemplateID id,
|
protected DwarvenFighterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElderTemplate extends OracleTemplate {
|
public class ElderTemplate extends OracleTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElderTemplate(CharacterTemplateIDProvider provider) {
|
public ElderTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELDER.id), CharacterClass.ELDER,
|
super(provider.createID(CharacterClass.ELDER.id), CharacterClass.ELDER, Point.fromXYZ(46182, 41198, -3440));
|
||||||
Point.fromXYZ(46182, 41198, -3440));
|
|
||||||
|
this.hpBase = 1191.800;
|
||||||
|
this.hpAdd = 54.600;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1072.620;
|
||||||
|
this.cpAdd = 49.140;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -45,15 +56,16 @@ public class ElderTemplate extends OracleTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElderTemplate(CharacterTemplateID id,
|
protected ElderTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElementalMasterTemplate extends ElementalSummonerTemplate {
|
public class ElementalMasterTemplate extends ElementalSummonerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElementalMasterTemplate(CharacterTemplateIDProvider provider) {
|
public ElementalMasterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELEMENTAL_MASTER.id),
|
super(provider.createID(CharacterClass.ELEMENTAL_MASTER.id), CharacterClass.ELEMENTAL_MASTER, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.ELEMENTAL_MASTER, Point.fromXYZ(46182, 41198,
|
|
||||||
-3440));
|
this.hpBase = 3119.300;
|
||||||
|
this.hpAdd = 64.740;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1871.500;
|
||||||
|
this.cpAdd = 38.840;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -46,15 +56,16 @@ public class ElementalMasterTemplate extends ElementalSummonerTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElementalMasterTemplate(CharacterTemplateID id,
|
protected ElementalMasterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElementalSummonerTemplate extends ElvenWizardTemplate {
|
public class ElementalSummonerTemplate extends ElvenWizardTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElementalSummonerTemplate(CharacterTemplateIDProvider provider) {
|
public ElementalSummonerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELEMENTAL_SUMMONER.id),
|
super(provider.createID(CharacterClass.ELEMENTAL_SUMMONER.id), CharacterClass.ELEMENTAL_SUMMONER, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.ELEMENTAL_SUMMONER, Point.fromXYZ(46182, 41198,
|
|
||||||
-3440));
|
this.hpBase = 1048.400;
|
||||||
|
this.hpAdd = 50.800;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 629.000;
|
||||||
|
this.cpAdd = 30.520;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -46,15 +56,16 @@ public class ElementalSummonerTemplate extends ElvenWizardTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElementalSummonerTemplate(CharacterTemplateID id,
|
protected ElementalSummonerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElvenFighterTemplate extends AbstractElfCharacterTemplate {
|
public class ElvenFighterTemplate extends AbstractElfCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElvenFighterTemplate(CharacterTemplateIDProvider provider) {
|
public ElvenFighterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELVEN_FIGHTER.id),
|
super(provider.createID(CharacterClass.ELVEN_FIGHTER.id), CharacterClass.ELVEN_FIGHTER, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.ELVEN_FIGHTER, Point
|
|
||||||
.fromXYZ(45978, 41196, -3440));
|
this.hpBase = 89.000;
|
||||||
|
this.hpAdd = 12.740;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 30.000;
|
||||||
|
this.mpAdd = 5.460;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 36.100;
|
||||||
|
this.cpAdd = 3.380;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -46,15 +56,16 @@ public class ElvenFighterTemplate extends AbstractElfCharacterTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElvenFighterTemplate(CharacterTemplateID id,
|
protected ElvenFighterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElvenKnightTemplate extends ElvenFighterTemplate {
|
public class ElvenKnightTemplate extends ElvenFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElvenKnightTemplate(CharacterTemplateIDProvider provider) {
|
public ElvenKnightTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELVEN_KNIGHT.id),
|
super(provider.createID(CharacterClass.ELVEN_KNIGHT.id), CharacterClass.ELVEN_KNIGHT, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.ELVEN_KNIGHT, Point.fromXYZ(45978, 41196, -3440));
|
|
||||||
|
this.hpBase = 355.000;
|
||||||
|
this.hpAdd = 33.000;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 177.500;
|
||||||
|
this.cpAdd = 16.500;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -45,15 +56,16 @@ public class ElvenKnightTemplate extends ElvenFighterTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElvenKnightTemplate(CharacterTemplateID id,
|
protected ElvenKnightTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElvenMysticTemplate extends AbstractElfCharacterTemplate {
|
public class ElvenMysticTemplate extends AbstractElfCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElvenMysticTemplate(CharacterTemplateIDProvider provider) {
|
public ElvenMysticTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELVEN_MYSTIC.id),
|
super(provider.createID(CharacterClass.ELVEN_MYSTIC.id), CharacterClass.ELVEN_MYSTIC, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.ELVEN_MYSTIC, Point.fromXYZ(46182, 41198, -3440));
|
|
||||||
|
this.hpBase = 104.000;
|
||||||
|
this.hpAdd = 15.570;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 40.000;
|
||||||
|
this.mpAdd = 7.380;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 52.000;
|
||||||
|
this.cpAdd = 7.840;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -45,15 +56,16 @@ public class ElvenMysticTemplate extends AbstractElfCharacterTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElvenMysticTemplate(CharacterTemplateID id,
|
protected ElvenMysticTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElvenScoutTemplate extends ElvenFighterTemplate {
|
public class ElvenScoutTemplate extends ElvenFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElvenScoutTemplate(CharacterTemplateIDProvider provider) {
|
public ElvenScoutTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELVEN_SCOUT.id),
|
super(provider.createID(CharacterClass.ELVEN_SCOUT.id), CharacterClass.ELVEN_SCOUT, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.ELVEN_SCOUT, Point.fromXYZ(45978, 41196, -3440));
|
|
||||||
|
this.hpBase = 355.000;
|
||||||
|
this.hpAdd = 30.800;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 177.500;
|
||||||
|
this.cpAdd = 14.400;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -45,15 +56,16 @@ public class ElvenScoutTemplate extends ElvenFighterTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElvenScoutTemplate(CharacterTemplateID id,
|
protected ElvenScoutTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ElvenWizardTemplate extends ElvenMysticTemplate {
|
public class ElvenWizardTemplate extends ElvenMysticTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ElvenWizardTemplate(CharacterTemplateIDProvider provider) {
|
public ElvenWizardTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ELVEN_WIZARD.id),
|
super(provider.createID(CharacterClass.ELVEN_WIZARD.id), CharacterClass.ELVEN_WIZARD, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.ELVEN_WIZARD, Point.fromXYZ(46182, 41198, -3440));
|
|
||||||
|
this.hpBase = 427.000;
|
||||||
|
this.hpAdd = 28.700;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 192.000;
|
||||||
|
this.mpAdd = 13.300;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 213.500;
|
||||||
|
this.cpAdd = 14.400;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -45,15 +56,16 @@ public class ElvenWizardTemplate extends ElvenMysticTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ElvenWizardTemplate(CharacterTemplateID id,
|
protected ElvenWizardTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class EvaSaintTemplate extends ElderTemplate {
|
public class EvaSaintTemplate extends ElderTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public EvaSaintTemplate(CharacterTemplateIDProvider provider) {
|
public EvaSaintTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.EVA_SAINT.id),
|
super(provider.createID(CharacterClass.EVA_SAINT.id), CharacterClass.EVA_SAINT, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.EVA_SAINT, Point.fromXYZ(46182, 41198, -3440));
|
|
||||||
|
this.hpBase = 3422.000;
|
||||||
|
this.hpAdd = 69.720;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 3079.800;
|
||||||
|
this.cpAdd = 62.748;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -45,15 +56,16 @@ public class EvaSaintTemplate extends ElderTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected EvaSaintTemplate(CharacterTemplateID id,
|
protected EvaSaintTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class EvaTemplarTemplate extends TempleKnightTemplate {
|
public class EvaTemplarTemplate extends TempleKnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public EvaTemplarTemplate(CharacterTemplateIDProvider provider) {
|
public EvaTemplarTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.EVA_TEMPLAR.id),
|
super(provider.createID(CharacterClass.EVA_TEMPLAR.id), CharacterClass.EVA_TEMPLAR, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.EVA_TEMPLAR, Point.fromXYZ(45978, 41196, -3440));
|
|
||||||
|
this.hpBase = 3196.000;
|
||||||
|
this.hpAdd = 66.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1917.600;
|
||||||
|
this.cpAdd = 39.840;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -45,15 +56,16 @@ public class EvaTemplarTemplate extends TempleKnightTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected EvaTemplarTemplate(CharacterTemplateID id,
|
protected EvaTemplarTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class FemaleSoldierTemplate extends AbstractKamaelCharacterTemplate {
|
public class FemaleSoldierTemplate extends AbstractKamaelCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public FemaleSoldierTemplate(CharacterTemplateIDProvider provider) {
|
public FemaleSoldierTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.FEMALE_SOLDIER.id),
|
super(provider.createID(CharacterClass.FEMALE_SOLDIER.id), CharacterClass.FEMALE_SOLDIER, Point.fromXYZ(-125517, 38267, 1176));
|
||||||
CharacterClass.FEMALE_SOLDIER, Point.fromXYZ(-125517, 38267,
|
|
||||||
1176));
|
this.hpBase = 97.000;
|
||||||
|
this.hpAdd = 16.380;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 40.000;
|
||||||
|
this.mpAdd = 7.280;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 48.500;
|
||||||
|
this.cpAdd = 8.190;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 28;
|
attributes.intelligence = 28;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -46,15 +56,16 @@ public class FemaleSoldierTemplate extends AbstractKamaelCharacterTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 22.6;
|
this.maleCollisionHeight = 22.6;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected FemaleSoldierTemplate(CharacterTemplateID id,
|
protected FemaleSoldierTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class FemaleSoulbreakerTemplate extends WarderTemplate {
|
public class FemaleSoulbreakerTemplate extends WarderTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public FemaleSoulbreakerTemplate(CharacterTemplateIDProvider provider) {
|
public FemaleSoulbreakerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.FEMALE_SOULBREAKER.id),
|
super(provider.createID(CharacterClass.FEMALE_SOULBREAKER.id), CharacterClass.FEMALE_SOULBREAKER, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.FEMALE_SOULBREAKER, Point.fromXYZ(-125533,
|
|
||||||
38114, 1142));
|
this.hpBase = 1134.580;
|
||||||
|
this.hpAdd = 52.000;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 493.480;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 567.290;
|
||||||
|
this.cpAdd = 26.000;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 28;
|
attributes.intelligence = 28;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -46,15 +56,16 @@ public class FemaleSoulbreakerTemplate extends WarderTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 22.6;
|
this.maleCollisionHeight = 22.6;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected FemaleSoulbreakerTemplate(CharacterTemplateID id,
|
protected FemaleSoulbreakerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class FemaleSouldhoundTemplate extends FemaleSoulbreakerTemplate {
|
public class FemaleSouldhoundTemplate extends FemaleSoulbreakerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public FemaleSouldhoundTemplate(CharacterTemplateIDProvider provider) {
|
public FemaleSouldhoundTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.FEMALE_SOULDHOUND.id),
|
super(provider.createID(CharacterClass.FEMALE_SOULDHOUND.id), CharacterClass.FEMALE_SOULDHOUND, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.FEMALE_SOULDHOUND, Point.fromXYZ(-125533, 38114,
|
|
||||||
1142));
|
this.hpBase = 3258.580;
|
||||||
|
this.hpAdd = 66.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1555.480;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1629.290;
|
||||||
|
this.cpAdd = 33.200;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 28;
|
attributes.intelligence = 28;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -46,15 +56,16 @@ public class FemaleSouldhoundTemplate extends FemaleSoulbreakerTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 22.6;
|
this.maleCollisionHeight = 22.6;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected FemaleSouldhoundTemplate(CharacterTemplateID id,
|
protected FemaleSouldhoundTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class FortuneSeekerTemplate extends BountyHunterTemplate {
|
public class FortuneSeekerTemplate extends BountyHunterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public FortuneSeekerTemplate(CharacterTemplateIDProvider provider) {
|
public FortuneSeekerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.FORTUNE_SEEKER.id),
|
super(provider.createID(CharacterClass.FORTUNE_SEEKER.id), CharacterClass.FORTUNE_SEEKER, Point.fromXYZ(108512, -174026, -400));
|
||||||
CharacterClass.FORTUNE_SEEKER, Point.fromXYZ(108512, -174026,
|
|
||||||
-400));
|
this.hpBase = 3447.200;
|
||||||
|
this.hpAdd = 72.940;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 2413.000;
|
||||||
|
this.cpAdd = 51.030;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 20;
|
attributes.intelligence = 20;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -46,15 +56,16 @@ public class FortuneSeekerTemplate extends BountyHunterTemplate {
|
|||||||
attributes.criticalChance = 43;
|
attributes.criticalChance = 43;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 83000;
|
attributes.maxWeigth = 83000;
|
||||||
attributes.craft = true;
|
attributes.craft = true;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 18.0;
|
this.maleCollisionHeight = 18.0;
|
||||||
this.femaleCollisionRadius = 5.0;
|
this.femaleCollisionRadius = 5.0;
|
||||||
this.femaleCollisionHeight = 19.0;
|
this.femaleCollisionHeight = 19.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected FortuneSeekerTemplate(CharacterTemplateID id,
|
protected FortuneSeekerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class GhostHunterTemplate extends AbyssWalkerTemplate {
|
public class GhostHunterTemplate extends AbyssWalkerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public GhostHunterTemplate(CharacterTemplateIDProvider provider) {
|
public GhostHunterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.GHOST_HUNTER.id),
|
super(provider.createID(CharacterClass.GHOST_HUNTER.id), CharacterClass.GHOST_HUNTER, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.GHOST_HUNTER, Point.fromXYZ(28377, 10916, -4224));
|
|
||||||
|
this.hpBase = 3113.800;
|
||||||
|
this.hpAdd = 63.080;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1712.590;
|
||||||
|
this.cpAdd = 34.694;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class GhostHunterTemplate extends AbyssWalkerTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected GhostHunterTemplate(CharacterTemplateID id,
|
protected GhostHunterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class GhostSentinelTemplate extends PhantomRangerTemplate {
|
public class GhostSentinelTemplate extends PhantomRangerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public GhostSentinelTemplate(CharacterTemplateIDProvider provider) {
|
public GhostSentinelTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.GHOST_SENTINEL.id),
|
super(provider.createID(CharacterClass.GHOST_SENTINEL.id), CharacterClass.GHOST_SENTINEL, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.GHOST_SENTINEL, Point.fromXYZ(28377, 10916,
|
|
||||||
-4224));
|
this.hpBase = 3220.000;
|
||||||
|
this.hpAdd = 66.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1610.000;
|
||||||
|
this.cpAdd = 33.200;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class GhostSentinelTemplate extends PhantomRangerTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected GhostSentinelTemplate(CharacterTemplateID id,
|
protected GhostSentinelTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class GladiatorTemplate extends WarriorTemplate {
|
public class GladiatorTemplate extends WarriorTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public GladiatorTemplate(CharacterTemplateIDProvider provider) {
|
public GladiatorTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.GLADIATOR.id),
|
super(provider.createID(CharacterClass.GLADIATOR.id), CharacterClass.GLADIATOR, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.GLADIATOR, Point.fromXYZ(-71338, 258271, -3104));
|
|
||||||
|
this.hpBase = 1044.000;
|
||||||
|
this.hpAdd = 49.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 939.600;
|
||||||
|
this.cpAdd = 44.460;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class GladiatorTemplate extends WarriorTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected GladiatorTemplate(CharacterTemplateID id,
|
protected GladiatorTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class GrandKhauatariTemplate extends TyrantTemplate {
|
public class GrandKhauatariTemplate extends TyrantTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public GrandKhauatariTemplate(CharacterTemplateIDProvider provider) {
|
public GrandKhauatariTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.GRAND_KHAUATARI.id),
|
super(provider.createID(CharacterClass.GRAND_KHAUATARI.id), CharacterClass.GRAND_KHAUATARI, Point.fromXYZ(-56693, -113610, -690));
|
||||||
CharacterClass.GRAND_KHAUATARI, Point.fromXYZ(-56693, -113610,
|
|
||||||
-690));
|
this.hpBase = 3293.200;
|
||||||
|
this.hpAdd = 69.620;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1646.600;
|
||||||
|
this.cpAdd = 34.760;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 18;
|
attributes.intelligence = 18;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class GrandKhauatariTemplate extends TyrantTemplate {
|
|||||||
attributes.criticalChance = 42;
|
attributes.criticalChance = 42;
|
||||||
attributes.evasionChance = 31;
|
attributes.evasionChance = 31;
|
||||||
attributes.runSpeed = 117;
|
attributes.runSpeed = 117;
|
||||||
|
attributes.walkSpeed = 117;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 11.0;
|
this.maleCollisionRadius = 11.0;
|
||||||
this.maleCollisionHeight = 28.0;
|
this.maleCollisionHeight = 28.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 27.0;
|
this.femaleCollisionHeight = 27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected GrandKhauatariTemplate(CharacterTemplateID id,
|
protected GrandKhauatariTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class HawkeyeTemplate extends RogueTemplate {
|
public class HawkeyeTemplate extends RogueTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public HawkeyeTemplate(CharacterTemplateIDProvider provider) {
|
public HawkeyeTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.HAWKEYE.id),
|
super(provider.createID(CharacterClass.HAWKEYE.id), CharacterClass.HAWKEYE, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.HAWKEYE, Point.fromXYZ(-71338, 258271, -3104));
|
|
||||||
|
this.hpBase = 924.500;
|
||||||
|
this.hpAdd = 44.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 647.100;
|
||||||
|
this.cpAdd = 30.940;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class HawkeyeTemplate extends RogueTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected HawkeyeTemplate(CharacterTemplateID id,
|
protected HawkeyeTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class HellKnightTemplate extends DarkAvengerTemplate {
|
public class HellKnightTemplate extends DarkAvengerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public HellKnightTemplate(CharacterTemplateIDProvider provider) {
|
public HellKnightTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.HELL_KNIGHT.id),
|
super(provider.createID(CharacterClass.HELL_KNIGHT.id), CharacterClass.HELL_KNIGHT, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.HELL_KNIGHT, Point
|
|
||||||
.fromXYZ(-71338, 258271, -3104));
|
this.hpBase = 2883.900;
|
||||||
|
this.hpAdd = 59.760;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1730.300;
|
||||||
|
this.cpAdd = 35.860;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class HellKnightTemplate extends DarkAvengerTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected HellKnightTemplate(CharacterTemplateID id,
|
protected HellKnightTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class HierophantTemplate extends ProphetTemplate {
|
public class HierophantTemplate extends ProphetTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public HierophantTemplate(CharacterTemplateIDProvider provider) {
|
public HierophantTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.HIEROPHANT.id),
|
super(provider.createID(CharacterClass.HIEROPHANT.id), CharacterClass.HIEROPHANT, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.HIEROPHANT, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 3342.000;
|
||||||
|
this.hpAdd = 68.060;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1671.000;
|
||||||
|
this.cpAdd = 34.030;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class HierophantTemplate extends ProphetTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected HierophantTemplate(CharacterTemplateID id,
|
protected HierophantTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class HumanFighterTemplate extends AbstractHumanCharacterTemplate {
|
public class HumanFighterTemplate extends AbstractHumanCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public HumanFighterTemplate(CharacterTemplateIDProvider provider) {
|
public HumanFighterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.HUMAN_FIGHTER.id),
|
super(provider.createID(CharacterClass.HUMAN_FIGHTER.id), CharacterClass.HUMAN_FIGHTER, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.HUMAN_FIGHTER, Point.fromXYZ(-71338, 258271,
|
|
||||||
-3104));
|
this.hpBase = 80.000;
|
||||||
|
this.hpAdd = 11.830;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 30.000;
|
||||||
|
this.mpAdd = 5.460;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 32.000;
|
||||||
|
this.cpAdd = 3.010;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class HumanFighterTemplate extends AbstractHumanCharacterTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected HumanFighterTemplate(CharacterTemplateID id,
|
protected HumanFighterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class HumanMysticTemplate extends AbstractHumanCharacterTemplate {
|
public class HumanMysticTemplate extends AbstractHumanCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public HumanMysticTemplate(CharacterTemplateIDProvider provider) {
|
public HumanMysticTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.HUMAN_MYSTIC.id),
|
super(provider.createID(CharacterClass.HUMAN_MYSTIC.id), CharacterClass.HUMAN_MYSTIC, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.HUMAN_MYSTIC, Point.fromXYZ(-90890, 248027,
|
|
||||||
-3570));
|
this.hpBase = 101.000;
|
||||||
|
this.hpAdd = 15.570;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 40.000;
|
||||||
|
this.mpAdd = 7.380;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 50.500;
|
||||||
|
this.cpAdd = 7.840;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -46,15 +56,16 @@ public class HumanMysticTemplate extends AbstractHumanCharacterTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected HumanMysticTemplate(CharacterTemplateID id,
|
protected HumanMysticTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class InspectorTemplate extends WarderTemplate {
|
public class InspectorTemplate extends WarderTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public InspectorTemplate(CharacterTemplateIDProvider provider) {
|
public InspectorTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.INSPECTOR.id),
|
super(provider.createID(CharacterClass.INSPECTOR.id), CharacterClass.INSPECTOR, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.INSPECTOR, Point.fromXYZ(-125533, 38114, 1142));
|
|
||||||
|
this.hpBase = 1135.870;
|
||||||
|
this.hpAdd = 53.300;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 493.480;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 567.935;
|
||||||
|
this.cpAdd = 26.650;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 28;
|
attributes.intelligence = 28;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -45,15 +56,16 @@ public class InspectorTemplate extends WarderTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected InspectorTemplate(CharacterTemplateID id,
|
protected InspectorTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class JudicatorTemplate extends InspectorTemplate {
|
public class JudicatorTemplate extends InspectorTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public JudicatorTemplate(CharacterTemplateIDProvider provider) {
|
public JudicatorTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.JUDICATOR.id),
|
super(provider.createID(CharacterClass.JUDICATOR.id), CharacterClass.JUDICATOR, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.JUDICATOR, Point.fromXYZ(-125533, 38114, 1142));
|
|
||||||
|
this.hpBase = 3312.970;
|
||||||
|
this.hpAdd = 68.060;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1555.480;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1656.485;
|
||||||
|
this.cpAdd = 34.030;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 28;
|
attributes.intelligence = 28;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -45,15 +56,16 @@ public class JudicatorTemplate extends InspectorTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected JudicatorTemplate(CharacterTemplateID id,
|
protected JudicatorTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class KnightTemplate extends HumanFighterTemplate {
|
public class KnightTemplate extends HumanFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public KnightTemplate(CharacterTemplateIDProvider provider) {
|
public KnightTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.KNIGHT.id),
|
super(provider.createID(CharacterClass.KNIGHT.id), CharacterClass.KNIGHT, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.KNIGHT, Point.fromXYZ(-71338, 258271, -3104));
|
|
||||||
|
this.hpBase = 327.000;
|
||||||
|
this.hpAdd = 29.700;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 196.200;
|
||||||
|
this.cpAdd = 17.820;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class KnightTemplate extends HumanFighterTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected KnightTemplate(CharacterTemplateID id,
|
protected KnightTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class MaestroTemplate extends WarsmithTemplate {
|
public class MaestroTemplate extends WarsmithTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public MaestroTemplate(CharacterTemplateIDProvider provider) {
|
public MaestroTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.MAESTRO.id),
|
super(provider.createID(CharacterClass.MAESTRO.id), CharacterClass.MAESTRO, Point.fromXYZ(108512, -174026, -400));
|
||||||
CharacterClass.MAESTRO, Point.fromXYZ(108512, -174026, -400));
|
|
||||||
|
this.hpBase = 3293.200;
|
||||||
|
this.hpAdd = 69.620;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 2634.500;
|
||||||
|
this.cpAdd = 55.680;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 20;
|
attributes.intelligence = 20;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -45,15 +56,16 @@ public class MaestroTemplate extends WarsmithTemplate {
|
|||||||
attributes.criticalChance = 43;
|
attributes.criticalChance = 43;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 83000;
|
attributes.maxWeigth = 83000;
|
||||||
attributes.craft = true;
|
attributes.craft = true;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 18.0;
|
this.maleCollisionHeight = 18.0;
|
||||||
this.femaleCollisionRadius = 5.0;
|
this.femaleCollisionRadius = 5.0;
|
||||||
this.femaleCollisionHeight = 19.0;
|
this.femaleCollisionHeight = 19.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected MaestroTemplate(CharacterTemplateID id,
|
protected MaestroTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class MaleSoldierTemplate extends AbstractKamaelCharacterTemplate {
|
public class MaleSoldierTemplate extends AbstractKamaelCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public MaleSoldierTemplate(CharacterTemplateIDProvider provider) {
|
public MaleSoldierTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.MALE_SOLDIER.id),
|
super(provider.createID(CharacterClass.MALE_SOLDIER.id), CharacterClass.MALE_SOLDIER, Point.fromXYZ(-125464, 37776, 1176));
|
||||||
CharacterClass.MALE_SOLDIER, Point
|
|
||||||
.fromXYZ(-125464, 37776, 1176));
|
this.hpBase = 95.000;
|
||||||
|
this.hpAdd = 13.650;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 30.000;
|
||||||
|
this.mpAdd = 5.460;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 47.500;
|
||||||
|
this.cpAdd = 6.825;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 29;
|
attributes.intelligence = 29;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class MaleSoldierTemplate extends AbstractKamaelCharacterTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected MaleSoldierTemplate(CharacterTemplateID id,
|
protected MaleSoldierTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class MaleSoulbreakerTemplate extends TrooperTemplate {
|
public class MaleSoulbreakerTemplate extends TrooperTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public MaleSoulbreakerTemplate(CharacterTemplateIDProvider provider) {
|
public MaleSoulbreakerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.MALE_SOULBREAKER.id),
|
super(provider.createID(CharacterClass.MALE_SOULBREAKER.id), CharacterClass.MALE_SOULBREAKER, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.MALE_SOULBREAKER, Point.fromXYZ(-125533, 38114,
|
|
||||||
1142));
|
this.hpBase = 1173.650;
|
||||||
|
this.hpAdd = 52.000;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 376.560;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 586.825;
|
||||||
|
this.cpAdd = 26.000;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 29;
|
attributes.intelligence = 29;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class MaleSoulbreakerTemplate extends TrooperTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected MaleSoulbreakerTemplate(CharacterTemplateID id,
|
protected MaleSoulbreakerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class MaleSouldhoundTemplate extends MaleSoulbreakerTemplate {
|
public class MaleSouldhoundTemplate extends MaleSoulbreakerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public MaleSouldhoundTemplate(CharacterTemplateIDProvider provider) {
|
public MaleSouldhoundTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.MALE_SOULDHOUND.id),
|
super(provider.createID(CharacterClass.MALE_SOULDHOUND.id), CharacterClass.MALE_SOULDHOUND, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.MALE_SOULDHOUND, Point.fromXYZ(-125533, 38114,
|
|
||||||
1142));
|
this.hpBase = 3297.650;
|
||||||
|
this.hpAdd = 66.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1438.560;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1648.825;
|
||||||
|
this.cpAdd = 33.200;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 29;
|
attributes.intelligence = 29;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class MaleSouldhoundTemplate extends MaleSoulbreakerTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected MaleSouldhoundTemplate(CharacterTemplateID id,
|
protected MaleSouldhoundTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class MoonlightSentinelTemplate extends SilverRangerTemplate {
|
public class MoonlightSentinelTemplate extends SilverRangerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public MoonlightSentinelTemplate(CharacterTemplateIDProvider provider) {
|
public MoonlightSentinelTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.MOONLIGHT_SENTINEL.id),
|
super(provider.createID(CharacterClass.MOONLIGHT_SENTINEL.id), CharacterClass.MOONLIGHT_SENTINEL, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.MOONLIGHT_SENTINEL, Point.fromXYZ(45978, 41196,
|
|
||||||
-3440));
|
this.hpBase = 3042.000;
|
||||||
|
this.hpAdd = 63.080;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1521.000;
|
||||||
|
this.cpAdd = 31.540;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -46,15 +56,16 @@ public class MoonlightSentinelTemplate extends SilverRangerTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected MoonlightSentinelTemplate(CharacterTemplateID id,
|
protected MoonlightSentinelTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class MysticMuseTemplate extends SpellsingerTemplate {
|
public class MysticMuseTemplate extends SpellsingerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public MysticMuseTemplate(CharacterTemplateIDProvider provider) {
|
public MysticMuseTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.MYSTIC_MUSE.id),
|
super(provider.createID(CharacterClass.MYSTIC_MUSE.id), CharacterClass.MYSTIC_MUSE, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.MYSTIC_MUSE, Point.fromXYZ(46182, 41198, -3440));
|
|
||||||
|
this.hpBase = 3013.100;
|
||||||
|
this.hpAdd = 61.420;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1807.800;
|
||||||
|
this.cpAdd = 30.710;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -45,15 +56,16 @@ public class MysticMuseTemplate extends SpellsingerTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected MysticMuseTemplate(CharacterTemplateID id,
|
protected MysticMuseTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class NecromancerTemplate extends WizardTemplate {
|
public class NecromancerTemplate extends WizardTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public NecromancerTemplate(CharacterTemplateIDProvider provider) {
|
public NecromancerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.NECROMANCER.id),
|
super(provider.createID(CharacterClass.NECROMANCER.id), CharacterClass.NECROMANCER, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.NECROMANCER, Point
|
|
||||||
.fromXYZ(-90890, 248027, -3570));
|
this.hpBase = 1021.500;
|
||||||
|
this.hpAdd = 45.600;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 510.700;
|
||||||
|
this.cpAdd = 22.850;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -46,15 +56,16 @@ public class NecromancerTemplate extends WizardTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected NecromancerTemplate(CharacterTemplateID id,
|
protected NecromancerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class OracleTemplate extends ElvenMysticTemplate {
|
public class OracleTemplate extends ElvenMysticTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public OracleTemplate(CharacterTemplateIDProvider provider) {
|
public OracleTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ORACLE.id),
|
super(provider.createID(CharacterClass.ORACLE.id), CharacterClass.ORACLE, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.ORACLE, Point.fromXYZ(46182, 41198, -3440));
|
|
||||||
|
this.hpBase = 427.000;
|
||||||
|
this.hpAdd = 35.300;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 192.000;
|
||||||
|
this.mpAdd = 13.300;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 213.500;
|
||||||
|
this.cpAdd = 17.700;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -45,15 +56,16 @@ public class OracleTemplate extends ElvenMysticTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected OracleTemplate(CharacterTemplateID id,
|
protected OracleTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class OrcFighterTemplate extends AbstractOrcCharacterTemplate {
|
public class OrcFighterTemplate extends AbstractOrcCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public OrcFighterTemplate(CharacterTemplateIDProvider provider) {
|
public OrcFighterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ORC_FIGHTER.id),
|
super(provider.createID(CharacterClass.ORC_FIGHTER.id), CharacterClass.ORC_FIGHTER, Point.fromXYZ(-56693, -113610, -690));
|
||||||
CharacterClass.ORC_FIGHTER, Point
|
|
||||||
.fromXYZ(-56693, -113610, -690));
|
this.hpBase = 80.000;
|
||||||
|
this.hpAdd = 12.640;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 30.000;
|
||||||
|
this.mpAdd = 5.360;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 40.000;
|
||||||
|
this.cpAdd = 6.270;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 18;
|
attributes.intelligence = 18;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class OrcFighterTemplate extends AbstractOrcCharacterTemplate {
|
|||||||
attributes.criticalChance = 42;
|
attributes.criticalChance = 42;
|
||||||
attributes.evasionChance = 31;
|
attributes.evasionChance = 31;
|
||||||
attributes.runSpeed = 117;
|
attributes.runSpeed = 117;
|
||||||
|
attributes.walkSpeed = 117;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 11.0;
|
this.maleCollisionRadius = 11.0;
|
||||||
this.maleCollisionHeight = 28.0;
|
this.maleCollisionHeight = 28.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 27.0;
|
this.femaleCollisionHeight = 27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected OrcFighterTemplate(CharacterTemplateID id,
|
protected OrcFighterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class OrcMonkTemplate extends OrcFighterTemplate {
|
public class OrcMonkTemplate extends OrcFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public OrcMonkTemplate(CharacterTemplateIDProvider provider) {
|
public OrcMonkTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ORC_MONK.id),
|
super(provider.createID(CharacterClass.ORC_MONK.id), CharacterClass.ORC_MONK, Point.fromXYZ(-56682, -113610, -690));
|
||||||
CharacterClass.ORC_MONK, Point.fromXYZ(-56682, -113610, -690));
|
|
||||||
|
this.hpBase = 346.000;
|
||||||
|
this.hpAdd = 32.900;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 173.000;
|
||||||
|
this.cpAdd = 16.400;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 18;
|
attributes.intelligence = 18;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class OrcMonkTemplate extends OrcFighterTemplate {
|
|||||||
attributes.criticalChance = 42;
|
attributes.criticalChance = 42;
|
||||||
attributes.evasionChance = 31;
|
attributes.evasionChance = 31;
|
||||||
attributes.runSpeed = 117;
|
attributes.runSpeed = 117;
|
||||||
|
attributes.walkSpeed = 117;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 11.0;
|
this.maleCollisionRadius = 11.0;
|
||||||
this.maleCollisionHeight = 28.0;
|
this.maleCollisionHeight = 28.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 27.0;
|
this.femaleCollisionHeight = 27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected OrcMonkTemplate(CharacterTemplateID id,
|
protected OrcMonkTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class OrcMysticTemplate extends AbstractOrcCharacterTemplate {
|
public class OrcMysticTemplate extends AbstractOrcCharacterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public OrcMysticTemplate(CharacterTemplateIDProvider provider) {
|
public OrcMysticTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ORC_MYSTIC.id),
|
super(provider.createID(CharacterClass.ORC_MYSTIC.id), CharacterClass.ORC_MYSTIC, Point.fromXYZ(-56682, -113730, -690));
|
||||||
CharacterClass.ORC_MYSTIC, Point.fromXYZ(-56682, -113730, -690));
|
|
||||||
|
this.hpBase = 95.000;
|
||||||
|
this.hpAdd = 15.470;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 40.000;
|
||||||
|
this.mpAdd = 7.280;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 47.500;
|
||||||
|
this.cpAdd = 7.740;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 1;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 31;
|
attributes.intelligence = 31;
|
||||||
attributes.strength = 27;
|
attributes.strength = 27;
|
||||||
@@ -45,15 +56,16 @@ public class OrcMysticTemplate extends AbstractOrcCharacterTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 121;
|
attributes.runSpeed = 121;
|
||||||
|
attributes.walkSpeed = 121;
|
||||||
attributes.maxWeigth = 68000;
|
attributes.maxWeigth = 68000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.0;
|
this.maleCollisionRadius = 7.0;
|
||||||
this.maleCollisionHeight = 27.5;
|
this.maleCollisionHeight = 27.5;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 25.5;
|
this.femaleCollisionHeight = 25.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected OrcMysticTemplate(CharacterTemplateID id,
|
protected OrcMysticTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class OrcRaiderTemplate extends OrcFighterTemplate {
|
public class OrcRaiderTemplate extends OrcFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public OrcRaiderTemplate(CharacterTemplateIDProvider provider) {
|
public OrcRaiderTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ORC_RAIDER.id),
|
super(provider.createID(CharacterClass.ORC_RAIDER.id), CharacterClass.ORC_RAIDER, Point.fromXYZ(-56693, -113610, -690));
|
||||||
CharacterClass.ORC_RAIDER, Point.fromXYZ(-56693, -113610, -690));
|
|
||||||
|
this.hpBase = 346.000;
|
||||||
|
this.hpAdd = 35.100;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 242.200;
|
||||||
|
this.cpAdd = 24.540;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 18;
|
attributes.intelligence = 18;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class OrcRaiderTemplate extends OrcFighterTemplate {
|
|||||||
attributes.criticalChance = 42;
|
attributes.criticalChance = 42;
|
||||||
attributes.evasionChance = 31;
|
attributes.evasionChance = 31;
|
||||||
attributes.runSpeed = 117;
|
attributes.runSpeed = 117;
|
||||||
|
attributes.walkSpeed = 117;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 11.0;
|
this.maleCollisionRadius = 11.0;
|
||||||
this.maleCollisionHeight = 28.0;
|
this.maleCollisionHeight = 28.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 27.0;
|
this.femaleCollisionHeight = 27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected OrcRaiderTemplate(CharacterTemplateID id,
|
protected OrcRaiderTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class OrcShamanTemplate extends OrcMysticTemplate {
|
public class OrcShamanTemplate extends OrcMysticTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public OrcShamanTemplate(CharacterTemplateIDProvider provider) {
|
public OrcShamanTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ORC_SHAMAN.id),
|
super(provider.createID(CharacterClass.ORC_SHAMAN.id), CharacterClass.ORC_SHAMAN, Point.fromXYZ(-56682, -113730, -690));
|
||||||
CharacterClass.ORC_SHAMAN, Point.fromXYZ(-56682, -113730, -690));
|
|
||||||
|
this.hpBase = 418.000;
|
||||||
|
this.hpAdd = 35.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 192.000;
|
||||||
|
this.mpAdd = 13.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 209.000;
|
||||||
|
this.cpAdd = 17.600;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 31;
|
attributes.intelligence = 31;
|
||||||
attributes.strength = 27;
|
attributes.strength = 27;
|
||||||
@@ -45,15 +56,16 @@ public class OrcShamanTemplate extends OrcMysticTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 121;
|
attributes.runSpeed = 121;
|
||||||
|
attributes.walkSpeed = 121;
|
||||||
attributes.maxWeigth = 68000;
|
attributes.maxWeigth = 68000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.0;
|
this.maleCollisionRadius = 7.0;
|
||||||
this.maleCollisionHeight = 27.5;
|
this.maleCollisionHeight = 27.5;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 25.5;
|
this.femaleCollisionHeight = 25.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected OrcShamanTemplate(CharacterTemplateID id,
|
protected OrcShamanTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class OverlordTemplate extends OrcShamanTemplate {
|
public class OverlordTemplate extends OrcShamanTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public OverlordTemplate(CharacterTemplateIDProvider provider) {
|
public OverlordTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.OVERLORD.id),
|
super(provider.createID(CharacterClass.OVERLORD.id), CharacterClass.OVERLORD, Point.fromXYZ(-56682, -113730, -690));
|
||||||
CharacterClass.OVERLORD, Point.fromXYZ(-56682, -113730, -690));
|
|
||||||
|
this.hpBase = 1182.800;
|
||||||
|
this.hpAdd = 53.300;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1069.200;
|
||||||
|
this.cpAdd = 42.640;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 31;
|
attributes.intelligence = 31;
|
||||||
attributes.strength = 27;
|
attributes.strength = 27;
|
||||||
@@ -45,15 +56,16 @@ public class OverlordTemplate extends OrcShamanTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 121;
|
attributes.runSpeed = 121;
|
||||||
|
attributes.walkSpeed = 121;
|
||||||
attributes.maxWeigth = 68000;
|
attributes.maxWeigth = 68000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.0;
|
this.maleCollisionRadius = 7.0;
|
||||||
this.maleCollisionHeight = 27.5;
|
this.maleCollisionHeight = 27.5;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 25.5;
|
this.femaleCollisionHeight = 25.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected OverlordTemplate(CharacterTemplateID id,
|
protected OverlordTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class PaladinTemplate extends KnightTemplate {
|
public class PaladinTemplate extends KnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public PaladinTemplate(CharacterTemplateIDProvider provider) {
|
public PaladinTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.PALADIN.id),
|
super(provider.createID(CharacterClass.PALADIN.id), CharacterClass.PALADIN, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.PALADIN, Point.fromXYZ(-71338, 258271, -3104));
|
|
||||||
|
this.hpBase = 972.300;
|
||||||
|
this.hpAdd = 46.800;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 583.300;
|
||||||
|
this.cpAdd = 28.080;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class PaladinTemplate extends KnightTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PaladinTemplate(CharacterTemplateID id,
|
protected PaladinTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class PalusKnightTemplate extends DarkFighterTemplate {
|
public class PalusKnightTemplate extends DarkFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public PalusKnightTemplate(CharacterTemplateIDProvider provider) {
|
public PalusKnightTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.PALUS_KNIGHT.id),
|
super(provider.createID(CharacterClass.PALUS_KNIGHT.id), CharacterClass.PALUS_KNIGHT, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.PALUS_KNIGHT, Point.fromXYZ(28377, 10916, -4224));
|
|
||||||
|
this.hpBase = 379.000;
|
||||||
|
this.hpAdd = 35.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 189.500;
|
||||||
|
this.cpAdd = 17.600;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class PalusKnightTemplate extends DarkFighterTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PalusKnightTemplate(CharacterTemplateID id,
|
protected PalusKnightTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class PhantomRangerTemplate extends AssassinTemplate {
|
public class PhantomRangerTemplate extends AssassinTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public PhantomRangerTemplate(CharacterTemplateIDProvider provider) {
|
public PhantomRangerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.PHANTOM_RANGER.id),
|
super(provider.createID(CharacterClass.PHANTOM_RANGER.id), CharacterClass.PHANTOM_RANGER, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.PHANTOM_RANGER, Point.fromXYZ(28377, 10916,
|
|
||||||
-4224));
|
this.hpBase = 1096.000;
|
||||||
|
this.hpAdd = 52.000;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 548.000;
|
||||||
|
this.cpAdd = 26.000;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class PhantomRangerTemplate extends AssassinTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PhantomRangerTemplate(CharacterTemplateID id,
|
protected PhantomRangerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class PhantomSummonerTemplate extends DarkWizardTemplate {
|
public class PhantomSummonerTemplate extends DarkWizardTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public PhantomSummonerTemplate(CharacterTemplateIDProvider provider) {
|
public PhantomSummonerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.PHANTOM_SUMMONER.id),
|
super(provider.createID(CharacterClass.PHANTOM_SUMMONER.id), CharacterClass.PHANTOM_SUMMONER, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.PHANTOM_SUMMONER, Point.fromXYZ(28295, 11063,
|
|
||||||
-4224));
|
this.hpBase = 1074.300;
|
||||||
|
this.hpAdd = 52.100;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 644.500;
|
||||||
|
this.cpAdd = 31.300;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -46,15 +56,16 @@ public class PhantomSummonerTemplate extends DarkWizardTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PhantomSummonerTemplate(CharacterTemplateID id,
|
protected PhantomSummonerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class PhoenixKnightTemplate extends PaladinTemplate {
|
public class PhoenixKnightTemplate extends PaladinTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public PhoenixKnightTemplate(CharacterTemplateIDProvider provider) {
|
public PhoenixKnightTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.PHOENIX_KNIGHT.id),
|
super(provider.createID(CharacterClass.PHOENIX_KNIGHT.id), CharacterClass.PHOENIX_KNIGHT, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.PHOENIX_KNIGHT, Point.fromXYZ(-71338, 258271,
|
|
||||||
-3104));
|
this.hpBase = 2883.900;
|
||||||
|
this.hpAdd = 59.760;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1730.300;
|
||||||
|
this.cpAdd = 35.860;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class PhoenixKnightTemplate extends PaladinTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PhoenixKnightTemplate(CharacterTemplateID id,
|
protected PhoenixKnightTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class PlainsWalkerTemplate extends ElvenScoutTemplate {
|
public class PlainsWalkerTemplate extends ElvenScoutTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public PlainsWalkerTemplate(CharacterTemplateIDProvider provider) {
|
public PlainsWalkerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.PLAINS_WALKER.id),
|
super(provider.createID(CharacterClass.PLAINS_WALKER.id), CharacterClass.PLAINS_WALKER, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.PLAINS_WALKER, Point
|
|
||||||
.fromXYZ(45978, 41196, -3440));
|
this.hpBase = 1024.200;
|
||||||
|
this.hpAdd = 46.800;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 563.310;
|
||||||
|
this.cpAdd = 25.740;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -46,15 +56,16 @@ public class PlainsWalkerTemplate extends ElvenScoutTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PlainsWalkerTemplate(CharacterTemplateID id,
|
protected PlainsWalkerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ProphetTemplate extends ClericTemplate {
|
public class ProphetTemplate extends ClericTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ProphetTemplate(CharacterTemplateIDProvider provider) {
|
public ProphetTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.PROPHET.id),
|
super(provider.createID(CharacterClass.PROPHET.id), CharacterClass.PROPHET, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.PROPHET, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 1164.900;
|
||||||
|
this.hpAdd = 53.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 582.400;
|
||||||
|
this.cpAdd = 26.750;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class ProphetTemplate extends ClericTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ProphetTemplate(CharacterTemplateID id,
|
protected ProphetTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class RogueTemplate extends HumanFighterTemplate {
|
public class RogueTemplate extends HumanFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public RogueTemplate(CharacterTemplateIDProvider provider) {
|
public RogueTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.ROGUE.id), CharacterClass.ROGUE,
|
super(provider.createID(CharacterClass.ROGUE.id), CharacterClass.ROGUE, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
Point.fromXYZ(-71338, 258271, -3104));
|
|
||||||
|
this.hpBase = 327.000;
|
||||||
|
this.hpAdd = 27.500;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 163.000;
|
||||||
|
this.cpAdd = 12.650;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class RogueTemplate extends HumanFighterTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected RogueTemplate(CharacterTemplateID id,
|
protected RogueTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SagittariusTemplate extends HawkeyeTemplate {
|
public class SagittariusTemplate extends HawkeyeTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SagittariusTemplate(CharacterTemplateIDProvider provider) {
|
public SagittariusTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SAGITTARIUS.id),
|
super(provider.createID(CharacterClass.SAGITTARIUS.id), CharacterClass.SAGITTARIUS, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.SAGITTARIUS, Point
|
|
||||||
.fromXYZ(-71338, 258271, -3104));
|
this.hpBase = 2729.900;
|
||||||
|
this.hpAdd = 56.440;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1910.900;
|
||||||
|
this.cpAdd = 39.510;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class SagittariusTemplate extends HawkeyeTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SagittariusTemplate(CharacterTemplateID id,
|
protected SagittariusTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ScavengerTemplate extends DwarvenFighterTemplate {
|
public class ScavengerTemplate extends DwarvenFighterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ScavengerTemplate(CharacterTemplateIDProvider provider) {
|
public ScavengerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SCAVENGER.id),
|
super(provider.createID(CharacterClass.SCAVENGER.id), CharacterClass.SCAVENGER, Point.fromXYZ(108512, -174026, -400));
|
||||||
CharacterClass.SCAVENGER, Point.fromXYZ(108512, -174026, -400));
|
|
||||||
|
this.hpBase = 346.000;
|
||||||
|
this.hpAdd = 35.100;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 144.000;
|
||||||
|
this.mpAdd = 9.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 242.200;
|
||||||
|
this.cpAdd = 24.540;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 20;
|
attributes.intelligence = 20;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -45,15 +56,16 @@ public class ScavengerTemplate extends DwarvenFighterTemplate {
|
|||||||
attributes.criticalChance = 43;
|
attributes.criticalChance = 43;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 83000;
|
attributes.maxWeigth = 83000;
|
||||||
attributes.craft = true;
|
attributes.craft = true;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 18.0;
|
this.maleCollisionHeight = 18.0;
|
||||||
this.femaleCollisionRadius = 5.0;
|
this.femaleCollisionRadius = 5.0;
|
||||||
this.femaleCollisionHeight = 19.0;
|
this.femaleCollisionHeight = 19.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ScavengerTemplate(CharacterTemplateID id,
|
protected ScavengerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ShillieanSaintTemplate extends ShillienElderTemplate {
|
public class ShillieanSaintTemplate extends ShillienElderTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ShillieanSaintTemplate(CharacterTemplateIDProvider provider) {
|
public ShillieanSaintTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SHILLIEAN_SAINT.id),
|
super(provider.createID(CharacterClass.SHILLIEAN_SAINT.id), CharacterClass.SHILLIEAN_SAINT, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.SHILLIEAN_SAINT, Point.fromXYZ(28295, 11063,
|
|
||||||
-4224));
|
this.hpBase = 3447.900;
|
||||||
|
this.hpAdd = 69.720;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 3103.110;
|
||||||
|
this.cpAdd = 62.748;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -46,15 +56,16 @@ public class ShillieanSaintTemplate extends ShillienElderTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ShillieanSaintTemplate(CharacterTemplateID id,
|
protected ShillieanSaintTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ShillienElderTemplate extends ShillienOracleTemplate {
|
public class ShillienElderTemplate extends ShillienOracleTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ShillienElderTemplate(CharacterTemplateIDProvider provider) {
|
public ShillienElderTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SHILLIEN_ELDER.id),
|
super(provider.createID(CharacterClass.SHILLIEN_ELDER.id), CharacterClass.SHILLIEN_ELDER, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.SHILLIEN_ELDER, Point.fromXYZ(28295, 11063,
|
|
||||||
-4224));
|
this.hpBase = 1217.700;
|
||||||
|
this.hpAdd = 54.600;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1095.930;
|
||||||
|
this.cpAdd = 49.140;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -46,15 +56,16 @@ public class ShillienElderTemplate extends ShillienOracleTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ShillienElderTemplate(CharacterTemplateID id,
|
protected ShillienElderTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ShillienKnightTemplate extends PalusKnightTemplate {
|
public class ShillienKnightTemplate extends PalusKnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ShillienKnightTemplate(CharacterTemplateIDProvider provider) {
|
public ShillienKnightTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SHILLIEN_KNIGHT.id),
|
super(provider.createID(CharacterClass.SHILLIEN_KNIGHT.id), CharacterClass.SHILLIEN_KNIGHT, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.SHILLIEN_KNIGHT, Point.fromXYZ(28377, 10916,
|
|
||||||
-4224));
|
this.hpBase = 1143.800;
|
||||||
|
this.hpAdd = 54.600;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 686.200;
|
||||||
|
this.cpAdd = 32.760;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class ShillienKnightTemplate extends PalusKnightTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ShillienKnightTemplate(CharacterTemplateID id,
|
protected ShillienKnightTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ShillienOracleTemplate extends DarkMysticTemplate {
|
public class ShillienOracleTemplate extends DarkMysticTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ShillienOracleTemplate(CharacterTemplateIDProvider provider) {
|
public ShillienOracleTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SHILLIEN_ORACLE.id),
|
super(provider.createID(CharacterClass.SHILLIEN_ORACLE.id), CharacterClass.SHILLIEN_ORACLE, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.SHILLIEN_ORACLE, Point.fromXYZ(28295, 11063,
|
|
||||||
-4224));
|
this.hpBase = 429.000;
|
||||||
|
this.hpAdd = 36.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 192.000;
|
||||||
|
this.mpAdd = 13.300;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 214.500;
|
||||||
|
this.cpAdd = 18.250;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -46,15 +56,16 @@ public class ShillienOracleTemplate extends DarkMysticTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ShillienOracleTemplate(CharacterTemplateID id,
|
protected ShillienOracleTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class ShillienTemplarTemplate extends ShillienKnightTemplate {
|
public class ShillienTemplarTemplate extends ShillienKnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public ShillienTemplarTemplate(CharacterTemplateIDProvider provider) {
|
public ShillienTemplarTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SHILLIEN_TEMPLAR.id),
|
super(provider.createID(CharacterClass.SHILLIEN_TEMPLAR.id), CharacterClass.SHILLIEN_TEMPLAR, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.SHILLIEN_TEMPLAR, Point.fromXYZ(28377, 10916,
|
|
||||||
-4224));
|
this.hpBase = 3374.000;
|
||||||
|
this.hpAdd = 69.720;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 2024.400;
|
||||||
|
this.cpAdd = 41.830;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class ShillienTemplarTemplate extends ShillienKnightTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ShillienTemplarTemplate(CharacterTemplateID id,
|
protected ShillienTemplarTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SilverRangerTemplate extends ElvenScoutTemplate {
|
public class SilverRangerTemplate extends ElvenScoutTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SilverRangerTemplate(CharacterTemplateIDProvider provider) {
|
public SilverRangerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SILVER_RANGER.id),
|
super(provider.createID(CharacterClass.SILVER_RANGER.id), CharacterClass.SILVER_RANGER, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.SILVER_RANGER, Point
|
|
||||||
.fromXYZ(45978, 41196, -3440));
|
this.hpBase = 1024.200;
|
||||||
|
this.hpAdd = 49.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 512.100;
|
||||||
|
this.cpAdd = 24.700;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -46,15 +56,16 @@ public class SilverRangerTemplate extends ElvenScoutTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SilverRangerTemplate(CharacterTemplateID id,
|
protected SilverRangerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SorcerorTemplate extends WizardTemplate {
|
public class SorcerorTemplate extends WizardTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SorcerorTemplate(CharacterTemplateIDProvider provider) {
|
public SorcerorTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SORCEROR.id),
|
super(provider.createID(CharacterClass.SORCEROR.id), CharacterClass.SORCEROR, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.SORCEROR, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 1021.500;
|
||||||
|
this.hpAdd = 45.600;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 612.800;
|
||||||
|
this.cpAdd = 22.850;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class SorcerorTemplate extends WizardTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SorcerorTemplate(CharacterTemplateID id,
|
protected SorcerorTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SoultakerTemplate extends NecromancerTemplate {
|
public class SoultakerTemplate extends NecromancerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SoultakerTemplate(CharacterTemplateIDProvider provider) {
|
public SoultakerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SOULTAKER.id),
|
super(provider.createID(CharacterClass.SOULTAKER.id), CharacterClass.SOULTAKER, Point.fromXYZ(-90890, 248027, -3570));
|
||||||
CharacterClass.SOULTAKER, Point.fromXYZ(-90890, 248027, -3570));
|
|
||||||
|
this.hpBase = 2880.000;
|
||||||
|
this.hpAdd = 58.100;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1440.000;
|
||||||
|
this.cpAdd = 29.050;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 41;
|
attributes.intelligence = 41;
|
||||||
attributes.strength = 22;
|
attributes.strength = 22;
|
||||||
@@ -45,15 +56,16 @@ public class SoultakerTemplate extends NecromancerTemplate {
|
|||||||
attributes.criticalChance = 40;
|
attributes.criticalChance = 40;
|
||||||
attributes.evasionChance = 28;
|
attributes.evasionChance = 28;
|
||||||
attributes.runSpeed = 120;
|
attributes.runSpeed = 120;
|
||||||
|
attributes.walkSpeed = 120;
|
||||||
attributes.maxWeigth = 62500;
|
attributes.maxWeigth = 62500;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 22.8;
|
this.maleCollisionHeight = 22.8;
|
||||||
this.femaleCollisionRadius = 6.5;
|
this.femaleCollisionRadius = 6.5;
|
||||||
this.femaleCollisionHeight = 22.5;
|
this.femaleCollisionHeight = 22.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SoultakerTemplate(CharacterTemplateID id,
|
protected SoultakerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SpectralMasterTemplate extends PhantomSummonerTemplate {
|
public class SpectralMasterTemplate extends PhantomSummonerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SpectralMasterTemplate(CharacterTemplateIDProvider provider) {
|
public SpectralMasterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SPECTRAL_MASTER.id),
|
super(provider.createID(CharacterClass.SPECTRAL_MASTER.id), CharacterClass.SPECTRAL_MASTER, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.SPECTRAL_MASTER, Point.fromXYZ(28295, 11063,
|
|
||||||
-4224));
|
this.hpBase = 3198.300;
|
||||||
|
this.hpAdd = 66.400;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1918.900;
|
||||||
|
this.cpAdd = 39.840;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -46,15 +56,16 @@ public class SpectralMasterTemplate extends PhantomSummonerTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SpectralMasterTemplate(CharacterTemplateID id,
|
protected SpectralMasterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SpectraldancerTemplate extends BladedancerTemplate {
|
public class SpectraldancerTemplate extends BladedancerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SpectraldancerTemplate(CharacterTemplateIDProvider provider) {
|
public SpectraldancerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.spectralDancer.id),
|
super(provider.createID(CharacterClass.spectralDancer.id), CharacterClass.spectralDancer, Point.fromXYZ(28377, 10916, -4224));
|
||||||
CharacterClass.spectralDancer, Point.fromXYZ(28377, 10916,
|
|
||||||
-4224));
|
this.hpBase = 3533.300;
|
||||||
|
this.hpAdd = 74.700;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1766.600;
|
||||||
|
this.cpAdd = 37.350;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 25;
|
attributes.intelligence = 25;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -46,15 +56,16 @@ public class SpectraldancerTemplate extends BladedancerTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 69000;
|
attributes.maxWeigth = 69000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SpectraldancerTemplate(CharacterTemplateID id,
|
protected SpectraldancerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SpellhowlerTemplate extends DarkWizardTemplate {
|
public class SpellhowlerTemplate extends DarkWizardTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SpellhowlerTemplate(CharacterTemplateIDProvider provider) {
|
public SpellhowlerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SPELLHOWLER.id),
|
super(provider.createID(CharacterClass.SPELLHOWLER.id), CharacterClass.SPELLHOWLER, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.SPELLHOWLER, Point.fromXYZ(28295, 11063, -4224));
|
|
||||||
|
this.hpBase = 1074.300;
|
||||||
|
this.hpAdd = 48.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 644.500;
|
||||||
|
this.cpAdd = 24.150;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -45,15 +56,16 @@ public class SpellhowlerTemplate extends DarkWizardTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SpellhowlerTemplate(CharacterTemplateID id,
|
protected SpellhowlerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SpellsingerTemplate extends ElvenWizardTemplate {
|
public class SpellsingerTemplate extends ElvenWizardTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SpellsingerTemplate(CharacterTemplateIDProvider provider) {
|
public SpellsingerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SPELLSINGER.id),
|
super(provider.createID(CharacterClass.SPELLSINGER.id), CharacterClass.SPELLSINGER, Point.fromXYZ(46182, 41198, -3440));
|
||||||
CharacterClass.SPELLSINGER, Point.fromXYZ(46182, 41198, -3440));
|
|
||||||
|
this.hpBase = 1048.400;
|
||||||
|
this.hpAdd = 48.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.100;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 629.000;
|
||||||
|
this.cpAdd = 24.150;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 37;
|
attributes.intelligence = 37;
|
||||||
attributes.strength = 21;
|
attributes.strength = 21;
|
||||||
@@ -45,15 +56,16 @@ public class SpellsingerTemplate extends ElvenWizardTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 62400;
|
attributes.maxWeigth = 62400;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SpellsingerTemplate(CharacterTemplateID id,
|
protected SpellsingerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class StormScreamerTemplate extends SpellhowlerTemplate {
|
public class StormScreamerTemplate extends SpellhowlerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public StormScreamerTemplate(CharacterTemplateIDProvider provider) {
|
public StormScreamerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.STORM_SCREAMER.id),
|
super(provider.createID(CharacterClass.STORM_SCREAMER.id), CharacterClass.STORM_SCREAMER, Point.fromXYZ(28295, 11063, -4224));
|
||||||
CharacterClass.STORM_SCREAMER, Point.fromXYZ(28295, 11063,
|
|
||||||
-4224));
|
this.hpBase = 3039.000;
|
||||||
|
this.hpAdd = 61.420;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1540.800;
|
||||||
|
this.mpAdd = 33.200;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1823.400;
|
||||||
|
this.cpAdd = 30.710;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 44;
|
attributes.intelligence = 44;
|
||||||
attributes.strength = 23;
|
attributes.strength = 23;
|
||||||
@@ -46,15 +56,16 @@ public class StormScreamerTemplate extends SpellhowlerTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 29;
|
attributes.evasionChance = 29;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 61000;
|
attributes.maxWeigth = 61000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected StormScreamerTemplate(CharacterTemplateID id,
|
protected StormScreamerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SwordMuseTemplate extends SwordSingerTemplate {
|
public class SwordMuseTemplate extends SwordSingerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SwordMuseTemplate(CharacterTemplateIDProvider provider) {
|
public SwordMuseTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SWORD_MUSE.id),
|
super(provider.createID(CharacterClass.SWORD_MUSE.id), CharacterClass.SWORD_MUSE, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.SWORD_MUSE, Point.fromXYZ(45978, 41196, -3440));
|
|
||||||
|
this.hpBase = 3302.200;
|
||||||
|
this.hpAdd = 69.720;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1651.100;
|
||||||
|
this.cpAdd = 34.860;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -45,15 +56,16 @@ public class SwordMuseTemplate extends SwordSingerTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SwordMuseTemplate(CharacterTemplateID id,
|
protected SwordMuseTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class SwordSingerTemplate extends ElvenKnightTemplate {
|
public class SwordSingerTemplate extends ElvenKnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public SwordSingerTemplate(CharacterTemplateIDProvider provider) {
|
public SwordSingerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.SWORD_SINGER.id),
|
super(provider.createID(CharacterClass.SWORD_SINGER.id), CharacterClass.SWORD_SINGER, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.SWORD_SINGER, Point.fromXYZ(45978, 41196, -3440));
|
|
||||||
|
this.hpBase = 1072.000;
|
||||||
|
this.hpAdd = 54.600;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 536.000;
|
||||||
|
this.cpAdd = 27.300;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -45,15 +56,16 @@ public class SwordSingerTemplate extends ElvenKnightTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SwordSingerTemplate(CharacterTemplateID id,
|
protected SwordSingerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class TempleKnightTemplate extends ElvenKnightTemplate {
|
public class TempleKnightTemplate extends ElvenKnightTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public TempleKnightTemplate(CharacterTemplateIDProvider provider) {
|
public TempleKnightTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.TEMPLE_KNIGHT.id),
|
super(provider.createID(CharacterClass.TEMPLE_KNIGHT.id), CharacterClass.TEMPLE_KNIGHT, Point.fromXYZ(45978, 41196, -3440));
|
||||||
CharacterClass.TEMPLE_KNIGHT, Point
|
|
||||||
.fromXYZ(45978, 41196, -3440));
|
this.hpBase = 1072.000;
|
||||||
|
this.hpAdd = 52.000;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 643.200;
|
||||||
|
this.cpAdd = 31.200;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 23;
|
attributes.intelligence = 23;
|
||||||
attributes.strength = 36;
|
attributes.strength = 36;
|
||||||
@@ -46,15 +56,16 @@ public class TempleKnightTemplate extends ElvenKnightTemplate {
|
|||||||
attributes.criticalChance = 46;
|
attributes.criticalChance = 46;
|
||||||
attributes.evasionChance = 36;
|
attributes.evasionChance = 36;
|
||||||
attributes.runSpeed = 125;
|
attributes.runSpeed = 125;
|
||||||
|
attributes.walkSpeed = 125;
|
||||||
attributes.maxWeigth = 73000;
|
attributes.maxWeigth = 73000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.5;
|
this.maleCollisionRadius = 7.5;
|
||||||
this.maleCollisionHeight = 24.0;
|
this.maleCollisionHeight = 24.0;
|
||||||
this.femaleCollisionRadius = 7.5;
|
this.femaleCollisionRadius = 7.5;
|
||||||
this.femaleCollisionHeight = 23.0;
|
this.femaleCollisionHeight = 23.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TempleKnightTemplate(CharacterTemplateID id,
|
protected TempleKnightTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class TitanTemplate extends DestroyerTemplate {
|
public class TitanTemplate extends DestroyerTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public TitanTemplate(CharacterTemplateIDProvider provider) {
|
public TitanTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.TITAN.id), CharacterClass.TITAN,
|
super(provider.createID(CharacterClass.TITAN.id), CharacterClass.TITAN, Point.fromXYZ(-56693, -113610, -690));
|
||||||
Point.fromXYZ(-56693, -113610, -690));
|
|
||||||
|
this.hpBase = 3447.200;
|
||||||
|
this.hpAdd = 72.940;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1155.600;
|
||||||
|
this.mpAdd = 24.800;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 2413.000;
|
||||||
|
this.cpAdd = 51.030;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 18;
|
attributes.intelligence = 18;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class TitanTemplate extends DestroyerTemplate {
|
|||||||
attributes.criticalChance = 42;
|
attributes.criticalChance = 42;
|
||||||
attributes.evasionChance = 31;
|
attributes.evasionChance = 31;
|
||||||
attributes.runSpeed = 117;
|
attributes.runSpeed = 117;
|
||||||
|
attributes.walkSpeed = 117;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 11.0;
|
this.maleCollisionRadius = 11.0;
|
||||||
this.maleCollisionHeight = 28.0;
|
this.maleCollisionHeight = 28.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 27.0;
|
this.femaleCollisionHeight = 27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TitanTemplate(CharacterTemplateID id,
|
protected TitanTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,9 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class TreasureHunterTemplate extends RogueTemplate {
|
public class TreasureHunterTemplate extends RogueTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public TreasureHunterTemplate(CharacterTemplateIDProvider provider) {
|
public TreasureHunterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.TREASURE_HUNTER.id),
|
super(provider.createID(CharacterClass.TREASURE_HUNTER.id), CharacterClass.TREASURE_HUNTER, Point.fromXYZ(-71338, 258271, -3104));
|
||||||
CharacterClass.TREASURE_HUNTER, Point.fromXYZ(-71338, 258271,
|
|
||||||
-3104));
|
this.hpBase = 924.500;
|
||||||
|
this.hpAdd = 41.600;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.500;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 508.475;
|
||||||
|
this.cpAdd = 22.880;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 21;
|
attributes.intelligence = 21;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -46,15 +56,16 @@ public class TreasureHunterTemplate extends RogueTemplate {
|
|||||||
attributes.criticalChance = 44;
|
attributes.criticalChance = 44;
|
||||||
attributes.evasionChance = 33;
|
attributes.evasionChance = 33;
|
||||||
attributes.runSpeed = 115;
|
attributes.runSpeed = 115;
|
||||||
|
attributes.walkSpeed = 115;
|
||||||
attributes.maxWeigth = 81900;
|
attributes.maxWeigth = 81900;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 9.0;
|
this.maleCollisionRadius = 9.0;
|
||||||
this.maleCollisionHeight = 23.0;
|
this.maleCollisionHeight = 23.0;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 23.5;
|
this.femaleCollisionHeight = 23.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TreasureHunterTemplate(CharacterTemplateID id,
|
protected TreasureHunterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class TricksterTemplate extends ArbalesterTemplate {
|
public class TricksterTemplate extends ArbalesterTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public TricksterTemplate(CharacterTemplateIDProvider provider) {
|
public TricksterTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.TRICKSTER.id),
|
super(provider.createID(CharacterClass.TRICKSTER.id), CharacterClass.TRICKSTER, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.TRICKSTER, Point.fromXYZ(-125533, 38114, 1142));
|
|
||||||
|
this.hpBase = 3476.140;
|
||||||
|
this.hpAdd = 73.040;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 1283.530;
|
||||||
|
this.mpAdd = 24.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 1738.070;
|
||||||
|
this.cpAdd = 36.520;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 76;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 28;
|
attributes.intelligence = 28;
|
||||||
attributes.strength = 39;
|
attributes.strength = 39;
|
||||||
@@ -45,15 +56,16 @@ public class TricksterTemplate extends ArbalesterTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 22.6;
|
this.maleCollisionHeight = 22.6;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TricksterTemplate(CharacterTemplateID id,
|
protected TricksterTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class TrooperTemplate extends MaleSoldierTemplate {
|
public class TrooperTemplate extends MaleSoldierTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public TrooperTemplate(CharacterTemplateIDProvider provider) {
|
public TrooperTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.TROOPER.id),
|
super(provider.createID(CharacterClass.TROOPER.id), CharacterClass.TROOPER, Point.fromXYZ(-125533, 38114, 1142));
|
||||||
CharacterClass.TROOPER, Point.fromXYZ(-125533, 38114, 1142));
|
|
||||||
|
this.hpBase = 398.530;
|
||||||
|
this.hpAdd = 35.200;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 147.270;
|
||||||
|
this.mpAdd = 9.900;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 199.265;
|
||||||
|
this.cpAdd = 17.600;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 20;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 29;
|
attributes.intelligence = 29;
|
||||||
attributes.strength = 41;
|
attributes.strength = 41;
|
||||||
@@ -45,15 +56,16 @@ public class TrooperTemplate extends MaleSoldierTemplate {
|
|||||||
attributes.criticalChance = 45;
|
attributes.criticalChance = 45;
|
||||||
attributes.evasionChance = 35;
|
attributes.evasionChance = 35;
|
||||||
attributes.runSpeed = 122;
|
attributes.runSpeed = 122;
|
||||||
|
attributes.walkSpeed = 122;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 8.0;
|
this.maleCollisionRadius = 8.0;
|
||||||
this.maleCollisionHeight = 25.2;
|
this.maleCollisionHeight = 25.2;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 22.6;
|
this.femaleCollisionHeight = 22.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TrooperTemplate(CharacterTemplateID id,
|
protected TrooperTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class TyrantTemplate extends OrcRaiderTemplate {
|
public class TyrantTemplate extends OrcRaiderTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public TyrantTemplate(CharacterTemplateIDProvider provider) {
|
public TyrantTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.TYRANT.id),
|
super(provider.createID(CharacterClass.TYRANT.id), CharacterClass.TYRANT, Point.fromXYZ(-56693, -113610, -690));
|
||||||
CharacterClass.TYRANT, Point.fromXYZ(-56693, -113610, -690));
|
|
||||||
|
this.hpBase = 1063.000;
|
||||||
|
this.hpAdd = 54.500;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 359.100;
|
||||||
|
this.mpAdd = 19.400;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 531.500;
|
||||||
|
this.cpAdd = 27.200;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 18;
|
attributes.intelligence = 18;
|
||||||
attributes.strength = 40;
|
attributes.strength = 40;
|
||||||
@@ -45,15 +56,16 @@ public class TyrantTemplate extends OrcRaiderTemplate {
|
|||||||
attributes.criticalChance = 42;
|
attributes.criticalChance = 42;
|
||||||
attributes.evasionChance = 31;
|
attributes.evasionChance = 31;
|
||||||
attributes.runSpeed = 117;
|
attributes.runSpeed = 117;
|
||||||
|
attributes.walkSpeed = 117;
|
||||||
attributes.maxWeigth = 87000;
|
attributes.maxWeigth = 87000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 11.0;
|
this.maleCollisionRadius = 11.0;
|
||||||
this.maleCollisionHeight = 28.0;
|
this.maleCollisionHeight = 28.0;
|
||||||
this.femaleCollisionRadius = 7.0;
|
this.femaleCollisionRadius = 7.0;
|
||||||
this.femaleCollisionHeight = 27.0;
|
this.femaleCollisionHeight = 27.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TyrantTemplate(CharacterTemplateID id,
|
protected TyrantTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
@@ -26,8 +26,19 @@ import com.l2jserver.util.dimensional.Point;
|
|||||||
public class WarcryerTemplate extends OrcShamanTemplate {
|
public class WarcryerTemplate extends OrcShamanTemplate {
|
||||||
@Inject
|
@Inject
|
||||||
public WarcryerTemplate(CharacterTemplateIDProvider provider) {
|
public WarcryerTemplate(CharacterTemplateIDProvider provider) {
|
||||||
super(provider.createID(CharacterClass.WARCRYER.id),
|
super(provider.createID(CharacterClass.WARCRYER.id), CharacterClass.WARCRYER, Point.fromXYZ(-56682, -113730, -690));
|
||||||
CharacterClass.WARCRYER, Point.fromXYZ(-56682, -113730, -690));
|
|
||||||
|
this.hpBase = 1182.800;
|
||||||
|
this.hpAdd = 53.300;
|
||||||
|
this.hpMultiplier = 0.37;
|
||||||
|
this.mpBase = 478.800;
|
||||||
|
this.mpAdd = 26.000;
|
||||||
|
this.mpMultiplier = 0.14;
|
||||||
|
this.cpBase = 591.400;
|
||||||
|
this.cpAdd = 26.650;
|
||||||
|
this.cpMultiplier = 0.22;
|
||||||
|
this.minimumLevel = 40;
|
||||||
|
|
||||||
// ATTRIBUTES
|
// ATTRIBUTES
|
||||||
attributes.intelligence = 31;
|
attributes.intelligence = 31;
|
||||||
attributes.strength = 27;
|
attributes.strength = 27;
|
||||||
@@ -45,15 +56,16 @@ public class WarcryerTemplate extends OrcShamanTemplate {
|
|||||||
attributes.criticalChance = 41;
|
attributes.criticalChance = 41;
|
||||||
attributes.evasionChance = 30;
|
attributes.evasionChance = 30;
|
||||||
attributes.runSpeed = 121;
|
attributes.runSpeed = 121;
|
||||||
|
attributes.walkSpeed = 121;
|
||||||
attributes.maxWeigth = 68000;
|
attributes.maxWeigth = 68000;
|
||||||
attributes.craft = false;
|
attributes.craft = false;
|
||||||
|
|
||||||
this.maleCollisionRadius = 7.0;
|
this.maleCollisionRadius = 7.0;
|
||||||
this.maleCollisionHeight = 27.5;
|
this.maleCollisionHeight = 27.5;
|
||||||
this.femaleCollisionRadius = 8.0;
|
this.femaleCollisionRadius = 8.0;
|
||||||
this.femaleCollisionHeight = 25.5;
|
this.femaleCollisionHeight = 25.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected WarcryerTemplate(CharacterTemplateID id,
|
protected WarcryerTemplate(CharacterTemplateID id,
|
||||||
CharacterClass characterClass, Point spawnLocation) {
|
CharacterClass characterClass, Point spawnLocation) {
|
||||||
super(id, characterClass, spawnLocation);
|
super(id, characterClass, spawnLocation);
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user