mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-05 23:22:47 +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:
1
l2jserver2-gameserver/.gitignore
vendored
Normal file
1
l2jserver2-gameserver/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/log
|
||||
674
l2jserver2-gameserver/LICENSE
Normal file
674
l2jserver2-gameserver/LICENSE
Normal file
@@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program 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.
|
||||
|
||||
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
72
l2jserver2-gameserver/config/config.xml
Normal file
72
l2jserver2-gameserver/config/config.xml
Normal file
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="configuration configuration.xsd"
|
||||
xsi:noNamespaceSchemaLocation="configuration">
|
||||
<!-- TODO -->
|
||||
<general>
|
||||
<!-- TODO -->
|
||||
<rates>
|
||||
<!-- TODO -->
|
||||
<experience>1.0</experience>
|
||||
<!-- TODO -->
|
||||
<sp>1.0</sp>
|
||||
</rates>
|
||||
</general>
|
||||
|
||||
<!-- Services configuration section -->
|
||||
<services>
|
||||
<!-- Parameters in this section are used by DatabaseService. If you are
|
||||
not sure on the usage of any parameter, read the "Configuration" section
|
||||
in wiki article about DatabaseService. -->
|
||||
<database>
|
||||
<jdbc>
|
||||
<!-- Defines the connection URL used by JDBC to connect to the database. -->
|
||||
<url>jdbc:mysql://localhost/l2jserver2</url>
|
||||
|
||||
<!-- The driver used to connect to the database. Please note that the
|
||||
driver library must be available in the JVM classpath. -->
|
||||
<driver>com.mysql.jdbc.Driver</driver>
|
||||
|
||||
<!-- The username used to login into the database. NOTE: Try not use
|
||||
"root" in production servers for security reasons. -->
|
||||
<username>l2j</username>
|
||||
|
||||
<!-- The password used to login into the database. -->
|
||||
<password>changeme</password>
|
||||
</jdbc>
|
||||
|
||||
<connections>
|
||||
<!-- The maximum number of active connections -->
|
||||
<active-maximum>20</active-maximum>
|
||||
<!-- The maximum number of idle connections -->
|
||||
<idle-maximum>20</idle-maximum>
|
||||
<!-- The minimum number of idle connections -->
|
||||
<idle-minimum>5</idle-minimum>
|
||||
</connections>
|
||||
</database>
|
||||
|
||||
<!-- Parameters in this section are used by NetworkService. If you are
|
||||
not sure on the usage of any parameter, read the "Configuration" section
|
||||
in wiki article about NetworkService. -->
|
||||
<network>
|
||||
<!-- The address and port in which the server will listen to -->
|
||||
<listen>0.0.0.0:7777</listen>
|
||||
</network>
|
||||
|
||||
<!-- Parameters in this section are used by VFSService. If you are not
|
||||
sure on the usage of any parameter, read the "Configuration" section in wiki
|
||||
article about VFSService. -->
|
||||
<vfs>
|
||||
<root></root>
|
||||
</vfs>
|
||||
|
||||
<!-- Parameters in this section are used by VFSService. If you are not
|
||||
sure on the usage of any parameter, read the "Configuration" section in wiki
|
||||
article about VFSService. -->
|
||||
<template>
|
||||
<!-- The directory in which templates are stored -->
|
||||
<directory>data/templates</directory>
|
||||
</template>
|
||||
</services>
|
||||
<!-- /Services configuration section -->
|
||||
</configuration>
|
||||
30
l2jserver2-gameserver/config/properties/database.properties
Normal file
30
l2jserver2-gameserver/config/properties/database.properties
Normal file
@@ -0,0 +1,30 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# JDBCDatabaseService configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
# Parameters in this file are used by JDBCDatabaseService.
|
||||
# If you are not sure on the usage of any parameter, read the "Configuration"
|
||||
# section in wiki article about "JDBCDatabaseService".
|
||||
# https://github.com/l2jserver2/
|
||||
# ---------------------------------------------------------------------------
|
||||
# NOTE: this is the development configuration file. Always remember to add
|
||||
# new parameters to "dist/config" files too!
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This defines the connection URL used by JDBC to connect to the database.
|
||||
# Default: jdbc:mysql://localhost/l2jserver2
|
||||
jdbc.url = jdbc:mysql://localhost/l2jserver2
|
||||
|
||||
# The driver used to connect to the database. Please note that the driver
|
||||
# library must be available in the JVM classpath.
|
||||
# Default: com.mysql.jdbc.Driver in MySQL binary distribution or
|
||||
# org.h2.Driver in H2 binary distribution
|
||||
jdbc.driver = com.mysql.jdbc.Driver
|
||||
|
||||
# The username used to login into the database.
|
||||
# NOTE: Try not use "root" in production servers!
|
||||
# Default: l2j
|
||||
jdbc.username = l2j
|
||||
|
||||
# The password used to login into the database.
|
||||
# Default: changeme
|
||||
jdbc.password = changeme
|
||||
16
l2jserver2-gameserver/config/properties/template.properties
Normal file
16
l2jserver2-gameserver/config/properties/template.properties
Normal file
@@ -0,0 +1,16 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# XMLTemplateService configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
# Parameters in this file are used by XMLTemplateService.
|
||||
# If you are not sure on the usage of any parameter, read the "Configuration"
|
||||
# section in wiki article about "XMLTemplateService".
|
||||
# https://github.com/l2jserver2/
|
||||
# ---------------------------------------------------------------------------
|
||||
# NOTE: this is the development configuration file. Always remember to add
|
||||
# new parameters to "dist/config" files too!
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# The directory in which templates are located. All template files must be
|
||||
# in .xml # file format. Must be relative to 'vfs.root' (vfs.properties)
|
||||
# Default: data/templates
|
||||
template.directory = data/templates
|
||||
15
l2jserver2-gameserver/config/properties/vfs.properties
Normal file
15
l2jserver2-gameserver/config/properties/vfs.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Java7VFSService configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
# Parameters in this file are used by Java7VFSService.
|
||||
# If you are not sure on the usage of any parameter, read the "Configuration"
|
||||
# section in wiki article about "Java7VFSService".
|
||||
# https://github.com/l2jserver2/
|
||||
# ---------------------------------------------------------------------------
|
||||
# NOTE: this is the development configuration file. Always remember to add
|
||||
# new parameters to "dist/config" files too!
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# The root of the VFS, any file placed in "/" will go to specified path.
|
||||
# Defaul: <empty> (will inherit from terminal working directory, if any)
|
||||
vfs.root =
|
||||
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>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user