diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-07-27 19:33:46 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-07-27 19:33:46 -0300 |
commit | 583ff758377ec232454c4dc657c51453a28c76ec (patch) | |
tree | a737a4ae12475021d2f1893b14286235fe047f6a | |
parent | e70dadc09f7dad03a962dcc08f7b866712d3fda9 (diff) | |
download | tools-583ff758377ec232454c4dc657c51453a28c76ec.tar.gz tools-583ff758377ec232454c4dc657c51453a28c76ec.tar.bz2 tools-583ff758377ec232454c4dc657c51453a28c76ec.tar.xz tools-583ff758377ec232454c4dc657c51453a28c76ec.zip |
Include <attack> attribute on Homunculus.
This is granted under BeingCommon::readBasicAttributes("attack") authority
mana/plus:src/resources/db/homunculusdb.cpp:102
-rw-r--r-- | testxml/xsd/tmw.xsd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testxml/xsd/tmw.xsd b/testxml/xsd/tmw.xsd index 3807523..e3a4e32 100644 --- a/testxml/xsd/tmw.xsd +++ b/testxml/xsd/tmw.xsd @@ -1834,6 +1834,24 @@ </xs:simpleContent> </xs:complexType> </xs:element> + <xs:element name="attack"> + <xs:complexType> + <xs:attribute name="id" type="xs:int" use="required"/> + <xs:attribute name="effect-id" type="xs:int" use="optional"/> + <xs:attribute name="hit-effect-id" type="xs:int" use="optional"/> + <xs:attribute name="critical-hit-effect-id" type="xs:int" use="optional"/> + <xs:attribute name="miss-effect-id" type="xs:int" use="optional"/> + <xs:attribute name="action" type="xs:string" default="attack"/> + <xs:attribute name="skyaction" type="xs:string" default="skyattack"/> + <xs:attribute name="wateraction" type="xs:string" default="waterattack"/> + <xs:attribute name="rideaction" type="xs:string" default="waterattack"/> + <xs:attribute name="missile-particle" type="xs:string" use="optional"/> + <xs:attribute name="missile-z" type="xs:float" use="optional"/> + <xs:attribute name="missile-lifetime" type="xs:int" use="optional"/> + <xs:attribute name="missile-speed" type="xs:float" use="optional"/> + <xs:attribute name="missile-diedistance" type="xs:float" use="optional"/> + </xs:complexType> + </xs:element> </xs:choice> <xs:attribute name="id" type="xs:int" use="required"/> <xs:attribute name="name" type="xs:string" use="required"/> |