mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
3473 lines
104 KiB
XML
3473 lines
104 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="Entity" inherits="Node" version="3.5">
|
|
<brief_description>
|
|
Represents an [Entity] inside the world. Entities can be players, mobs, chests, or any kind of interactable things.
|
|
</brief_description>
|
|
<description>
|
|
Functions starting, or having an 's' in them (like cooldown_adds, or equip_applys_item etc) are only called, or meant to be called by serverside code.
|
|
Functions with a 'c' in them (like cooldown_addc, equip_deapplyc_item etc) are only called, or meant to be called from clientside code.
|
|
Functions that have a virtual variant starting with an underscore, should be called, they will call the virtual version.
|
|
They will check if the virtual properly exists, also usually they check if the parameters are valid, so you don't have to do it every time in gdscript.
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<methods>
|
|
<method name="_body_changed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_canc_interact" qualifiers="virtual">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_cans_interact" qualifiers="virtual">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_character_talent_sreceive_learn_request" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="spec_index" type="int" />
|
|
<argument index="1" name="character_talent_row" type="int" />
|
|
<argument index="2" name="character_talent_culomn" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_character_talent_sreceive_reset_request" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_class_talent_sreceive_learn_request" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="spec_index" type="int" />
|
|
<argument index="1" name="class_talent_row" type="int" />
|
|
<argument index="2" name="class_talent_culomn" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_class_talent_sreceive_reset_request" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_con_character_talent_learned" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="character_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_con_character_talent_reset" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_con_class_talent_learned" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="class_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_con_class_talent_reset" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_con_target_changed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="old_target" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_crafts" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_applyc_item" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_applys_item" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_can_equip_item" qualifiers="virtual">
|
|
<return type="bool" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_con_fail" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_con_success" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_deapplyc_item" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_deapplys_item" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_should_deny" qualifiers="virtual">
|
|
<return type="bool" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_son_fail" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equip_son_success" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_equips" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_from_dict" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="dict" type="Dictionary" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_getc_relation_to" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="to" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_gets_relation_to" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="to" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_initialize" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_isc_target_in_interact_range" qualifiers="virtual">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_iss_target_in_interact_range" qualifiers="virtual">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_item_uses" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="item_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_moved" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_caura" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="data" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_ccast" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cdamage" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cdeath" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_centity_resource_added" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_centity_resource_removed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cgcd_finished" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cgcd_started" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="gcd" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cheal" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_clevel_up" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cmouse_enter" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cmouse_exit" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_ctargeted" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cuntargeted" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_cxp_gained" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_saura" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="data" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_scast" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sdamage" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sdeath" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sentity_resource_added" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sentity_resource_removed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sgcd_finished" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sgcd_started" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="gcd" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sheal" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_slevel_up" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_notification_sxp_gained" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_setup" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_sinteract" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_son_character_talent_learned" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="character_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_son_character_talent_reset" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_son_class_talent_learned" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="class_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_son_class_talent_reset" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_son_target_changed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="old_target" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_to_dict" qualifiers="virtual">
|
|
<return type="Dictionary" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_vendor_item_sbuy" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="count" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_vendor_item_ssell" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="adds_state_ref">
|
|
<return type="void" />
|
|
<argument index="0" name="state_index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_addc_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_getc">
|
|
<return type="AuraData" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_gets">
|
|
<return type="AuraData" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_gets_by">
|
|
<return type="AuraData" />
|
|
<argument index="0" name="caster" type="Node" />
|
|
<argument index="1" name="aura_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_gets_with_group_by">
|
|
<return type="AuraData" />
|
|
<argument index="0" name="caster" type="Node" />
|
|
<argument index="1" name="aura_group" type="AuraGroup" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec_dispelled">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec_dispelled_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec_exact">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec_exact_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec_expired">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec_expired_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removec_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removes_dispelled">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removes_exact">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removes_expired">
|
|
<return type="void" />
|
|
<argument index="0" name="aura" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="aura_removess_with_group">
|
|
<return type="void" />
|
|
<argument index="0" name="aura_group" type="AuraGroup" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="canc_interact">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cans_interact">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_delayc">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_delays">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_failc">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_fails">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_finishc">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_finishs">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_interruptc">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_interrupts">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_is_castingc">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_is_castings">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_spell_successc">
|
|
<return type="void" />
|
|
<argument index="0" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_spell_successc_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_spell_successs">
|
|
<return type="void" />
|
|
<argument index="0" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_startc">
|
|
<return type="void" />
|
|
<argument index="0" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_startc_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cast_starts">
|
|
<return type="void" />
|
|
<argument index="0" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_getc">
|
|
<return type="float" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_getc_index">
|
|
<return type="float" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_gets">
|
|
<return type="float" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_gets_index">
|
|
<return type="float" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_hasc">
|
|
<return type="bool" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_hass">
|
|
<return type="bool" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="category_cooldown_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="category_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cdamage_dealt_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cdealt_damage_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cdealt_heal_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cequip_applys_item">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="character_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="character_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_cclear">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_crequest_learn">
|
|
<return type="void" />
|
|
<argument index="0" name="spec_index" type="int" />
|
|
<argument index="1" name="character_talent_row" type="int" />
|
|
<argument index="2" name="character_talent_culomn" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_crequest_reset">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_creset">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_getc">
|
|
<return type="int" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_gets">
|
|
<return type="int" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_hasc">
|
|
<return type="bool" />
|
|
<argument index="0" name="character_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_hass">
|
|
<return type="bool" />
|
|
<argument index="0" name="character_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="character_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="character_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_sreceive_learn_request">
|
|
<return type="void" />
|
|
<argument index="0" name="spec_index" type="int" />
|
|
<argument index="1" name="character_talent_row" type="int" />
|
|
<argument index="2" name="character_talent_culomn" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_sreceive_reset_request">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talent_sreset">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="character_talents_sclear">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cheal_dealt_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="class_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="class_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_cclear">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_crequest_learn">
|
|
<return type="void" />
|
|
<argument index="0" name="spec_index" type="int" />
|
|
<argument index="1" name="class_talent_row" type="int" />
|
|
<argument index="2" name="class_talent_culomn" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_crequest_reset">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_creset">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_getc">
|
|
<return type="int" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_gets">
|
|
<return type="int" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_hasc">
|
|
<return type="bool" />
|
|
<argument index="0" name="class_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_hass">
|
|
<return type="bool" />
|
|
<argument index="0" name="class_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="class_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="class_talent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_sreceive_learn_request">
|
|
<return type="void" />
|
|
<argument index="0" name="spec_index" type="int" />
|
|
<argument index="1" name="class_talent_row" type="int" />
|
|
<argument index="2" name="class_talent_culomn" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_sreceive_reset_request">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talent_sreset">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="class_talents_sclear">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_getc">
|
|
<return type="float" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_getc_index">
|
|
<return type="float" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_gets">
|
|
<return type="float" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_gets_index">
|
|
<return type="float" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_hasc">
|
|
<return type="bool" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_hass">
|
|
<return type="bool" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="cooldown_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="copen_window">
|
|
<return type="void" />
|
|
<argument index="0" name="window_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_addc_recipe">
|
|
<return type="void" />
|
|
<argument index="0" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_addc_recipe_id">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_adds_recipe">
|
|
<return type="void" />
|
|
<argument index="0" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_adds_recipe_id">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_crequest">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_getc_recipe">
|
|
<return type="CraftRecipe" />
|
|
<argument index="0" name="craft_recipe" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_getc_recipe_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_gets_recipe">
|
|
<return type="CraftRecipe" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_gets_recipe_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_gets_recipe_id">
|
|
<return type="CraftRecipe" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_hasc_recipe">
|
|
<return type="bool" />
|
|
<argument index="0" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_hasc_recipe_id">
|
|
<return type="bool" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_hass_recipe">
|
|
<return type="bool" />
|
|
<argument index="0" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_hass_recipe_id">
|
|
<return type="bool" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_removec_recipe">
|
|
<return type="void" />
|
|
<argument index="0" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_removec_recipe_id">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_removes_recipe">
|
|
<return type="void" />
|
|
<argument index="0" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="craft_removes_recipe_id">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="crafts">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="creceive_stat">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="ccurrent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="crequest_interact">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="EntityDataContainer" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="EntityDataContainer" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_getc">
|
|
<return type="EntityDataContainer" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_gets">
|
|
<return type="EntityDataContainer" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="data_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="diec">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="dies">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_applys_item">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_can_equip_item">
|
|
<return type="bool" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_cfail">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_con_fail">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_con_success">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_crequest">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_csuccess">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_deapplyc_item">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_deapplys_item">
|
|
<return type="void" />
|
|
<argument index="0" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_getc_slot">
|
|
<return type="ItemInstance" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_gets_slot">
|
|
<return type="ItemInstance" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_should_deny">
|
|
<return type="bool" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_son_fail">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equip_son_success">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="old_item" type="ItemInstance" />
|
|
<argument index="3" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="equips">
|
|
<return type="void" />
|
|
<argument index="0" name="equip_slot" type="int" />
|
|
<argument index="1" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="from_dict">
|
|
<return type="void" />
|
|
<argument index="0" name="dict" type="Dictionary" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gcd_hasc" qualifiers="const">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gcd_hass" qualifiers="const">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gcd_startc">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gcd_starts">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_action_bar_profile">
|
|
<return type="ActionBarProfile" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_body">
|
|
<return type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_body_2d">
|
|
<return type="Node2D" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_body_3d">
|
|
<return type="Spatial" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_character_skeleton">
|
|
<return type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_maunal_process" qualifiers="const">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_transform_2d" qualifiers="const">
|
|
<return type="Transform2D" />
|
|
<argument index="0" name="only_stored" type="bool" default="false" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_transform_3d" qualifiers="const">
|
|
<return type="Transform" />
|
|
<argument index="0" name="only_stored" type="bool" default="false" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="getc_health">
|
|
<return type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="getc_is_controlled">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="getc_relation_to">
|
|
<return type="int" enum="EntityEnums.EntityRelationType" />
|
|
<argument index="0" name="to" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="getc_speed">
|
|
<return type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gets_health">
|
|
<return type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gets_relation_to">
|
|
<return type="int" enum="EntityEnums.EntityRelationType" />
|
|
<argument index="0" name="to" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gets_speed">
|
|
<return type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="instance_body">
|
|
<return type="void" />
|
|
<argument index="0" name="arg0" type="EntityData" />
|
|
<argument index="1" name="arg1" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="is_deserialized">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="isc_target_in_interact_range">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="iss_target_in_interact_range">
|
|
<return type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_addc_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<argument index="1" name="item_data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_cchange_count">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<argument index="1" name="new_count" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_cdeny_remove">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_cdeny_swap">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_crequest_remove">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_crequest_swap">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_crequest_use">
|
|
<return type="void" />
|
|
<argument index="0" name="item_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="item_uses">
|
|
<return type="void" />
|
|
<argument index="0" name="item_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="items_swapc">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="items_swaps">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="levelupc">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="levelups">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="loot_crequest">
|
|
<return type="void" />
|
|
<argument index="0" name="arg0" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="lootc">
|
|
<return type="void" />
|
|
<argument index="0" name="arg0" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="loots">
|
|
<return type="void" />
|
|
<argument index="0" name="arg0" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="moved">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_caura">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="data" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccast">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccategory_cooldown_added">
|
|
<return type="void" />
|
|
<argument index="0" name="category_cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccategory_cooldown_added" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccategory_cooldown_removed">
|
|
<return type="void" />
|
|
<argument index="0" name="category_cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccategory_cooldown_removed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccooldown_added" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccooldown_added">
|
|
<return type="void" />
|
|
<argument index="0" name="cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccooldown_removed">
|
|
<return type="void" />
|
|
<argument index="0" name="cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ccooldown_removed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cdamage">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cdeath">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_centity_resource_added">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_centity_resource_removed">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cgcd_finished">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cgcd_started">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cheal">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_clevel_up">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cmouse_enter">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cmouse_exit">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cstat_changed">
|
|
<return type="void" />
|
|
<argument index="0" name="stat" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_ctargeted">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cuntargeted">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_cxp_gained">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_item_sadded">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_item_sremoved">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_item_sscount_changed">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_items_sswapped">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="slot_id_1" type="int" />
|
|
<argument index="2" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_saura">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="data" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scast">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scategory_cooldown_added" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scategory_cooldown_added">
|
|
<return type="void" />
|
|
<argument index="0" name="category_cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scategory_cooldown_removed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scategory_cooldown_removed">
|
|
<return type="void" />
|
|
<argument index="0" name="category_cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scooldown_added" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scooldown_added">
|
|
<return type="void" />
|
|
<argument index="0" name="cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scooldown_removed">
|
|
<return type="void" />
|
|
<argument index="0" name="cooldown" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_scooldown_removed" qualifiers="virtual">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sdamage">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sdeath">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sentity_resource_added">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sentity_resource_removed">
|
|
<return type="void" />
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sgcd_finished">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sgcd_started">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sheal">
|
|
<return type="void" />
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_slevel_up">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_soverburden_removed">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_soverburdened">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sstat_changed">
|
|
<return type="void" />
|
|
<argument index="0" name="stat" type="int" />
|
|
<argument index="1" name="arg1" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_sxp_gained">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_target_item_sadded">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_target_item_sremoved">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_target_item_sscount_changed">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<argument index="2" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="notification_target_items_sswapped">
|
|
<return type="void" />
|
|
<argument index="0" name="bag" type="Bag" />
|
|
<argument index="1" name="slot_id_1" type="int" />
|
|
<argument index="2" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="on_body_changed">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_addc_path">
|
|
<return type="void" />
|
|
<argument index="0" name="arg0" type="NodePath" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_getc">
|
|
<return type="Entity" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_gets">
|
|
<return type="Entity" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_removec_index">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="pet_removes_index">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="register_for_physics_process">
|
|
<return type="void" />
|
|
<argument index="0" name="info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="removes_state_ref">
|
|
<return type="void" />
|
|
<argument index="0" name="state_index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="palyer_resource" type="int" />
|
|
<argument index="1" name="arg1" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_addc_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="palyer_resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_clearc">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_clears">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_creceive_curr_max">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="current" type="int" />
|
|
<argument index="2" name="max" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_creceive_current">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="current" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_creceive_data">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_getc_id">
|
|
<return type="EntityResource" />
|
|
<argument index="0" name="type" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_getc_index">
|
|
<return type="EntityResource" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_gets_id">
|
|
<return type="EntityResource" />
|
|
<argument index="0" name="type" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_gets_index">
|
|
<return type="EntityResource" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_sends_curr_max">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="current" type="int" />
|
|
<argument index="2" name="max" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_sends_current">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="current" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="resource_sends_data">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sapply_passives_damage_deal">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sapply_passives_damage_receive">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sdeal_damage_to">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sdeal_heal_to">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="seen_by_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="seen_by_gets">
|
|
<return type="Entity" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="seen_by_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="seen_by_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="seen_by_removes_index">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sees_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sees_gets">
|
|
<return type="Entity" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sees_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sees_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="entity" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sees_removes_index">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_body">
|
|
<return type="void" />
|
|
<argument index="0" name="body" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_character_skeleton">
|
|
<return type="void" />
|
|
<argument index="0" name="skeleton" type="Node" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_maunal_process">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_transform_2d">
|
|
<return type="void" />
|
|
<argument index="0" name="transform" type="Transform2D" />
|
|
<argument index="1" name="only_stored" type="bool" default="false" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="set_transform_3d">
|
|
<return type="void" />
|
|
<argument index="0" name="transform" type="Transform" />
|
|
<argument index="1" name="only_stored" type="bool" default="false" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="setc_bag_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="setc_target_bag_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="setup">
|
|
<return type="void" />
|
|
<argument index="0" name="info" type="EntityCreateInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="setup_actionbars">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="sinteract">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_addc_id">
|
|
<return type="void" />
|
|
<argument index="0" name="skill_id" type="int" />
|
|
<argument index="1" name="value" type="int" />
|
|
<argument index="2" name="max_value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_changec">
|
|
<return type="void" />
|
|
<argument index="0" name="skill_id" type="int" />
|
|
<argument index="1" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_changec_max">
|
|
<return type="void" />
|
|
<argument index="0" name="skill_id" type="int" />
|
|
<argument index="1" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_getc">
|
|
<return type="EntitySkill" />
|
|
<argument index="0" name="skill" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_gets">
|
|
<return type="EntitySkill" />
|
|
<argument index="0" name="skill" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_hasc">
|
|
<return type="bool" />
|
|
<argument index="0" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_hasc_id">
|
|
<return type="bool" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_hass">
|
|
<return type="bool" />
|
|
<argument index="0" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_hass_id">
|
|
<return type="bool" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_removec_id">
|
|
<return type="void" />
|
|
<argument index="0" name="skill_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="skill_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_addc_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_adds_id">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_casts">
|
|
<return type="void" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_crequest_cast">
|
|
<return type="void" />
|
|
<argument index="0" name="spell_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_getc">
|
|
<return type="Spell" />
|
|
<argument index="0" name="spell" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_getc_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_gets">
|
|
<return type="Spell" />
|
|
<argument index="0" name="spell" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_gets_count">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_hasc">
|
|
<return type="bool" />
|
|
<argument index="0" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_hasc_id">
|
|
<return type="bool" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_hass">
|
|
<return type="bool" />
|
|
<argument index="0" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_hass_id">
|
|
<return type="bool" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_learn_requestc">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_learns">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_removec_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="spell_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="ssend_open_window">
|
|
<return type="void" />
|
|
<argument index="0" name="window_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="ssend_stat">
|
|
<return type="void" />
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="ccurrent" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stake_damage">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stake_heal">
|
|
<return type="void" />
|
|
<argument index="0" name="data" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_get_base" qualifiers="const">
|
|
<return type="float" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_get_base_calculated" qualifiers="const">
|
|
<return type="float" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_get_bonus" qualifiers="const">
|
|
<return type="float" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_get_dirty" qualifiers="const">
|
|
<return type="bool" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_get_percent" qualifiers="const">
|
|
<return type="float" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_getc_current" qualifiers="const">
|
|
<return type="float" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_gets_current" qualifiers="const">
|
|
<return type="float" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_mod">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="base" type="float" />
|
|
<argument index="2" name="bonus" type="float" />
|
|
<argument index="3" name="percent" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_mod_base">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_mod_bonus">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_mod_percent">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_recalculate">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_set_base">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_set_base_calculated">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_set_bonus">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_set_dirty">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="bool" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_set_percent">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_setc_current">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="stat_sets_current">
|
|
<return type="void" />
|
|
<argument index="0" name="stat_id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_crequest_change">
|
|
<return type="void" />
|
|
<argument index="0" name="path" type="NodePath" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_addc_rpc">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<argument index="1" name="item_data" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_cchange_count">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<argument index="1" name="new_count" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_cdeny_remove">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_cdeny_swap">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_crequest_swap">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_removec">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_item_removes">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_items_cswap">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_items_sswap">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id_1" type="int" />
|
|
<argument index="1" name="slot_id_2" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_net_setc">
|
|
<return type="void" />
|
|
<argument index="0" name="path" type="NodePath" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_net_sets">
|
|
<return type="void" />
|
|
<argument index="0" name="path" type="NodePath" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="target_remove_crequest_item">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="to_dict">
|
|
<return type="Dictionary" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="update">
|
|
<return type="void" />
|
|
<argument index="0" name="delta" type="float" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="vendor_item_buy_crequest">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="count" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="vendor_item_sbuy">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<argument index="1" name="count" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="vendor_item_sell_crequest">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="vendor_item_ssell">
|
|
<return type="void" />
|
|
<argument index="0" name="slot_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="vrpc" qualifiers="vararg">
|
|
<return type="Variant" />
|
|
<argument index="0" name="method" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="xp_addc">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="xp_adds">
|
|
<return type="void" />
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
</methods>
|
|
<members>
|
|
<member name="actionbar_locked" type="bool" setter="set_actionbar_locked" getter="get_actionbar_locked" default="false">
|
|
</member>
|
|
<member name="ai_state" type="int" setter="sets_ai_state" getter="gets_ai_state" enum="EntityEnums.AIStates" default="0">
|
|
</member>
|
|
<member name="body_path" type="NodePath" setter="set_body_path" getter="get_body_path" default="NodePath("")">
|
|
</member>
|
|
<member name="cbag" type="Bag" setter="setc_bag" getter="getc_bag">
|
|
</member>
|
|
<member name="centity_controller" type="int" setter="setc_entity_controller" getter="getc_entity_controller" enum="EntityEnums.EntityController" default="0">
|
|
</member>
|
|
<member name="centity_data" type="EntityData" setter="setc_entity_data" getter="getc_entity_data">
|
|
</member>
|
|
<member name="centity_flags" type="int" setter="setc_entity_flags" getter="getc_entity_flags">
|
|
</member>
|
|
<member name="centity_interaction_type" type="int" setter="setc_entity_interaction_type" getter="getc_entity_interaction_type" enum="EntityEnums.EntityInteractionType">
|
|
</member>
|
|
<member name="centity_name" type="String" setter="setc_entity_name" getter="getc_entity_name">
|
|
</member>
|
|
<member name="centity_player_type" type="int" setter="setc_entity_player_type" getter="getc_entity_player_type">
|
|
</member>
|
|
<member name="centity_type" type="int" setter="setc_entity_type" getter="getc_entity_type">
|
|
</member>
|
|
<member name="cfree_character_talent_points" type="int" setter="setc_free_character_talent_points" getter="getc_free_character_talent_points">
|
|
</member>
|
|
<member name="cfree_class_talent_points" type="int" setter="setc_free_class_talent_points" getter="getc_free_class_talent_points">
|
|
</member>
|
|
<member name="cfree_spell_points" type="int" setter="setc_free_spell_points" getter="getc_free_spell_points">
|
|
</member>
|
|
<member name="cgcd" type="float" setter="gcd_setc" getter="gcd_getc" default="0.0">
|
|
</member>
|
|
<member name="cguid" type="int" setter="setc_guid" getter="getc_guid">
|
|
</member>
|
|
<member name="character_skeleton_path" type="NodePath" setter="set_character_skeleton_path" getter="get_character_skeleton_path" default="NodePath("")">
|
|
</member>
|
|
<member name="characterclass_id" type="int" setter="sets_entity_data_id" getter="gets_entity_data_id" default="0">
|
|
</member>
|
|
<member name="cis_pet" type="bool" setter="" getter="getc_is_pet">
|
|
</member>
|
|
<member name="clevel" type="int" setter="setc_level" getter="getc_level">
|
|
</member>
|
|
<member name="cmodel_index" type="int" setter="setc_model_index" getter="getc_model_index">
|
|
</member>
|
|
<member name="cmoney" type="int" setter="setc_money" getter="getc_money">
|
|
</member>
|
|
<member name="cseed" type="int" setter="setc_seed" getter="getc_seed">
|
|
</member>
|
|
<member name="cspell_cast_info" type="SpellCastInfo" setter="setc_spell_cast_info" getter="spell_getc_cast_info">
|
|
</member>
|
|
<member name="cstate" type="int" setter="setc_state" getter="getc_state" default="0">
|
|
</member>
|
|
<member name="ctarget" type="Entity" setter="setc_target" getter="getc_target">
|
|
</member>
|
|
<member name="ctarget_bag" type="Bag" setter="setc_target_bag" getter="getc_target_bag">
|
|
</member>
|
|
<member name="cxp" type="int" setter="setc_xp" getter="getc_xp">
|
|
</member>
|
|
<member name="entity_data_id" type="int" setter="setc_entity_data_id" getter="getc_entity_data_id" default="0">
|
|
</member>
|
|
<member name="pet_gets_ai_state" type="int" setter="pet_sets_ai_state" getter="pet_gets_ai_state" enum="EntityEnums.AIStates" default="0">
|
|
</member>
|
|
<member name="sai" type="EntityAI" setter="sets_ai" getter="gets_ai">
|
|
</member>
|
|
<member name="sauras" type="Array" setter="sauras_set" getter="sauras_get" default="[ ]">
|
|
</member>
|
|
<member name="sbag" type="Bag" setter="sets_bag" getter="gets_bag">
|
|
</member>
|
|
<member name="scategory_cooldowns" type="Array" setter="scategory_cooldowns_set" getter="scategory_cooldowns_get" default="[ ]">
|
|
</member>
|
|
<member name="scharacter_talents" type="PoolIntArray" setter="scharacter_talents_set" getter="scharacter_talents_get" default="PoolIntArray( )">
|
|
</member>
|
|
<member name="sclass_talents" type="PoolIntArray" setter="sclass_talents_set" getter="sclass_talents_get" default="PoolIntArray( )">
|
|
</member>
|
|
<member name="scooldowns" type="Array" setter="scooldowns_set" getter="scooldowns_get" default="[ ]">
|
|
</member>
|
|
<member name="scraft_recipes" type="Array" setter="scraft_recipes_set" getter="scraft_recipes_get" default="[ ]">
|
|
</member>
|
|
<member name="sdatas" type="Array" setter="sdatas_set" getter="sdatas_get" default="[ ]">
|
|
</member>
|
|
<member name="sentity_controller" type="int" setter="sets_entity_controller" getter="gets_entity_controller" enum="EntityEnums.EntityController" default="0">
|
|
</member>
|
|
<member name="sentity_data" type="EntityData" setter="sets_entity_data" getter="gets_entity_data">
|
|
</member>
|
|
<member name="sentity_flags" type="int" setter="sets_entity_flags" getter="gets_entity_flags" default="0">
|
|
</member>
|
|
<member name="sentity_interaction_type" type="int" setter="sets_entity_interaction_type" getter="gets_entity_interaction_type" enum="EntityEnums.EntityInteractionType" default="0">
|
|
</member>
|
|
<member name="sentity_name" type="String" setter="sets_entity_name" getter="gets_entity_name" default="""">
|
|
</member>
|
|
<member name="sentity_player_type" type="int" setter="sets_entity_player_type" getter="gets_entity_player_type" default="0">
|
|
</member>
|
|
<member name="sentity_type" type="int" setter="sets_entity_type" getter="gets_entity_type" default="0">
|
|
</member>
|
|
<member name="sfree_character_talent_points" type="int" setter="sets_free_character_talent_points" getter="gets_free_character_talent_points" default="0">
|
|
</member>
|
|
<member name="sfree_class_talent_points" type="int" setter="sets_free_class_talent_points" getter="gets_free_class_talent_points" default="0">
|
|
</member>
|
|
<member name="sfree_spell_points" type="int" setter="sets_free_spell_points" getter="gets_free_spell_points" default="0">
|
|
</member>
|
|
<member name="sgcd" type="float" setter="gcd_sets" getter="gcd_gets" default="0.0">
|
|
</member>
|
|
<member name="sguid" type="int" setter="sets_guid" getter="gets_guid" default="0">
|
|
</member>
|
|
<member name="simmunity_flags" type="int" setter="sets_immunity_flags" getter="gets_immunity_flags" default="0">
|
|
</member>
|
|
<member name="sis_pet" type="bool" setter="" getter="gets_is_pet">
|
|
</member>
|
|
<member name="slevel" type="int" setter="sets_level" getter="gets_level" default="1">
|
|
</member>
|
|
<member name="smodel_index" type="int" setter="sets_model_index" getter="gets_model_index" default="0">
|
|
</member>
|
|
<member name="smoney" type="int" setter="sets_money" getter="gets_money" default="0">
|
|
</member>
|
|
<member name="soriginal_entity_controller" type="int" setter="sets_original_entity_controller" getter="gets_original_entity_controller" enum="EntityEnums.EntityController" default="0">
|
|
</member>
|
|
<member name="spet_formation_index" type="int" setter="pet_sets_formation_index" getter="pet_gets_formation_index" default="0">
|
|
</member>
|
|
<member name="spet_owner" type="Entity" setter="pet_sets_owner" getter="pet_gets_owner">
|
|
</member>
|
|
<member name="sresources" type="Array" setter="sresources_set" getter="sresources_get" default="[ Object(EntityResourceHealth,"resource_local_to_scene":false,"resource_name":"","id":0,"text_name":"","current_value":0,"max_value":0,"stacking_mods":PoolRealArray( ),"non_stacking_mods":PoolRealArray( ),"script":null), Object(EntityResourceSpeed,"resource_local_to_scene":false,"resource_name":"","id":0,"text_name":"","current_value":0,"max_value":0,"stacking_mods":PoolRealArray( ),"non_stacking_mods":PoolRealArray( ),"script":null) ]">
|
|
</member>
|
|
<member name="sseed" type="int" setter="sets_seed" getter="gets_seed" default="0">
|
|
</member>
|
|
<member name="sskills" type="Array" setter="sskills_set" getter="sskills_get" default="[ ]">
|
|
</member>
|
|
<member name="sspell_cast_info" type="SpellCastInfo" setter="sets_spell_cast_info" getter="spell_gets_cast_info">
|
|
</member>
|
|
<member name="sspells" type="Array" setter="sspells_set" getter="sspells_get" default="[ ]">
|
|
</member>
|
|
<member name="sstate" type="int" setter="sets_state" getter="gets_state" default="0">
|
|
</member>
|
|
<member name="sstates" type="PoolIntArray" setter="states_sets" getter="states_gets" default="PoolIntArray( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 )">
|
|
</member>
|
|
<member name="starget" type="Entity" setter="sets_target" getter="gets_target">
|
|
</member>
|
|
<member name="starget_bag" type="Bag" setter="sets_target_bag" getter="gets_target_bag">
|
|
</member>
|
|
<member name="sxp" type="int" setter="sets_xp" getter="gets_xp" default="0">
|
|
</member>
|
|
</members>
|
|
<signals>
|
|
<signal name="body_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cbag_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="bag" type="Bag" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccategory_cooldown_added">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccategory_cooldown_removed">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccharacter_talent_learned">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="character_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccharacter_talent_reset">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cclass_talent_learned">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="class_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cclass_talent_reset">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccooldown_added">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccooldown_removed">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccraft_recipe_added">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ccraft_success">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="centity_data_changed">
|
|
<argument index="0" name="data" type="EntityData" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="centity_resource_added">
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="centity_resource_removed">
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cfree_spell_points_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="new_value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cgcd_finished">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cgcd_started">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cname_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="con_damage_dealt">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="con_damage_received">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="con_dealt_damage">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="con_dealt_heal">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="con_heal_dealt">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="con_heal_received">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="con_level_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="level" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="crafts_recipe_added">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="craft_recipe" type="CraftRecipe" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="crafts_success">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="item" type="ItemInstance" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cskill_added">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cskill_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cskill_removed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cspell_added">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cspell_removed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="cstate_changed">
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ctarget_bag_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="bag" type="Bag" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="ctarget_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="old_target" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="deserialized">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="diecd">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="diesd">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="equip_con_fail">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="equip_slot" type="int" />
|
|
<argument index="2" name="item" type="ItemInstance" />
|
|
<argument index="3" name="old_item" type="ItemInstance" />
|
|
<argument index="4" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="equip_con_success">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="equip_slot" type="int" />
|
|
<argument index="2" name="item" type="ItemInstance" />
|
|
<argument index="3" name="old_item" type="ItemInstance" />
|
|
<argument index="4" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="equip_son_fail">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="equip_slot" type="int" />
|
|
<argument index="2" name="item" type="ItemInstance" />
|
|
<argument index="3" name="old_item" type="ItemInstance" />
|
|
<argument index="4" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="equip_son_success">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="equip_slot" type="int" />
|
|
<argument index="2" name="item" type="ItemInstance" />
|
|
<argument index="3" name="old_item" type="ItemInstance" />
|
|
<argument index="4" name="bag_slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="equipment_changed">
|
|
<argument index="0" name="slot" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_caura">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="aura_data" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_ccast">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="spell_cast_info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_cdamage">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_cheal">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_clevel_up">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_cmouse_entered">
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_cmouse_exited">
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_ctargeted">
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_cuntargeted">
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_cxp_gained">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_saura">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="aura_data" type="AuraData" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_scast">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="spell_cast_info" type="SpellCastInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_sdamage">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_sheal">
|
|
<argument index="0" name="what" type="int" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_slevel_up">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="notification_sxp_gained">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="onc_entity_controller_changed">
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="onc_open_winow_request">
|
|
<argument index="0" name="window_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sbag_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="bag" type="Bag" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="scategory_cooldown_added">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="scategory_cooldown_removed">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="scharacter_talent_learned">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="character_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="scharacter_talent_reset">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sclass_talent_learned">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="class_talent_id" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sclass_talent_reset">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="scooldown_added">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="scooldown_removed">
|
|
<argument index="0" name="id" type="int" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sentity_data_changed">
|
|
<argument index="0" name="data" type="EntityData" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sentity_resource_added">
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sentity_resource_removed">
|
|
<argument index="0" name="resource" type="EntityResource" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sfree_spell_points_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="new_value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sgcd_finished">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sgcd_started">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="value" type="float" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sname_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="son_damage_dealt">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="son_damage_received">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="son_dealt_damage">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellDamageInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="son_dealt_heal">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="son_heal_dealt">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="son_heal_received">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="info" type="SpellHealInfo" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="son_level_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="level" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sskill_added">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sskill_removed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="skill" type="EntitySkill" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sspell_added">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sspell_removed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="spell" type="Spell" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="sstate_changed">
|
|
<argument index="0" name="value" type="int" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="starget_bag_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="bag" type="Bag" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="starget_changed">
|
|
<argument index="0" name="entity" type="Entity" />
|
|
<argument index="1" name="old_target" type="Entity" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
</signals>
|
|
<constants>
|
|
</constants>
|
|
</class>
|