mirror of
https://github.com/Rogiel/l2jserver2
synced 2026-03-13 22:28:06 +00:00
Modularizes the Maven project
This commit modularizes the maven project into several modules: - l2jserver2-common: common sources for both login and gameserver - l2jserver2-gameserver: the game server - l2jserver2-loginserver: the login server - l2jserver2-tools: refactored src/tools/java soure folder
This commit is contained in:
3
l2jserver2-gameserver/data/.gitignore
vendored
Normal file
3
l2jserver2-gameserver/data/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/cache
|
||||
/pathing.db
|
||||
/database.h2.db
|
||||
37
l2jserver2-gameserver/data/contexts.xsd
Normal file
37
l2jserver2-gameserver/data/contexts.xsd
Normal file
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<!--
|
||||
~ 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/>.
|
||||
-->
|
||||
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="scriptinfo" type="scriptInfo"/>
|
||||
|
||||
<xs:element name="scriptlist" type="scriptList"/>
|
||||
|
||||
<xs:complexType name="scriptList">
|
||||
<xs:sequence>
|
||||
<xs:element ref="scriptinfo" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="scriptInfo">
|
||||
<xs:sequence>
|
||||
<xs:element ref="scriptinfo" 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:attribute name="root" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.l2jserver.plugin;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* Marker annotation that is used to mark disabled plugins so they will be
|
||||
* ignored by {@link PluginLoader}
|
||||
*
|
||||
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public @interface DisabledPlugin {
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
package com.l2jserver.plugin;
|
||||
|
||||
import java.lang.reflect.Modifier;
|
||||
import java.util.Set;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
import com.l2jserver.model.template.Template;
|
||||
import com.l2jserver.service.game.scripting.classlistener.Loader;
|
||||
import com.l2jserver.service.game.scripting.classlistener.Unloader;
|
||||
import com.l2jserver.util.ClassUtils;
|
||||
import com.l2jserver.util.factory.CollectionFactory;
|
||||
|
||||
/**
|
||||
* Utility class that loads all Plugins in classPath of this script context.<br>
|
||||
* Plugin should be public, not abstract, not interface, must have default
|
||||
* constructor annotated with @Inject.
|
||||
*
|
||||
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
||||
*/
|
||||
public class PluginLoader implements Loader, Unloader {
|
||||
@SuppressWarnings("unused")
|
||||
private static final Logger log = LoggerFactory
|
||||
.getLogger(PluginLoader.class);
|
||||
|
||||
@Inject
|
||||
public PluginLoader() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void load(Class<?>[] classes) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void unload(Class<?>[] classes) {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns list of suitable Template classes to load/unload
|
||||
*
|
||||
* @param classes
|
||||
* loaded classes
|
||||
*
|
||||
* @return list of Template classes to load/unload
|
||||
*/
|
||||
@SuppressWarnings({ "unchecked", "unused" })
|
||||
private static Set<Class<? extends Template<?>>> getSuitableClasses(
|
||||
Class<?>[] classes) {
|
||||
final Set<Class<? extends Template<?>>> suitable = CollectionFactory
|
||||
.newSet();
|
||||
for (Class<?> clazz : classes) {
|
||||
if (!ClassUtils.isSubclass(clazz, Template.class))
|
||||
continue;
|
||||
if (Modifier.isAbstract(clazz.getModifiers())
|
||||
|| Modifier.isInterface(clazz.getModifiers()))
|
||||
continue;
|
||||
if (!Modifier.isPublic(clazz.getModifiers()))
|
||||
continue;
|
||||
if (clazz.isAnnotationPresent(DisabledPlugin.class))
|
||||
continue;
|
||||
|
||||
suitable.add((Class<? extends Template<?>>) clazz);
|
||||
}
|
||||
|
||||
return suitable;
|
||||
}
|
||||
}
|
||||
23
l2jserver2-gameserver/data/sample/char.xml
Normal file
23
l2jserver2-gameserver/data/sample/char.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<character class="FIGHTER">
|
||||
<stats level="40" crafter="false">
|
||||
<hp base="2444.46819" multiplier="7.5" add="" />
|
||||
<mp base="2444.46819" multiplier="7.5" add="" />
|
||||
<cp base="2444.46819" multiplier="7.5" add="" />
|
||||
<base int="21" str="40" con="43" men="20" dex="30" wit="20" />
|
||||
<attack critical="4" evasion="0">
|
||||
<physical damage="688.86373" speed="253" />
|
||||
<magical damage="470.40463" speed="333" />
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="0" />
|
||||
<magical value="0" />
|
||||
</defense>
|
||||
<move run="120" walk="50" />
|
||||
<load>100</load>
|
||||
</stats>
|
||||
<collision>
|
||||
<male radius="" heigth="" />
|
||||
<female radius="" heigth="" />
|
||||
</collision>
|
||||
</character>
|
||||
7
l2jserver2-gameserver/data/sample/item.xml
Normal file
7
l2jserver2-gameserver/data/sample/item.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item id="57" icon="icon.etc_adena_i00">
|
||||
<name>Adena</name>
|
||||
<material>GOLD</material>
|
||||
<effect type="IMMEDIATE" />
|
||||
<price>1</price>
|
||||
</item>
|
||||
51
l2jserver2-gameserver/data/sample/npc.xml
Normal file
51
l2jserver2-gameserver/data/sample/npc.xml
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<npc id="1" type="TeleporterNPCTemplate">
|
||||
<info attackable="false" targetable="true" aggressive="false">
|
||||
<name send="true" show="true">Angeline</name>
|
||||
<title send="false">Gatekeeper</title>
|
||||
<level>70</level>
|
||||
<sex>MALE</sex>
|
||||
<stats>
|
||||
<hp max="2444.46819" regen="7.5" />
|
||||
<mp max="1345.8" regen="2.7" />
|
||||
<attack range="40" critical="4" evasion="0">
|
||||
<physical damage="688.86373" speed="253" />
|
||||
<magical damage="470.40463" speed="333" />
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="0" />
|
||||
<magical value="0" />
|
||||
</defense>
|
||||
<move run="120" walk="50" />
|
||||
<base int="21" str="40" con="43" men="20" dex="30" wit="20" />
|
||||
</stats>
|
||||
<experience>0</experience>
|
||||
<sp>0</sp>
|
||||
<item righthand="10" lefthand="20" />
|
||||
<collision radius="" height="" />
|
||||
</info>
|
||||
<ai script="com.l2jserver.ai.TeleporterAI" />
|
||||
<teleporter>
|
||||
<teleport id="global">
|
||||
<region id="KAMAEL_VILLAGE" price="200" item="57" />
|
||||
</teleport>
|
||||
<teleport id="nobless">
|
||||
<region id="KAMAEL_VILLAGE" price="50">
|
||||
<condition id="NOBLESS" />
|
||||
</region>
|
||||
</teleport>
|
||||
</teleporter>
|
||||
<talk default="welcome">
|
||||
<chat id="welcome"><![CDATA[<html>
|
||||
<body>
|
||||
Hello, my name is ${info.name}!<br>
|
||||
If you wish I can teleport you to a variety of places.<p>
|
||||
<a action="bypass -h npc_${id}_Chat teleport_global">Teleport</a>
|
||||
</body>
|
||||
</html>]]></chat>
|
||||
</talk>
|
||||
<droplist>
|
||||
<item id="57" min="100" max="1000" category="KILL" chance="1" /> <!-- chance 1 means 100% -->
|
||||
</droplist>
|
||||
<store ref="no_grade_store" />
|
||||
</npc>
|
||||
34
l2jserver2-gameserver/data/sample/skill.xml
Normal file
34
l2jserver2-gameserver/data/sample/skill.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<skill id="3" name="Power Strike" delay="3000" cooldown="720" hitTime="3000">
|
||||
<stats overhit="true" type="PHYSICAL_DAMAGE" range="40">
|
||||
<levels max="9" depend="1">
|
||||
<level level="1" mpConsume="9" runSpeed="spd" abnormal="1" power="30" magic="3">
|
||||
<enchant magicLevel="1" power="2" />
|
||||
</level>
|
||||
<level level="2" mpConsume="9" power="32" magic="4" />
|
||||
<level level="3" mpConsume="10" power="35" magic="5" />
|
||||
<level level="4" mpConsume="11" power="46" magic="8" />
|
||||
<level level="5" mpConsume="12" power="61" magic="9" />
|
||||
<level level="6" mpConsume="13" power="65" magic="10" />
|
||||
<level level="7" mpConsume="16" power="71" magic="13" />
|
||||
<level level="8" mpConsume="16" power="78" magic="14" />
|
||||
<level level="9" mpConsume="17" power="84" magic="15" />
|
||||
</levels>
|
||||
<soulshot count="1" boost="2.0" />
|
||||
<hit time="1080" />
|
||||
<effects range="400">
|
||||
<effect name="BUFF" duration="15" abnormalType="speed_up_special">
|
||||
<add order="0x40" stat="RUN_SPEED" />
|
||||
</effect>
|
||||
</effects>
|
||||
</stats>
|
||||
<info nextAction="ATTACK" target="SINGLE">
|
||||
<weapon>
|
||||
<allowed type="SWORD" />
|
||||
<allowed type="BIG_SWORD" />
|
||||
<allowed type="BLUNT" />
|
||||
<allowed type="BIG_BLUNT" />
|
||||
</weapon>
|
||||
<operate type="OP_ACTIVE" />
|
||||
</info>
|
||||
</skill>
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* This file is part of l2jserver <l2jserver.com>.
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
package com.l2jserver.game.ai;
|
||||
|
||||
import com.l2jserver.game.ai.desires.Desire;
|
||||
import com.l2jserver.model.world.NPC;
|
||||
|
||||
/**
|
||||
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
||||
*
|
||||
*/
|
||||
public class MonsterAI extends NPCAI {
|
||||
/**
|
||||
* @param creature
|
||||
* the creature
|
||||
*/
|
||||
protected MonsterAI(NPC creature) {
|
||||
super(creature);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void handleDesire(Desire desire) {
|
||||
super.handleDesire(desire);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* This file is part of l2jserver <l2jserver.com>.
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
package com.l2jserver.game.ai;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
import com.l2jserver.game.ai.desires.Desire;
|
||||
import com.l2jserver.game.ai.desires.MoveDesire;
|
||||
import com.l2jserver.model.world.NPC;
|
||||
import com.l2jserver.service.game.npc.NPCService;
|
||||
|
||||
/**
|
||||
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
||||
*
|
||||
*/
|
||||
public class NPCAI extends AI<NPC> {
|
||||
@Inject
|
||||
protected NPCService npcService;
|
||||
|
||||
/**
|
||||
* @param npc
|
||||
* the npc
|
||||
*/
|
||||
protected NPCAI(NPC npc) {
|
||||
super(npc);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void handleDesire(Desire desire) {
|
||||
if (desire instanceof MoveDesire) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
3405
l2jserver2-gameserver/data/teleports.xml
Normal file
3405
l2jserver2-gameserver/data/teleports.xml
Normal file
File diff suppressed because it is too large
Load Diff
40
l2jserver2-gameserver/data/teleports.xsd
Normal file
40
l2jserver2-gameserver/data/teleports.xsd
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
elementFormDefault="qualified" targetNamespace="teleports" xmlns="teleports">
|
||||
<xs:element name="teleports">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="teleport" maxOccurs="unbounded"
|
||||
minOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="point" maxOccurs="1" minOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="x" type="xs:int" use="required">
|
||||
</xs:attribute>
|
||||
<xs:attribute name="y" type="xs:int" use="required">
|
||||
</xs:attribute>
|
||||
<xs:attribute name="z" type="xs:int" use="required">
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="restrictions" maxOccurs="unbounded"
|
||||
minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="NOBLE"></xs:enumeration>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="id" type="xs:int" use="required"></xs:attribute>
|
||||
<xs:attribute name="price" type="xs:int" use="required"></xs:attribute>
|
||||
<xs:attribute name="item" type="xs:int" default="57"></xs:attribute>
|
||||
<xs:attribute name="name" type="xs:string"></xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
||||
|
||||
22
l2jserver2-gameserver/data/templates/actor.xsd
Normal file
22
l2jserver2-gameserver/data/templates/actor.xsd
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<xs:schema version="1.0" targetNamespace="actor" xmlns:actor="actor"
|
||||
xmlns:template="template" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
elementFormDefault="qualified">
|
||||
<xs:import namespace="template" schemaLocation="template.xsd" />
|
||||
|
||||
<xs:complexType name="actorTemplate" abstract="true">
|
||||
<xs:complexContent>
|
||||
<xs:extension base="template:abstractTemplate">
|
||||
<xs:sequence />
|
||||
</xs:extension>
|
||||
</xs:complexContent>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:simpleType name="actorSex">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="MALE" />
|
||||
<xs:enumeration value="FEMALE" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
|
||||
256
l2jserver2-gameserver/data/templates/character.xsd
Normal file
256
l2jserver2-gameserver/data/templates/character.xsd
Normal file
@@ -0,0 +1,256 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="character" xmlns:character="character"
|
||||
elementFormDefault="qualified" attributeFormDefault="unqualified"
|
||||
xmlns="character" xmlns:actor="actor" xmlns:template="template">
|
||||
<xs:import namespace="template" schemaLocation="template.xsd" />
|
||||
<xs:import namespace="actor" schemaLocation="actor.xsd" />
|
||||
|
||||
<xs:complexType name="characterTemplate">
|
||||
<xs:complexContent>
|
||||
<xs:extension base="actor:actorTemplate">
|
||||
<xs:sequence>
|
||||
<xs:element name="stats" type="character:characterStatsMetadata"
|
||||
minOccurs="1" maxOccurs="1" />
|
||||
<xs:element name="collision" type="character:collisionMetadataContainer"
|
||||
minOccurs="1" maxOccurs="1" />
|
||||
</xs:sequence>
|
||||
<xs:attribute name="class" type="character:characterClass" />
|
||||
</xs:extension>
|
||||
</xs:complexContent>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="characterStatsMetadata">
|
||||
<xs:sequence>
|
||||
<xs:element name="hp" type="character:stat" minOccurs="0" />
|
||||
<xs:element name="mp" type="character:stat" minOccurs="0" />
|
||||
<xs:element name="cp" type="character:stat" minOccurs="0" />
|
||||
<xs:element name="attack" type="character:attackMetadata"
|
||||
minOccurs="0" />
|
||||
<xs:element name="defense" type="character:defenseMetadata"
|
||||
minOccurs="0" />
|
||||
<xs:element name="move" type="character:moveMetadata"
|
||||
minOccurs="0" />
|
||||
<xs:element name="base" type="character:baseMetadata"
|
||||
minOccurs="0" />
|
||||
<xs:element name="maxload" type="xs:int" />
|
||||
</xs:sequence>
|
||||
<xs:attribute name="level" type="xs:int" use="required" />
|
||||
<xs:attribute name="crafter" type="xs:boolean" default="false" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="stat">
|
||||
<xs:sequence />
|
||||
<xs:attribute name="base" type="xs:double" use="required" />
|
||||
<xs:attribute name="modifier" type="xs:double" use="required" />
|
||||
<xs:attribute name="add" type="xs:double" use="required" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="attackMetadata">
|
||||
<xs:sequence>
|
||||
<xs:element name="physical" type="character:attackValueMetadata"
|
||||
minOccurs="0" />
|
||||
<xs:element name="magical" type="character:attackValueMetadata"
|
||||
minOccurs="0" />
|
||||
</xs:sequence>
|
||||
<xs:attribute name="evasion" type="xs:int" use="required" />
|
||||
<xs:attribute name="critical" type="xs:int" use="required" />
|
||||
<xs:attribute name="accuracy" type="xs:int" use="required" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="attackValueMetadata">
|
||||
<xs:sequence />
|
||||
<xs:attribute name="damage" type="xs:double" use="required" />
|
||||
<xs:attribute name="speed" type="xs:double" use="required" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="defenseMetadata">
|
||||
<xs:sequence>
|
||||
<xs:element name="physical" type="character:defenseValueMetadata"
|
||||
minOccurs="0" />
|
||||
<xs:element name="magical" type="character:defenseValueMetadata"
|
||||
minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="defenseValueMetadata">
|
||||
<xs:sequence />
|
||||
<xs:attribute name="value" type="xs:double" use="required" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="moveMetadata">
|
||||
<xs:sequence />
|
||||
<xs:attribute name="run" type="xs:double" use="required" />
|
||||
<xs:attribute name="walk" type="xs:double" use="required" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="baseMetadata">
|
||||
<xs:sequence />
|
||||
<xs:attribute name="int" type="xs:int" use="required" />
|
||||
<xs:attribute name="str" type="xs:int" use="required" />
|
||||
<xs:attribute name="con" type="xs:int" use="required" />
|
||||
<xs:attribute name="men" type="xs:int" use="required" />
|
||||
<xs:attribute name="dex" type="xs:int" use="required" />
|
||||
<xs:attribute name="wit" type="xs:int" use="required" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="collisionMetadataContainer">
|
||||
<xs:sequence>
|
||||
<xs:element name="male" type="character:collisionMetadata"
|
||||
minOccurs="0" />
|
||||
<xs:element name="female" type="character:collisionMetadata"
|
||||
minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="collisionMetadata">
|
||||
<xs:sequence />
|
||||
<xs:attribute name="radius" type="xs:double" use="required" />
|
||||
<xs:attribute name="heigth" type="xs:double" use="required" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:simpleType name="characterClass">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="HUMAN_FIGHTER" />
|
||||
<xs:enumeration value="WARRIOR" />
|
||||
<xs:enumeration value="GLADIATOR" />
|
||||
<xs:enumeration value="WARLORD" />
|
||||
<xs:enumeration value="KNIGHT" />
|
||||
<xs:enumeration value="PALADIN" />
|
||||
<xs:enumeration value="DARK_AVENGER" />
|
||||
<xs:enumeration value="ROGUE" />
|
||||
<xs:enumeration value="TREASURE_HUNTER" />
|
||||
<xs:enumeration value="HAWKEYE" />
|
||||
<xs:enumeration value="DUELIST" />
|
||||
<xs:enumeration value="DREADNOUGHT" />
|
||||
<xs:enumeration value="PHOENIX_KNIGHT" />
|
||||
<xs:enumeration value="HELL_KNIGHT" />
|
||||
<xs:enumeration value="SAGITTARIUS" />
|
||||
<xs:enumeration value="ADVENTURER" />
|
||||
<xs:enumeration value="HUMAN_MYSTIC" />
|
||||
<xs:enumeration value="WIZARD" />
|
||||
<xs:enumeration value="SORCEROR" />
|
||||
<xs:enumeration value="NECROMANCER" />
|
||||
<xs:enumeration value="WARLOCK" />
|
||||
<xs:enumeration value="CLERIC" />
|
||||
<xs:enumeration value="BISHOP" />
|
||||
<xs:enumeration value="PROPHET" />
|
||||
<xs:enumeration value="ARCHMAGE" />
|
||||
<xs:enumeration value="SOULTAKER" />
|
||||
<xs:enumeration value="ARCANA_LORD" />
|
||||
<xs:enumeration value="CARDINAL" />
|
||||
<xs:enumeration value="HIEROPHANT" />
|
||||
<xs:enumeration value="ELVEN_FIGHTER" />
|
||||
<xs:enumeration value="ELVEN_KNIGHT" />
|
||||
<xs:enumeration value="TEMPLE_KNIGHT" />
|
||||
<xs:enumeration value="SWORD_SINGER" />
|
||||
<xs:enumeration value="ELVEN_SCOUT" />
|
||||
<xs:enumeration value="PLAINS_WALKER" />
|
||||
<xs:enumeration value="SILVER_RANGER" />
|
||||
<xs:enumeration value="EVA_TEMPLAR" />
|
||||
<xs:enumeration value="SWORD_MUSE" />
|
||||
<xs:enumeration value="WIND_RIDER" />
|
||||
<xs:enumeration value="MOONLIGHT_SENTINEL" />
|
||||
<xs:enumeration value="ELVEN_MYSTIC" />
|
||||
<xs:enumeration value="ELVEN_WIZARD" />
|
||||
<xs:enumeration value="SPELLSINGER" />
|
||||
<xs:enumeration value="ELEMENTAL_SUMMONER" />
|
||||
<xs:enumeration value="ORACLE" />
|
||||
<xs:enumeration value="ELDER" />
|
||||
<xs:enumeration value="MYSTIC_MUSE" />
|
||||
<xs:enumeration value="ELEMENTAL_MASTER" />
|
||||
<xs:enumeration value="EVA_SAINT" />
|
||||
<xs:enumeration value="DARK_FIGHTER" />
|
||||
<xs:enumeration value="PALUS_KNIGHT" />
|
||||
<xs:enumeration value="SHILLIEN_KNIGHT" />
|
||||
<xs:enumeration value="BLADEDANCER" />
|
||||
<xs:enumeration value="ASSASSIN" />
|
||||
<xs:enumeration value="ABYSS_WALKER" />
|
||||
<xs:enumeration value="PHANTOM_RANGER" />
|
||||
<xs:enumeration value="SHILLIEN_TEMPLAR" />
|
||||
<xs:enumeration value="spectralDancer" />
|
||||
<xs:enumeration value="GHOST_HUNTER" />
|
||||
<xs:enumeration value="GHOST_SENTINEL" />
|
||||
<xs:enumeration value="DARK_MYSTIC" />
|
||||
<xs:enumeration value="DARK_WIZARD" />
|
||||
<xs:enumeration value="SPELLHOWLER" />
|
||||
<xs:enumeration value="PHANTOM_SUMMONER" />
|
||||
<xs:enumeration value="SHILLIEN_ORACLE" />
|
||||
<xs:enumeration value="SHILLIEN_ELDER" />
|
||||
<xs:enumeration value="STORM_SCREAMER" />
|
||||
<xs:enumeration value="SPECTRAL_MASTER" />
|
||||
<xs:enumeration value="SHILLIEAN_SAINT" />
|
||||
<xs:enumeration value="ORC_FIGHTER" />
|
||||
<xs:enumeration value="ORC_RAIDER" />
|
||||
<xs:enumeration value="DESTROYER" />
|
||||
<xs:enumeration value="ORC_MONK" />
|
||||
<xs:enumeration value="TYRANT" />
|
||||
<xs:enumeration value="TITAN" />
|
||||
<xs:enumeration value="GRAND_KHAUATARI" />
|
||||
<xs:enumeration value="ORC_MYSTIC" />
|
||||
<xs:enumeration value="ORC_SHAMAN" />
|
||||
<xs:enumeration value="OVERLORD" />
|
||||
<xs:enumeration value="WARCRYER" />
|
||||
<xs:enumeration value="DOMINATOR" />
|
||||
<xs:enumeration value="DOOMCRYER" />
|
||||
<xs:enumeration value="DWARVEN_FIGHTER" />
|
||||
<xs:enumeration value="SCAVENGER" />
|
||||
<xs:enumeration value="BOUNTY_HUNTER" />
|
||||
<xs:enumeration value="ARTISAN" />
|
||||
<xs:enumeration value="WARSMITH" />
|
||||
<xs:enumeration value="FORTUNE_SEEKER" />
|
||||
<xs:enumeration value="MAESTRO" />
|
||||
<xs:enumeration value="MALE_SOLDIER" />
|
||||
<xs:enumeration value="TROOPER" />
|
||||
<xs:enumeration value="BERSEKER" />
|
||||
<xs:enumeration value="MALE_SOULBREAKER" />
|
||||
<xs:enumeration value="DOOMBRINGER" />
|
||||
<xs:enumeration value="MALE_SOULDHOUND" />
|
||||
<xs:enumeration value="FEMALE_SOLDIER" />
|
||||
<xs:enumeration value="WARDER" />
|
||||
<xs:enumeration value="FEMALE_SOULBREAKER" />
|
||||
<xs:enumeration value="ARBALESTER" />
|
||||
<xs:enumeration value="FEMALE_SOULDHOUND" />
|
||||
<xs:enumeration value="TRICKSTER" />
|
||||
<xs:enumeration value="INSPECTOR" />
|
||||
<xs:enumeration value="JUDICATOR" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_1" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_2" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_3" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_4" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_5" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_6" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_7" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_8" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_9" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_10" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_11" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_12" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_13" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_14" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_15" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_16" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_17" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_18" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_19" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_20" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_21" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_22" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_23" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_24" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_25" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_26" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_27" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_28" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_29" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_30" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_31" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_32" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_33" />
|
||||
<xs:enumeration value="DUMMY_ENTRY_34" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:element name="character" type="character:characterTemplate" />
|
||||
</xs:schema>
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="character ../character.xsd" xmlns="character"
|
||||
class="ABYSS_WALKER">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="49.4" modifier="0.37" base="1096.0" />
|
||||
<mp add="19.5" modifier="0.14" base="359.1" />
|
||||
<cp add="27.17" modifier="0.22" base="602.8" />
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0" />
|
||||
<magical speed="333.0" damage="6.0" />
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0" />
|
||||
<magical value="41.0" />
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0" />
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25" />
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5" />
|
||||
<female heigth="23.5" radius="7.0" />
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ADVENTURER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="53.12" modifier="0.37" base="2623.7"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="29.216" modifier="0.22" base="1443.035"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
class="ARBALESTER" xsi:schemaLocation="character ../character.xsd"
|
||||
xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="57.2" modifier="0.37" base="1139.74" />
|
||||
<mp add="19.5" modifier="0.14" base="487.03" />
|
||||
<cp add="28.6" modifier="0.22" base="569.87" />
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0" />
|
||||
<magical speed="333.0" damage="6.0" />
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0" />
|
||||
<magical value="41.0" />
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0" />
|
||||
<base wit="11" dex="35" men="27" con="30" str="39" int="28" />
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.6" radius="8.0" />
|
||||
<female heigth="22.6" radius="7.0" />
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ARCANA_LORD" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="63.08" modifier="0.37" base="3039.3"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="37.85" modifier="0.22" base="1823.5"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Archmage.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Archmage.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ARCHMAGE" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="58.1" modifier="0.37" base="2880.0"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="29.05" modifier="0.22" base="1728.0"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Artisan.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Artisan.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ARTISAN" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="true" level="20">
|
||||
<hp add="32.9" modifier="0.37" base="346.0"/>
|
||||
<mp add="9.8" modifier="0.14" base="144.0"/>
|
||||
<cp add="26.3" modifier="0.22" base="276.8"/>
|
||||
<attack accuracy="33" critical="43" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="10" dex="29" men="27" con="45" str="39" int="20"/>
|
||||
<maxload>83000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="18.0" radius="9.0"/>
|
||||
<female heigth="19.0" radius="5.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Assassin.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Assassin.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ASSASSIN" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="33.0" modifier="0.37" base="379.0"/>
|
||||
<mp add="9.9" modifier="0.14" base="144.0"/>
|
||||
<cp add="15.8" modifier="0.22" base="185.1"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Berseker.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Berseker.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="BERSEKER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="57.2" modifier="0.37" base="1178.81"/>
|
||||
<mp add="19.5" modifier="0.14" base="370.11"/>
|
||||
<cp add="28.6" modifier="0.22" base="589.405"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="33" men="25" con="31" str="41" int="29"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="25.2" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Bishop.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Bishop.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="BISHOP" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="49.4" modifier="0.37" base="1164.9"/>
|
||||
<mp add="26.0" modifier="0.14" base="478.8"/>
|
||||
<cp add="44.46" modifier="0.22" base="1048.41"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="BLADEDANCER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="58.5" modifier="0.37" base="1143.8"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="29.25" modifier="0.22" base="571.9"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="BOUNTY_HUNTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="true" level="40">
|
||||
<hp add="57.1" modifier="0.37" base="1110.8"/>
|
||||
<mp add="19.4" modifier="0.14" base="359.1"/>
|
||||
<cp add="39.94" modifier="0.22" base="777.5"/>
|
||||
<attack accuracy="33" critical="43" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="10" dex="29" men="27" con="45" str="39" int="20"/>
|
||||
<maxload>83000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="18.0" radius="9.0"/>
|
||||
<female heigth="19.0" radius="5.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Cardinal.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Cardinal.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="CARDINAL" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="63.08" modifier="0.37" base="3182.7"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="56.772" modifier="0.22" base="2864.43"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Cleric.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Cleric.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="CLERIC" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="34.2" modifier="0.37" base="424.0"/>
|
||||
<mp add="13.3" modifier="0.14" base="192.0"/>
|
||||
<cp add="17.15" modifier="0.22" base="212.0"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DARK_AVENGER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="46.8" modifier="0.37" base="972.3"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="28.08" modifier="0.22" base="583.3"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DARK_FIGHTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="13.65" modifier="0.37" base="94.0"/>
|
||||
<mp add="5.46" modifier="0.14" base="30.0"/>
|
||||
<cp add="3.8" modifier="0.22" base="37.6"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DARK_MYSTIC" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="15.57" modifier="0.37" base="106.0"/>
|
||||
<mp add="7.38" modifier="0.14" base="40.0"/>
|
||||
<cp add="7.84" modifier="0.22" base="53.0"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DARK_WIZARD" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="29.8" modifier="0.37" base="429.0"/>
|
||||
<mp add="13.3" modifier="0.14" base="192.0"/>
|
||||
<cp add="14.95" modifier="0.22" base="214.5"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Destroyer.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Destroyer.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DESTROYER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="57.1" modifier="0.37" base="1110.8"/>
|
||||
<mp add="19.4" modifier="0.14" base="359.1"/>
|
||||
<cp add="39.94" modifier="0.22" base="777.5"/>
|
||||
<attack accuracy="31" critical="42" evasion="31">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="117.0" run="117.0"/>
|
||||
<base wit="12" dex="26" men="27" con="47" str="40" int="18"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="28.0" radius="11.0"/>
|
||||
<female heigth="27.0" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Dominator.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Dominator.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DOMINATOR" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="67.96" modifier="0.37" base="3359.9"/>
|
||||
<mp add="33.1" modifier="0.14" base="1540.8"/>
|
||||
<cp add="54.35" modifier="0.22" base="3037.3"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="121.0" run="121.0"/>
|
||||
<base wit="15" dex="24" men="42" con="31" str="27" int="31"/>
|
||||
<maxload>68000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="27.5" radius="7.0"/>
|
||||
<female heigth="25.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DOOMBRINGER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="73.04" modifier="0.37" base="3515.21"/>
|
||||
<mp add="24.9" modifier="0.14" base="1166.61"/>
|
||||
<cp add="36.52" modifier="0.22" base="1757.605"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="33" men="25" con="31" str="41" int="29"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="25.2" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Doomcryer.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Doomcryer.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DOOMCRYER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="67.96" modifier="0.37" base="3359.9"/>
|
||||
<mp add="33.1" modifier="0.14" base="1540.8"/>
|
||||
<cp add="33.93" modifier="0.22" base="1679.9"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="121.0" run="121.0"/>
|
||||
<base wit="15" dex="24" men="42" con="31" str="27" int="31"/>
|
||||
<maxload>68000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="27.5" radius="7.0"/>
|
||||
<female heigth="25.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DREADNOUGHT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="69.72" modifier="0.37" base="3274.2"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="55.78" modifier="0.22" base="2619.3"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Duelist.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Duelist.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DUELIST" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="63.08" modifier="0.37" base="3061.8"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="56.77" modifier="0.22" base="2755.6"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="DWARVEN_FIGHTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="true" level="1">
|
||||
<hp add="12.64" modifier="0.37" base="80.0"/>
|
||||
<mp add="5.36" modifier="0.14" base="30.0"/>
|
||||
<cp add="8.82" modifier="0.22" base="56.0"/>
|
||||
<attack accuracy="33" critical="43" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="10" dex="29" men="27" con="45" str="39" int="20"/>
|
||||
<maxload>83000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="18.0" radius="9.0"/>
|
||||
<female heigth="19.0" radius="5.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Elder.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Elder.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELDER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="54.6" modifier="0.37" base="1191.8"/>
|
||||
<mp add="26.0" modifier="0.14" base="478.8"/>
|
||||
<cp add="49.14" modifier="0.22" base="1072.62"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELEMENTAL_MASTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="64.74" modifier="0.37" base="3119.3"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="38.84" modifier="0.22" base="1871.5"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELEMENTAL_SUMMONER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="50.8" modifier="0.37" base="1048.4"/>
|
||||
<mp add="26.1" modifier="0.14" base="478.8"/>
|
||||
<cp add="30.52" modifier="0.22" base="629.0"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELVEN_FIGHTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="12.74" modifier="0.37" base="89.0"/>
|
||||
<mp add="5.46" modifier="0.14" base="30.0"/>
|
||||
<cp add="3.38" modifier="0.22" base="36.1"/>
|
||||
<attack accuracy="36" critical="46" evasion="36">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="125.0" run="125.0"/>
|
||||
<base wit="14" dex="35" men="26" con="36" str="36" int="23"/>
|
||||
<maxload>73000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELVEN_KNIGHT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="33.0" modifier="0.37" base="355.0"/>
|
||||
<mp add="9.9" modifier="0.14" base="144.0"/>
|
||||
<cp add="16.5" modifier="0.22" base="177.5"/>
|
||||
<attack accuracy="36" critical="46" evasion="36">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="125.0" run="125.0"/>
|
||||
<base wit="14" dex="35" men="26" con="36" str="36" int="23"/>
|
||||
<maxload>73000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELVEN_MYSTIC" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="15.57" modifier="0.37" base="104.0"/>
|
||||
<mp add="7.38" modifier="0.14" base="40.0"/>
|
||||
<cp add="7.84" modifier="0.22" base="52.0"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELVEN_SCOUT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="30.8" modifier="0.37" base="355.0"/>
|
||||
<mp add="9.9" modifier="0.14" base="144.0"/>
|
||||
<cp add="14.4" modifier="0.22" base="177.5"/>
|
||||
<attack accuracy="36" critical="46" evasion="36">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="125.0" run="125.0"/>
|
||||
<base wit="14" dex="35" men="26" con="36" str="36" int="23"/>
|
||||
<maxload>73000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ELVEN_WIZARD" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="28.7" modifier="0.37" base="427.0"/>
|
||||
<mp add="13.3" modifier="0.14" base="192.0"/>
|
||||
<cp add="14.4" modifier="0.22" base="213.5"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/EvaSaint.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/EvaSaint.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="EVA_SAINT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="69.72" modifier="0.37" base="3422.0"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="62.748" modifier="0.22" base="3079.8"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="EVA_TEMPLAR" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="66.4" modifier="0.37" base="3196.0"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="39.84" modifier="0.22" base="1917.6"/>
|
||||
<attack accuracy="36" critical="46" evasion="36">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="125.0" run="125.0"/>
|
||||
<base wit="14" dex="35" men="26" con="36" str="36" int="23"/>
|
||||
<maxload>73000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="FEMALE_SOLDIER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="16.38" modifier="0.37" base="97.0"/>
|
||||
<mp add="7.28" modifier="0.14" base="40.0"/>
|
||||
<cp add="8.19" modifier="0.22" base="48.5"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="35" men="27" con="30" str="39" int="28"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.6" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="FEMALE_SOULBREAKER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="52.0" modifier="0.37" base="1134.58"/>
|
||||
<mp add="26.0" modifier="0.14" base="493.48"/>
|
||||
<cp add="26.0" modifier="0.22" base="567.29"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="35" men="27" con="30" str="39" int="28"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.6" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="FEMALE_SOULDHOUND" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="66.4" modifier="0.37" base="3258.58"/>
|
||||
<mp add="33.2" modifier="0.14" base="1555.48"/>
|
||||
<cp add="33.2" modifier="0.22" base="1629.29"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="35" men="27" con="30" str="39" int="28"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.6" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="FORTUNE_SEEKER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="true" level="76">
|
||||
<hp add="72.94" modifier="0.37" base="3447.2"/>
|
||||
<mp add="24.8" modifier="0.14" base="1155.6"/>
|
||||
<cp add="51.03" modifier="0.22" base="2413.0"/>
|
||||
<attack accuracy="33" critical="43" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="10" dex="29" men="27" con="45" str="39" int="20"/>
|
||||
<maxload>83000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="18.0" radius="9.0"/>
|
||||
<female heigth="19.0" radius="5.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="GHOST_HUNTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="63.08" modifier="0.37" base="3113.8"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="34.694" modifier="0.22" base="1712.59"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="GHOST_SENTINEL" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="66.4" modifier="0.37" base="3220.0"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="33.2" modifier="0.22" base="1610.0"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Gladiator.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Gladiator.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="GLADIATOR" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="49.4" modifier="0.37" base="1044.0"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="44.46" modifier="0.22" base="939.6"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="GRAND_KHAUATARI" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="69.62" modifier="0.37" base="3293.2"/>
|
||||
<mp add="24.8" modifier="0.14" base="1155.6"/>
|
||||
<cp add="34.76" modifier="0.22" base="1646.6"/>
|
||||
<attack accuracy="31" critical="42" evasion="31">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="117.0" run="117.0"/>
|
||||
<base wit="12" dex="26" men="27" con="47" str="40" int="18"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="28.0" radius="11.0"/>
|
||||
<female heigth="27.0" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Hawkeye.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Hawkeye.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="HAWKEYE" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="44.2" modifier="0.37" base="924.5"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="30.94" modifier="0.22" base="647.1"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="HELL_KNIGHT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="59.76" modifier="0.37" base="2883.9"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="35.86" modifier="0.22" base="1730.3"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="HIEROPHANT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="68.06" modifier="0.37" base="3342.0"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="34.03" modifier="0.22" base="1671.0"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="HUMAN_FIGHTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="11.83" modifier="0.37" base="80.0"/>
|
||||
<mp add="5.46" modifier="0.14" base="30.0"/>
|
||||
<cp add="3.01" modifier="0.22" base="32.0"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="HUMAN_MYSTIC" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="15.57" modifier="0.37" base="101.0"/>
|
||||
<mp add="7.38" modifier="0.14" base="40.0"/>
|
||||
<cp add="7.84" modifier="0.22" base="50.5"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Inspector.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Inspector.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="INSPECTOR" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="53.3" modifier="0.37" base="1135.87"/>
|
||||
<mp add="26.0" modifier="0.14" base="493.48"/>
|
||||
<cp add="26.65" modifier="0.22" base="567.935"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="35" men="27" con="30" str="39" int="28"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="25.2" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Judicator.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Judicator.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="JUDICATOR" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="68.06" modifier="0.37" base="3312.97"/>
|
||||
<mp add="33.2" modifier="0.14" base="1555.48"/>
|
||||
<cp add="34.03" modifier="0.22" base="1656.485"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="35" men="27" con="30" str="39" int="28"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="25.2" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Knight.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Knight.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="KNIGHT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="29.7" modifier="0.37" base="327.0"/>
|
||||
<mp add="9.9" modifier="0.14" base="144.0"/>
|
||||
<cp add="17.82" modifier="0.22" base="196.2"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Maestro.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Maestro.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="MAESTRO" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="true" level="76">
|
||||
<hp add="69.62" modifier="0.37" base="3293.2"/>
|
||||
<mp add="24.8" modifier="0.14" base="1155.6"/>
|
||||
<cp add="55.68" modifier="0.22" base="2634.5"/>
|
||||
<attack accuracy="33" critical="43" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="10" dex="29" men="27" con="45" str="39" int="20"/>
|
||||
<maxload>83000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="18.0" radius="9.0"/>
|
||||
<female heigth="19.0" radius="5.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="MALE_SOLDIER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="13.65" modifier="0.37" base="95.0"/>
|
||||
<mp add="5.46" modifier="0.14" base="30.0"/>
|
||||
<cp add="6.825" modifier="0.22" base="47.5"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="33" men="25" con="31" str="41" int="29"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="25.2" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="MALE_SOULBREAKER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="52.0" modifier="0.37" base="1173.65"/>
|
||||
<mp add="26.0" modifier="0.14" base="376.56"/>
|
||||
<cp add="26.0" modifier="0.22" base="586.825"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="33" men="25" con="31" str="41" int="29"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="25.2" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="MALE_SOULDHOUND" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="66.4" modifier="0.37" base="3297.65"/>
|
||||
<mp add="33.2" modifier="0.14" base="1438.56"/>
|
||||
<cp add="33.2" modifier="0.22" base="1648.825"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="11" dex="33" men="25" con="31" str="41" int="29"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="25.2" radius="8.0"/>
|
||||
<female heigth="22.6" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="MOONLIGHT_SENTINEL" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="63.08" modifier="0.37" base="3042.0"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="31.54" modifier="0.22" base="1521.0"/>
|
||||
<attack accuracy="36" critical="46" evasion="36">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="125.0" run="125.0"/>
|
||||
<base wit="14" dex="35" men="26" con="36" str="36" int="23"/>
|
||||
<maxload>73000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="MYSTIC_MUSE" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="61.42" modifier="0.37" base="3013.1"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="30.71" modifier="0.22" base="1807.8"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="NECROMANCER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="45.6" modifier="0.37" base="1021.5"/>
|
||||
<mp add="26.1" modifier="0.14" base="478.8"/>
|
||||
<cp add="22.85" modifier="0.22" base="510.7"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Oracle.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Oracle.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ORACLE" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="35.3" modifier="0.37" base="427.0"/>
|
||||
<mp add="13.3" modifier="0.14" base="192.0"/>
|
||||
<cp add="17.7" modifier="0.22" base="213.5"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ORC_FIGHTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="12.64" modifier="0.37" base="80.0"/>
|
||||
<mp add="5.36" modifier="0.14" base="30.0"/>
|
||||
<cp add="6.27" modifier="0.22" base="40.0"/>
|
||||
<attack accuracy="31" critical="42" evasion="31">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="117.0" run="117.0"/>
|
||||
<base wit="12" dex="26" men="27" con="47" str="40" int="18"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="28.0" radius="11.0"/>
|
||||
<female heigth="27.0" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/OrcMonk.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/OrcMonk.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ORC_MONK" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="32.9" modifier="0.37" base="346.0"/>
|
||||
<mp add="9.8" modifier="0.14" base="144.0"/>
|
||||
<cp add="16.4" modifier="0.22" base="173.0"/>
|
||||
<attack accuracy="31" critical="42" evasion="31">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="117.0" run="117.0"/>
|
||||
<base wit="12" dex="26" men="27" con="47" str="40" int="18"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="28.0" radius="11.0"/>
|
||||
<female heigth="27.0" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/OrcMystic.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/OrcMystic.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ORC_MYSTIC" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="1">
|
||||
<hp add="15.47" modifier="0.37" base="95.0"/>
|
||||
<mp add="7.28" modifier="0.14" base="40.0"/>
|
||||
<cp add="7.74" modifier="0.22" base="47.5"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="121.0" run="121.0"/>
|
||||
<base wit="15" dex="24" men="42" con="31" str="27" int="31"/>
|
||||
<maxload>68000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="27.5" radius="7.0"/>
|
||||
<female heigth="25.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/OrcRaider.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/OrcRaider.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ORC_RAIDER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="35.1" modifier="0.37" base="346.0"/>
|
||||
<mp add="9.8" modifier="0.14" base="144.0"/>
|
||||
<cp add="24.54" modifier="0.22" base="242.2"/>
|
||||
<attack accuracy="31" critical="42" evasion="31">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="117.0" run="117.0"/>
|
||||
<base wit="12" dex="26" men="27" con="47" str="40" int="18"/>
|
||||
<maxload>87000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="28.0" radius="11.0"/>
|
||||
<female heigth="27.0" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/OrcShaman.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/OrcShaman.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ORC_SHAMAN" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="35.2" modifier="0.37" base="418.0"/>
|
||||
<mp add="13.2" modifier="0.14" base="192.0"/>
|
||||
<cp add="17.6" modifier="0.22" base="209.0"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="121.0" run="121.0"/>
|
||||
<base wit="15" dex="24" men="42" con="31" str="27" int="31"/>
|
||||
<maxload>68000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="27.5" radius="7.0"/>
|
||||
<female heigth="25.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Overlord.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Overlord.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="OVERLORD" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="53.3" modifier="0.37" base="1182.8"/>
|
||||
<mp add="26.0" modifier="0.14" base="478.8"/>
|
||||
<cp add="42.64" modifier="0.22" base="1069.2"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="121.0" run="121.0"/>
|
||||
<base wit="15" dex="24" men="42" con="31" str="27" int="31"/>
|
||||
<maxload>68000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="27.5" radius="7.0"/>
|
||||
<female heigth="25.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Paladin.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Paladin.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="PALADIN" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="46.8" modifier="0.37" base="972.3"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="28.08" modifier="0.22" base="583.3"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="PALUS_KNIGHT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="35.2" modifier="0.37" base="379.0"/>
|
||||
<mp add="9.9" modifier="0.14" base="144.0"/>
|
||||
<cp add="17.6" modifier="0.22" base="189.5"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="PHANTOM_RANGER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="52.0" modifier="0.37" base="1096.0"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="26.0" modifier="0.22" base="548.0"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="PHANTOM_SUMMONER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="52.1" modifier="0.37" base="1074.3"/>
|
||||
<mp add="26.1" modifier="0.14" base="478.8"/>
|
||||
<cp add="31.3" modifier="0.22" base="644.5"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="PHOENIX_KNIGHT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="59.76" modifier="0.37" base="2883.9"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="35.86" modifier="0.22" base="1730.3"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="PLAINS_WALKER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="46.8" modifier="0.37" base="1024.2"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="25.74" modifier="0.22" base="563.31"/>
|
||||
<attack accuracy="36" critical="46" evasion="36">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="125.0" run="125.0"/>
|
||||
<base wit="14" dex="35" men="26" con="36" str="36" int="23"/>
|
||||
<maxload>73000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Prophet.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Prophet.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="PROPHET" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="53.4" modifier="0.37" base="1164.9"/>
|
||||
<mp add="26.1" modifier="0.14" base="478.8"/>
|
||||
<cp add="26.75" modifier="0.22" base="582.4"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Rogue.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Rogue.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="ROGUE" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="27.5" modifier="0.37" base="327.0"/>
|
||||
<mp add="9.9" modifier="0.14" base="144.0"/>
|
||||
<cp add="12.65" modifier="0.22" base="163.0"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SAGITTARIUS" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="56.44" modifier="0.37" base="2729.9"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="39.51" modifier="0.22" base="1910.9"/>
|
||||
<attack accuracy="33" critical="44" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="11" dex="30" men="25" con="43" str="40" int="21"/>
|
||||
<maxload>81900</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="23.0" radius="9.0"/>
|
||||
<female heigth="23.5" radius="8.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Scavenger.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Scavenger.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SCAVENGER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="true" level="20">
|
||||
<hp add="35.1" modifier="0.37" base="346.0"/>
|
||||
<mp add="9.8" modifier="0.14" base="144.0"/>
|
||||
<cp add="24.54" modifier="0.22" base="242.2"/>
|
||||
<attack accuracy="33" critical="43" evasion="33">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="115.0" run="115.0"/>
|
||||
<base wit="10" dex="29" men="27" con="45" str="39" int="20"/>
|
||||
<maxload>83000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="18.0" radius="9.0"/>
|
||||
<female heigth="19.0" radius="5.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SHILLIEAN_SAINT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="69.72" modifier="0.37" base="3447.9"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="62.748" modifier="0.22" base="3103.11"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SHILLIEN_ELDER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="54.6" modifier="0.37" base="1217.7"/>
|
||||
<mp add="26.0" modifier="0.14" base="478.8"/>
|
||||
<cp add="49.14" modifier="0.22" base="1095.93"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SHILLIEN_KNIGHT" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="54.6" modifier="0.37" base="1143.8"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="32.76" modifier="0.22" base="686.2"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SHILLIEN_ORACLE" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="20">
|
||||
<hp add="36.4" modifier="0.37" base="429.0"/>
|
||||
<mp add="13.3" modifier="0.14" base="192.0"/>
|
||||
<cp add="18.25" modifier="0.22" base="214.5"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SHILLIEN_TEMPLAR" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="69.72" modifier="0.37" base="3374.0"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="41.83" modifier="0.22" base="2024.4"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SILVER_RANGER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="49.4" modifier="0.37" base="1024.2"/>
|
||||
<mp add="19.5" modifier="0.14" base="359.1"/>
|
||||
<cp add="24.7" modifier="0.22" base="512.1"/>
|
||||
<attack accuracy="36" critical="46" evasion="36">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="125.0" run="125.0"/>
|
||||
<base wit="14" dex="35" men="26" con="36" str="36" int="23"/>
|
||||
<maxload>73000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Sorceror.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Sorceror.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SORCEROR" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="45.6" modifier="0.37" base="1021.5"/>
|
||||
<mp add="26.1" modifier="0.14" base="478.8"/>
|
||||
<cp add="22.85" modifier="0.22" base="612.8"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
23
l2jserver2-gameserver/data/templates/character/Soultaker.xml
Normal file
23
l2jserver2-gameserver/data/templates/character/Soultaker.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SOULTAKER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="58.1" modifier="0.37" base="2880.0"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="29.05" modifier="0.22" base="1440.0"/>
|
||||
<attack accuracy="28" critical="40" evasion="28">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="120.0" run="120.0"/>
|
||||
<base wit="20" dex="21" men="39" con="27" str="22" int="41"/>
|
||||
<maxload>62500</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="22.8" radius="7.5"/>
|
||||
<female heigth="22.5" radius="6.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SPECTRAL_MASTER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="66.4" modifier="0.37" base="3198.3"/>
|
||||
<mp add="33.2" modifier="0.14" base="1540.8"/>
|
||||
<cp add="39.84" modifier="0.22" base="1918.9"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="spectralDancer" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="76">
|
||||
<hp add="74.7" modifier="0.37" base="3533.3"/>
|
||||
<mp add="24.9" modifier="0.14" base="1155.6"/>
|
||||
<cp add="37.35" modifier="0.22" base="1766.6"/>
|
||||
<attack accuracy="35" critical="45" evasion="35">
|
||||
<physical speed="300.0" damage="4.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="80.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="12" dex="34" men="26" con="32" str="41" int="25"/>
|
||||
<maxload>69000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SPELLHOWLER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="48.2" modifier="0.37" base="1074.3"/>
|
||||
<mp add="26.1" modifier="0.14" base="478.8"/>
|
||||
<cp add="24.15" modifier="0.22" base="644.5"/>
|
||||
<attack accuracy="29" critical="41" evasion="29">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="19" dex="23" men="37" con="24" str="23" int="44"/>
|
||||
<maxload>61000</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.5" radius="7.0"/>
|
||||
</collision>
|
||||
</character>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<character xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="SPELLSINGER" xsi:schemaLocation="character ../character.xsd" xmlns="character">
|
||||
<stats crafter="false" level="40">
|
||||
<hp add="48.2" modifier="0.37" base="1048.4"/>
|
||||
<mp add="26.1" modifier="0.14" base="478.8"/>
|
||||
<cp add="24.15" modifier="0.22" base="629.0"/>
|
||||
<attack accuracy="30" critical="41" evasion="30">
|
||||
<physical speed="300.0" damage="3.0"/>
|
||||
<magical speed="333.0" damage="6.0"/>
|
||||
</attack>
|
||||
<defense>
|
||||
<physical value="54.0"/>
|
||||
<magical value="41.0"/>
|
||||
</defense>
|
||||
<move walk="122.0" run="122.0"/>
|
||||
<base wit="23" dex="24" men="40" con="25" str="21" int="37"/>
|
||||
<maxload>62400</maxload>
|
||||
</stats>
|
||||
<collision>
|
||||
<male heigth="24.0" radius="7.5"/>
|
||||
<female heigth="23.0" radius="7.5"/>
|
||||
</collision>
|
||||
</character>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user