warscript 0.0.1-dev.f5421e8 → 0.0.1-dev.f594e71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/attributes.d.ts +6 -0
- package/attributes.lua +17 -1
- package/core/types/frame.d.ts +1 -0
- package/core/types/frame.lua +136 -58
- package/core/types/handle.lua +9 -9
- package/core/types/item.d.ts +1 -0
- package/core/types/item.lua +1 -0
- package/core/types/player.d.ts +18 -1
- package/core/types/player.lua +76 -26
- package/core/types/playerCamera.d.ts +2 -0
- package/core/types/playerCamera.lua +123 -5
- package/core/types/playerColor.lua +4 -3
- package/core/types/sound.d.ts +1 -1
- package/core/types/sound.lua +19 -9
- package/core/types/tileCell.d.ts +11 -1
- package/core/types/tileCell.lua +97 -0
- package/core/types/timer.d.ts +3 -1
- package/core/types/timer.lua +27 -2
- package/core/types/unit.d.ts +4 -0
- package/core/types/unit.lua +4 -0
- package/decl/native.d.ts +1718 -964
- package/destroyable.d.ts +1 -0
- package/destroyable.lua +9 -0
- package/engine/behavior.d.ts +14 -1
- package/engine/behavior.lua +230 -70
- package/engine/behaviour/ability/apply-buff.lua +5 -5
- package/engine/behaviour/ability/damage.d.ts +9 -3
- package/engine/behaviour/ability/damage.lua +40 -49
- package/engine/behaviour/ability/emulate-impact.d.ts +1 -1
- package/engine/behaviour/ability/emulate-impact.lua +23 -7
- package/engine/behaviour/ability/remove-buffs.d.ts +9 -0
- package/engine/behaviour/ability/remove-buffs.lua +21 -0
- package/engine/behaviour/ability/restore-mana.d.ts +1 -1
- package/engine/behaviour/ability/restore-mana.lua +6 -6
- package/engine/behaviour/ability.d.ts +12 -6
- package/engine/behaviour/ability.lua +49 -17
- package/engine/behaviour/unit/stun-immunity.d.ts +12 -6
- package/engine/behaviour/unit/stun-immunity.lua +57 -31
- package/engine/behaviour/unit.d.ts +40 -3
- package/engine/behaviour/unit.lua +270 -6
- package/engine/buff.d.ts +75 -28
- package/engine/buff.lua +433 -196
- package/engine/index.d.ts +2 -1
- package/engine/internal/ability.d.ts +11 -1
- package/engine/internal/ability.lua +100 -41
- package/engine/internal/item/ability.lua +63 -11
- package/engine/internal/item/fields.d.ts +12 -0
- package/engine/internal/item/fields.lua +33 -0
- package/engine/internal/item+owner.d.ts +1 -0
- package/engine/internal/item+owner.lua +19 -6
- package/engine/internal/item.d.ts +28 -16
- package/engine/internal/item.lua +241 -82
- package/engine/internal/mechanics/cast-ability.lua +6 -3
- package/engine/internal/misc/damage-metadata-by-target.lua +5 -0
- package/engine/internal/misc/frame-coordinates.d.ts +2 -0
- package/engine/internal/misc/frame-coordinates.lua +21 -0
- package/engine/internal/misc/get-terrain-z.d.ts +2 -0
- package/engine/internal/misc/get-terrain-z.lua +11 -0
- package/engine/internal/misc/player-local-handle.d.ts +2 -0
- package/engine/internal/misc/player-local-handle.lua +5 -0
- package/engine/internal/object-data/armor-bonus.d.ts +2 -0
- package/engine/internal/object-data/attribute-bonus.lua +2 -2
- package/engine/internal/object-data/health-bonus.d.ts +2 -0
- package/engine/internal/object-data/health-bonus.lua +16 -0
- package/engine/internal/object-data/mana-bonus.d.ts +2 -0
- package/engine/internal/object-data/mana-bonus.lua +16 -0
- package/engine/internal/object-data/mana-regeneration-rate-increase-factor.d.ts +2 -0
- package/engine/internal/object-data/mana-regeneration-rate-increase-factor.lua +16 -0
- package/engine/internal/unit/ability.d.ts +35 -0
- package/engine/internal/unit/ability.lua +113 -12
- package/engine/internal/unit/allowed-targets.d.ts +1 -1
- package/engine/internal/unit/allowed-targets.lua +9 -1
- package/engine/internal/unit/appearance.d.ts +15 -0
- package/engine/internal/unit/appearance.lua +85 -0
- package/engine/internal/unit/attributes.d.ts +17 -0
- package/engine/internal/unit/attributes.lua +46 -0
- package/engine/internal/unit/bag.d.ts +18 -0
- package/engine/internal/unit/bag.lua +63 -0
- package/engine/internal/unit/bonus.d.ts +6 -0
- package/engine/internal/unit/bonus.lua +33 -3
- package/engine/internal/unit/buff.d.ts +2 -2
- package/engine/internal/unit/buff.lua +34 -19
- package/engine/internal/unit/equipment.d.ts +36 -0
- package/engine/internal/unit/equipment.lua +169 -0
- package/engine/internal/unit/fly-height.d.ts +7 -0
- package/engine/internal/unit/fly-height.lua +20 -0
- package/engine/internal/unit/interrupts.d.ts +12 -0
- package/engine/internal/unit/interrupts.lua +28 -0
- package/engine/internal/unit/{item.d.ts → inventory.d.ts} +3 -3
- package/engine/internal/unit/{item.lua → inventory.lua} +25 -26
- package/engine/internal/unit/main-selected.lua +12 -27
- package/engine/internal/unit/order.d.ts +20 -0
- package/engine/internal/unit/order.lua +136 -0
- package/engine/internal/unit/pseudo-passive-abilities.d.ts +2 -0
- package/engine/internal/unit/pseudo-passive-abilities.lua +11 -0
- package/engine/internal/unit/range-event.d.ts +12 -0
- package/engine/internal/unit/range-event.lua +90 -0
- package/engine/internal/unit/scale.d.ts +7 -0
- package/engine/internal/unit/scale.lua +20 -0
- package/engine/internal/unit+ability.lua +10 -1
- package/engine/internal/unit+bonus.lua +3 -3
- package/engine/internal/unit+damage.d.ts +11 -11
- package/engine/internal/unit+damage.lua +43 -14
- package/engine/internal/unit+spellSteal.lua +1 -2
- package/engine/internal/unit-missile-data.lua +58 -32
- package/engine/internal/unit-missile-launch.lua +52 -14
- package/engine/internal/unit.d.ts +39 -27
- package/engine/internal/unit.lua +382 -269
- package/engine/local-client.d.ts +27 -0
- package/engine/local-client.lua +370 -54
- package/engine/object-data/auxiliary/armor-type.d.ts +11 -0
- package/engine/object-data/auxiliary/armor-type.lua +46 -0
- package/engine/object-data/auxiliary/attack-type.d.ts +7 -8
- package/engine/object-data/auxiliary/attack-type.lua +42 -0
- package/engine/object-data/auxiliary/equipment-slot.d.ts +12 -0
- package/engine/object-data/auxiliary/equipment-slot.lua +2 -0
- package/engine/object-data/auxiliary/equipment-type.d.ts +13 -0
- package/engine/object-data/auxiliary/equipment-type.lua +2 -0
- package/engine/object-data/auxiliary/health-regeneration-type.d.ts +8 -0
- package/engine/object-data/auxiliary/health-regeneration-type.lua +2 -0
- package/engine/object-data/auxiliary/item-tag.d.ts +12 -0
- package/engine/object-data/auxiliary/item-tag.lua +2 -0
- package/engine/object-data/auxiliary/movement-type.d.ts +7 -7
- package/engine/object-data/auxiliary/movement-type.lua +22 -0
- package/engine/object-data/auxiliary/sound-set-name.d.ts +14 -3
- package/engine/object-data/auxiliary/unit-attribute.d.ts +6 -0
- package/engine/object-data/auxiliary/unit-attribute.lua +9 -0
- package/engine/object-data/entry/ability-type/apprehend.d.ts +22 -0
- package/engine/object-data/entry/ability-type/apprehend.lua +66 -0
- package/engine/object-data/entry/ability-type/armor-bonus.d.ts +8 -0
- package/engine/object-data/entry/ability-type/{armor-increase.lua → armor-bonus.lua} +9 -9
- package/engine/object-data/entry/ability-type/banshee.d.ts +8 -0
- package/engine/object-data/entry/ability-type/banshee.lua +13 -0
- package/engine/object-data/entry/ability-type/banshees-wail-damage-amp.d.ts +12 -0
- package/engine/object-data/entry/ability-type/banshees-wail-damage-amp.lua +27 -0
- package/engine/object-data/entry/ability-type/banshees-wail.d.ts +31 -0
- package/engine/object-data/entry/ability-type/banshees-wail.lua +117 -0
- package/engine/object-data/entry/ability-type/battering-ram.d.ts +33 -0
- package/engine/object-data/entry/ability-type/battering-ram.lua +130 -0
- package/engine/object-data/entry/ability-type/berserk.d.ts +2 -0
- package/engine/object-data/entry/ability-type/berserk.lua +13 -0
- package/engine/object-data/entry/ability-type/blank-configurable.d.ts +3 -0
- package/engine/object-data/entry/ability-type/blank-configurable.lua +30 -0
- package/engine/object-data/entry/ability-type/cleansing-fire.d.ts +27 -0
- package/engine/object-data/entry/ability-type/cleansing-fire.lua +104 -0
- package/engine/object-data/entry/ability-type/consecration.d.ts +15 -0
- package/engine/object-data/entry/ability-type/consecration.lua +52 -0
- package/engine/object-data/entry/ability-type/cooldown-reduction.d.ts +12 -0
- package/engine/object-data/entry/ability-type/cooldown-reduction.lua +39 -0
- package/engine/object-data/entry/ability-type/critical-strike-system.d.ts +18 -0
- package/engine/object-data/entry/ability-type/critical-strike-system.lua +65 -0
- package/engine/object-data/entry/ability-type/deathseeker-arrows.d.ts +21 -0
- package/engine/object-data/entry/ability-type/deathseeker-arrows.lua +78 -0
- package/engine/object-data/entry/ability-type/equipment-inventory-interface.d.ts +8 -0
- package/engine/object-data/entry/ability-type/equipment-inventory-interface.lua +13 -0
- package/engine/object-data/entry/ability-type/equipment-inventory.d.ts +13 -0
- package/engine/object-data/entry/ability-type/equipment-inventory.lua +27 -0
- package/engine/object-data/entry/ability-type/equipment.d.ts +13 -0
- package/engine/object-data/entry/ability-type/equipment.lua +27 -0
- package/engine/object-data/entry/ability-type/grant-talent-point.d.ts +8 -0
- package/engine/object-data/entry/ability-type/grant-talent-point.lua +13 -0
- package/engine/object-data/entry/ability-type/grim-conviction.d.ts +36 -0
- package/engine/object-data/entry/ability-type/grim-conviction.lua +131 -0
- package/engine/object-data/entry/ability-type/grit.d.ts +18 -0
- package/engine/object-data/entry/ability-type/grit.lua +65 -0
- package/engine/object-data/entry/ability-type/guiding-hand.d.ts +27 -0
- package/engine/object-data/entry/ability-type/guiding-hand.lua +104 -0
- package/engine/object-data/entry/ability-type/headsplitter.d.ts +27 -0
- package/engine/object-data/entry/ability-type/headsplitter.lua +104 -0
- package/engine/object-data/entry/ability-type/{armor-increase.d.ts → healing-modifier.d.ts} +4 -3
- package/engine/object-data/entry/ability-type/healing-modifier.lua +26 -0
- package/engine/object-data/entry/ability-type/health-bonus.d.ts +8 -0
- package/engine/object-data/entry/ability-type/health-bonus.lua +26 -0
- package/engine/object-data/entry/ability-type/heroic-slash.d.ts +18 -0
- package/engine/object-data/entry/ability-type/heroic-slash.lua +65 -0
- package/engine/object-data/entry/ability-type/holy-wrath.d.ts +30 -0
- package/engine/object-data/entry/ability-type/holy-wrath.lua +117 -0
- package/engine/object-data/entry/ability-type/inspire-courage.d.ts +18 -0
- package/engine/object-data/entry/ability-type/inspire-courage.lua +65 -0
- package/engine/object-data/entry/ability-type/lights-mercy.d.ts +27 -0
- package/engine/object-data/entry/ability-type/lights-mercy.lua +104 -0
- package/engine/object-data/entry/ability-type/mana-bonus.d.ts +8 -0
- package/engine/object-data/entry/ability-type/mana-bonus.lua +26 -0
- package/engine/object-data/entry/ability-type/mana-efficiency.d.ts +12 -0
- package/engine/object-data/entry/ability-type/mana-efficiency.lua +39 -0
- package/engine/object-data/entry/ability-type/mana-regeneration.d.ts +8 -0
- package/engine/object-data/entry/ability-type/mana-regeneration.lua +26 -0
- package/engine/object-data/entry/ability-type/mind-control.d.ts +21 -0
- package/engine/object-data/entry/ability-type/mind-control.lua +78 -0
- package/engine/object-data/entry/ability-type/on-attack-cast-spell.d.ts +21 -0
- package/engine/object-data/entry/ability-type/on-attack-cast-spell.lua +52 -0
- package/engine/object-data/entry/ability-type/on-basic-attack-cast-spell.d.ts +19 -0
- package/engine/object-data/entry/ability-type/on-basic-attack-cast-spell.lua +65 -0
- package/engine/object-data/entry/ability-type/on-hit-cast-spell.d.ts +15 -0
- package/engine/object-data/entry/ability-type/on-hit-cast-spell.lua +26 -0
- package/engine/object-data/entry/ability-type/on-magic-attack-cast-spell.d.ts +6 -0
- package/engine/object-data/entry/ability-type/on-magic-attack-cast-spell.lua +12 -0
- package/engine/object-data/entry/ability-type/permanent-invisibility.d.ts +8 -0
- package/engine/object-data/entry/ability-type/permanent-invisibility.lua +26 -0
- package/engine/object-data/entry/ability-type/provoke.d.ts +21 -0
- package/engine/object-data/entry/ability-type/provoke.lua +66 -0
- package/engine/object-data/entry/ability-type/raise-the-banner.d.ts +9 -0
- package/engine/object-data/entry/ability-type/raise-the-banner.lua +26 -0
- package/engine/object-data/entry/ability-type/reincarnation.d.ts +8 -0
- package/engine/object-data/entry/ability-type/reincarnation.lua +26 -0
- package/engine/object-data/entry/ability-type/resolve.d.ts +12 -0
- package/engine/object-data/entry/ability-type/resolve.lua +39 -0
- package/engine/object-data/entry/ability-type/righteous-fury.d.ts +33 -0
- package/engine/object-data/entry/ability-type/righteous-fury.lua +130 -0
- package/engine/object-data/entry/ability-type/sacred-aura.d.ts +27 -0
- package/engine/object-data/entry/ability-type/sacred-aura.lua +104 -0
- package/engine/object-data/entry/ability-type/slow-poison.d.ts +10 -0
- package/engine/object-data/entry/ability-type/slow-poison.lua +58 -0
- package/engine/object-data/entry/ability-type/soul-lantern.d.ts +30 -0
- package/engine/object-data/entry/ability-type/soul-lantern.lua +117 -0
- package/engine/object-data/entry/ability-type/spell-amp.d.ts +15 -0
- package/engine/object-data/entry/ability-type/spell-amp.lua +52 -0
- package/engine/object-data/entry/ability-type/spell-critical-strike.d.ts +12 -0
- package/engine/object-data/entry/ability-type/spell-critical-strike.lua +39 -0
- package/engine/object-data/entry/ability-type/spell-vamp.d.ts +12 -0
- package/engine/object-data/entry/ability-type/spell-vamp.lua +39 -0
- package/engine/object-data/entry/ability-type/stackable-evasion.d.ts +9 -0
- package/engine/object-data/entry/ability-type/stackable-evasion.lua +13 -0
- package/engine/object-data/entry/ability-type/stackable-hardened-skin.d.ts +21 -0
- package/engine/object-data/entry/ability-type/stackable-hardened-skin.lua +78 -0
- package/engine/object-data/entry/ability-type/stackable-life-steal.d.ts +9 -0
- package/engine/object-data/entry/ability-type/stackable-life-steal.lua +26 -0
- package/engine/object-data/entry/ability-type/stackable-spell-damage-reduction.d.ts +9 -0
- package/engine/object-data/entry/ability-type/stackable-spell-damage-reduction.lua +13 -0
- package/engine/object-data/entry/ability-type/stackable-thorn-shield.d.ts +9 -0
- package/engine/object-data/entry/ability-type/stackable-thorn-shield.lua +13 -0
- package/engine/object-data/entry/ability-type/stat-details.d.ts +12 -0
- package/engine/object-data/entry/ability-type/stat-details.lua +27 -0
- package/engine/object-data/entry/ability-type/surge-of-light.d.ts +33 -0
- package/engine/object-data/entry/ability-type/surge-of-light.lua +130 -0
- package/engine/object-data/entry/ability-type/sweeping-strike.d.ts +57 -0
- package/engine/object-data/entry/ability-type/sweeping-strike.lua +234 -0
- package/engine/object-data/entry/ability-type/talents.d.ts +12 -0
- package/engine/object-data/entry/ability-type/talents.lua +27 -0
- package/engine/object-data/entry/ability-type/unyielding-guard.d.ts +30 -0
- package/engine/object-data/entry/ability-type/unyielding-guard.lua +117 -0
- package/engine/object-data/entry/ability-type/valiant-charge.d.ts +27 -0
- package/engine/object-data/entry/ability-type/valiant-charge.lua +104 -0
- package/engine/object-data/entry/ability-type/warcry.d.ts +9 -0
- package/engine/object-data/entry/ability-type/warcry.lua +26 -0
- package/engine/object-data/entry/ability-type/withering-fire.d.ts +21 -0
- package/engine/object-data/entry/ability-type/withering-fire.lua +78 -0
- package/engine/object-data/entry/ability-type.d.ts +12 -3
- package/engine/object-data/entry/ability-type.lua +148 -7
- package/engine/object-data/entry/buff-type/applicable.lua +113 -104
- package/engine/object-data/entry/buff-type.d.ts +10 -12
- package/engine/object-data/entry/buff-type.lua +37 -27
- package/engine/object-data/entry/destructible-type.d.ts +32 -2
- package/engine/object-data/entry/destructible-type.lua +181 -0
- package/engine/object-data/entry/item-type.d.ts +12 -3
- package/engine/object-data/entry/item-type.lua +52 -0
- package/engine/object-data/entry/lightning-type.d.ts +2 -2
- package/engine/object-data/entry/sound-preset.d.ts +2 -2
- package/engine/object-data/entry/unit-type.d.ts +64 -6
- package/engine/object-data/entry/unit-type.lua +531 -85
- package/engine/object-data/entry/upgrade.d.ts +2 -2
- package/engine/object-data/entry.d.ts +4 -1
- package/engine/object-field/ability.d.ts +4 -4
- package/engine/object-field/ability.lua +9 -8
- package/engine/object-field/item.d.ts +22 -0
- package/engine/object-field/item.lua +118 -0
- package/engine/object-field/unit.d.ts +72 -3
- package/engine/object-field/unit.lua +268 -7
- package/engine/object-field.d.ts +26 -7
- package/engine/object-field.lua +360 -119
- package/engine/random.d.ts +10 -0
- package/engine/random.lua +21 -0
- package/engine/standard/entries/ability-type.d.ts +3102 -7
- package/engine/standard/entries/ability-type.lua +0 -6
- package/engine/standard/entries/buff-type.d.ts +3 -0
- package/engine/standard/entries/buff-type.lua +3 -0
- package/engine/standard/entries/item-type.d.ts +1299 -0
- package/engine/standard/entries/item-type.lua +2 -0
- package/engine/standard/entries/unit-type.d.ts +5 -0
- package/engine/standard/entries/unit-type.lua +5 -0
- package/engine/standard/fields/ability.d.ts +2 -2
- package/engine/standard/fields/ability.lua +2 -2
- package/engine/standard/fields/item.d.ts +4 -0
- package/engine/standard/fields/item.lua +6 -0
- package/engine/standard/fields/unit.d.ts +12 -0
- package/engine/standard/fields/unit.lua +20 -0
- package/engine/synchronization.d.ts +11 -0
- package/engine/synchronization.lua +77 -0
- package/engine/text-tag.d.ts +36 -2
- package/engine/text-tag.lua +250 -10
- package/engine/unit.d.ts +10 -1
- package/engine/unit.lua +10 -1
- package/event.d.ts +1 -1
- package/lualib_bundle.lua +1 -1
- package/math.d.ts +2 -0
- package/math.lua +14 -0
- package/net/socket.lua +1 -1
- package/network.lua +25 -1
- package/objutil/buff.lua +11 -10
- package/objutil/object.lua +1 -1
- package/operation.d.ts +8 -1
- package/operation.lua +38 -18
- package/package.json +3 -23
- package/patch-lua.lua +15 -0
- package/patch-lualib.lua +1 -1
- package/utility/arrays.d.ts +2 -0
- package/utility/arrays.lua +11 -0
- package/utility/callback-array.d.ts +17 -0
- package/utility/callback-array.lua +61 -0
- package/utility/functions.d.ts +8 -0
- package/utility/functions.lua +13 -0
- package/utility/linked-map.d.ts +35 -0
- package/utility/linked-map.lua +107 -0
- package/utility/linked-set.d.ts +5 -1
- package/utility/linked-set.lua +49 -1
- package/utility/lua-maps.d.ts +15 -2
- package/utility/lua-maps.lua +53 -2
- package/utility/lua-sets.d.ts +2 -0
- package/utility/lua-sets.lua +7 -0
- package/utility/random.d.ts +102 -0
- package/utility/random.lua +273 -0
- package/utility/records.lua +20 -1
- package/utility/types.d.ts +3 -0
- package/utility/unordered-map.d.ts +27 -0
- package/utility/unordered-map.lua +99 -0
- package/core/types/order.d.ts +0 -25
- package/core/types/order.lua +0 -55
- /package/engine/internal/{object-data/armor-increase.d.ts → misc/damage-metadata-by-target.d.ts} +0 -0
- /package/engine/internal/object-data/{armor-increase.lua → armor-bonus.lua} +0 -0
- /package/engine/object-data/entry/ability-type/{attribute-increase.d.ts → attribute-bonus.d.ts} +0 -0
- /package/engine/object-data/entry/ability-type/{attribute-increase.lua → attribute-bonus.lua} +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { OnAttackCastSpellAbilityType } from "./on-attack-cast-spell";
|
|
3
|
+
import { AbilityTypeId } from "../ability-type";
|
|
4
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
5
|
+
export declare class OnBasicAttackCastSpellAbilityType extends OnAttackCastSpellAbilityType {
|
|
6
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
7
|
+
/** % Hit chance on Unit */
|
|
8
|
+
get unitHitChancePercentage(): number[];
|
|
9
|
+
set unitHitChancePercentage(unitHitChancePercentage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
10
|
+
/** % Hit chance on Hero */
|
|
11
|
+
get heroHitChancePercentage(): number[];
|
|
12
|
+
set heroHitChancePercentage(heroHitChancePercentage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
13
|
+
/** % Hit chance on Summon */
|
|
14
|
+
get summonHitChancePercentage(): number[];
|
|
15
|
+
set summonHitChancePercentage(summonHitChancePercentage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
16
|
+
/** % Hit chance on Critical Strike */
|
|
17
|
+
get criticalStrikeHitChancePercentage(): number[];
|
|
18
|
+
set criticalStrikeHitChancePercentage(criticalStrikeHitChancePercentage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
19
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____on_2Dattack_2Dcast_2Dspell = require("engine.object-data.entry.ability-type.on-attack-cast-spell")
|
|
7
|
+
local OnAttackCastSpellAbilityType = ____on_2Dattack_2Dcast_2Dspell.OnAttackCastSpellAbilityType
|
|
8
|
+
____exports.OnBasicAttackCastSpellAbilityType = __TS__Class()
|
|
9
|
+
local OnBasicAttackCastSpellAbilityType = ____exports.OnBasicAttackCastSpellAbilityType
|
|
10
|
+
OnBasicAttackCastSpellAbilityType.name = "OnBasicAttackCastSpellAbilityType"
|
|
11
|
+
__TS__ClassExtends(OnBasicAttackCastSpellAbilityType, OnAttackCastSpellAbilityType)
|
|
12
|
+
OnBasicAttackCastSpellAbilityType.BASE_ID = fourCC("Aoas")
|
|
13
|
+
__TS__SetDescriptor(
|
|
14
|
+
OnBasicAttackCastSpellAbilityType.prototype,
|
|
15
|
+
"unitHitChancePercentage",
|
|
16
|
+
{
|
|
17
|
+
get = function(self)
|
|
18
|
+
return self:getNumberLevelField("oap1")
|
|
19
|
+
end,
|
|
20
|
+
set = function(self, unitHitChancePercentage)
|
|
21
|
+
self:setNumberLevelField("oap1", unitHitChancePercentage)
|
|
22
|
+
end
|
|
23
|
+
},
|
|
24
|
+
true
|
|
25
|
+
)
|
|
26
|
+
__TS__SetDescriptor(
|
|
27
|
+
OnBasicAttackCastSpellAbilityType.prototype,
|
|
28
|
+
"heroHitChancePercentage",
|
|
29
|
+
{
|
|
30
|
+
get = function(self)
|
|
31
|
+
return self:getNumberLevelField("oap2")
|
|
32
|
+
end,
|
|
33
|
+
set = function(self, heroHitChancePercentage)
|
|
34
|
+
self:setNumberLevelField("oap2", heroHitChancePercentage)
|
|
35
|
+
end
|
|
36
|
+
},
|
|
37
|
+
true
|
|
38
|
+
)
|
|
39
|
+
__TS__SetDescriptor(
|
|
40
|
+
OnBasicAttackCastSpellAbilityType.prototype,
|
|
41
|
+
"summonHitChancePercentage",
|
|
42
|
+
{
|
|
43
|
+
get = function(self)
|
|
44
|
+
return self:getNumberLevelField("oap3")
|
|
45
|
+
end,
|
|
46
|
+
set = function(self, summonHitChancePercentage)
|
|
47
|
+
self:setNumberLevelField("oap3", summonHitChancePercentage)
|
|
48
|
+
end
|
|
49
|
+
},
|
|
50
|
+
true
|
|
51
|
+
)
|
|
52
|
+
__TS__SetDescriptor(
|
|
53
|
+
OnBasicAttackCastSpellAbilityType.prototype,
|
|
54
|
+
"criticalStrikeHitChancePercentage",
|
|
55
|
+
{
|
|
56
|
+
get = function(self)
|
|
57
|
+
return self:getNumberLevelField("oap4")
|
|
58
|
+
end,
|
|
59
|
+
set = function(self, criticalStrikeHitChancePercentage)
|
|
60
|
+
self:setNumberLevelField("oap4", criticalStrikeHitChancePercentage)
|
|
61
|
+
end
|
|
62
|
+
},
|
|
63
|
+
true
|
|
64
|
+
)
|
|
65
|
+
return ____exports
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { OnAttackCastSpellAbilityType } from "./on-attack-cast-spell";
|
|
3
|
+
import { AbilityTypeId } from "../ability-type";
|
|
4
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
5
|
+
export declare const enum OnHitCastSpellAbilityTypeDamageType {
|
|
6
|
+
MELEE = 0,
|
|
7
|
+
RANGED = 1,
|
|
8
|
+
ALL = 2
|
|
9
|
+
}
|
|
10
|
+
export declare class OnHitCastSpellAbilityType extends OnAttackCastSpellAbilityType {
|
|
11
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
12
|
+
/** Allowed Damage Type */
|
|
13
|
+
get allowedDamageType(): OnHitCastSpellAbilityTypeDamageType[];
|
|
14
|
+
set allowedDamageType(allowedDamageType: ObjectDataEntryLevelFieldValueSupplier<OnHitCastSpellAbilityTypeDamageType>);
|
|
15
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____on_2Dattack_2Dcast_2Dspell = require("engine.object-data.entry.ability-type.on-attack-cast-spell")
|
|
7
|
+
local OnAttackCastSpellAbilityType = ____on_2Dattack_2Dcast_2Dspell.OnAttackCastSpellAbilityType
|
|
8
|
+
____exports.OnHitCastSpellAbilityType = __TS__Class()
|
|
9
|
+
local OnHitCastSpellAbilityType = ____exports.OnHitCastSpellAbilityType
|
|
10
|
+
OnHitCastSpellAbilityType.name = "OnHitCastSpellAbilityType"
|
|
11
|
+
__TS__ClassExtends(OnHitCastSpellAbilityType, OnAttackCastSpellAbilityType)
|
|
12
|
+
OnHitCastSpellAbilityType.BASE_ID = fourCC("Atds")
|
|
13
|
+
__TS__SetDescriptor(
|
|
14
|
+
OnHitCastSpellAbilityType.prototype,
|
|
15
|
+
"allowedDamageType",
|
|
16
|
+
{
|
|
17
|
+
get = function(self)
|
|
18
|
+
return self:getNumberLevelField("ohp1")
|
|
19
|
+
end,
|
|
20
|
+
set = function(self, allowedDamageType)
|
|
21
|
+
self:setNumberLevelField("ohp1", allowedDamageType)
|
|
22
|
+
end
|
|
23
|
+
},
|
|
24
|
+
true
|
|
25
|
+
)
|
|
26
|
+
return ____exports
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { OnAttackCastSpellAbilityType } from "./on-attack-cast-spell";
|
|
3
|
+
import { AbilityTypeId } from "../ability-type";
|
|
4
|
+
export declare class OnMagicAttackCastSpellAbilityType extends OnAttackCastSpellAbilityType {
|
|
5
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local ____exports = {}
|
|
5
|
+
local ____on_2Dattack_2Dcast_2Dspell = require("engine.object-data.entry.ability-type.on-attack-cast-spell")
|
|
6
|
+
local OnAttackCastSpellAbilityType = ____on_2Dattack_2Dcast_2Dspell.OnAttackCastSpellAbilityType
|
|
7
|
+
____exports.OnMagicAttackCastSpellAbilityType = __TS__Class()
|
|
8
|
+
local OnMagicAttackCastSpellAbilityType = ____exports.OnMagicAttackCastSpellAbilityType
|
|
9
|
+
OnMagicAttackCastSpellAbilityType.name = "OnMagicAttackCastSpellAbilityType"
|
|
10
|
+
__TS__ClassExtends(OnMagicAttackCastSpellAbilityType, OnAttackCastSpellAbilityType)
|
|
11
|
+
OnMagicAttackCastSpellAbilityType.BASE_ID = fourCC("Asas")
|
|
12
|
+
return ____exports
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
+
export declare class PermanentInvisibilityAbilityType extends AbilityType {
|
|
5
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
+
get shouldAutoAcquireAttackTargets(): boolean[];
|
|
7
|
+
set shouldAutoAcquireAttackTargets(shouldAutoAcquireAttackTargets: ObjectDataEntryLevelFieldValueSupplier<boolean>);
|
|
8
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
+
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
+
____exports.PermanentInvisibilityAbilityType = __TS__Class()
|
|
9
|
+
local PermanentInvisibilityAbilityType = ____exports.PermanentInvisibilityAbilityType
|
|
10
|
+
PermanentInvisibilityAbilityType.name = "PermanentInvisibilityAbilityType"
|
|
11
|
+
__TS__ClassExtends(PermanentInvisibilityAbilityType, AbilityType)
|
|
12
|
+
PermanentInvisibilityAbilityType.BASE_ID = fourCC("Apiv")
|
|
13
|
+
__TS__SetDescriptor(
|
|
14
|
+
PermanentInvisibilityAbilityType.prototype,
|
|
15
|
+
"shouldAutoAcquireAttackTargets",
|
|
16
|
+
{
|
|
17
|
+
get = function(self)
|
|
18
|
+
return self:getBooleanLevelField("Gho1")
|
|
19
|
+
end,
|
|
20
|
+
set = function(self, shouldAutoAcquireAttackTargets)
|
|
21
|
+
self:setBooleanLevelField("Gho1", shouldAutoAcquireAttackTargets)
|
|
22
|
+
end
|
|
23
|
+
},
|
|
24
|
+
true
|
|
25
|
+
)
|
|
26
|
+
return ____exports
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
+
/**
|
|
5
|
+
* Provoke / Heroic Challenge (AHhc). Its fields live in Data F-I; Data A-E have no metadata.
|
|
6
|
+
*/
|
|
7
|
+
export declare class ProvokeAbilityType extends AbilityType {
|
|
8
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
9
|
+
/** Shield Health */
|
|
10
|
+
get shieldHealth(): number[];
|
|
11
|
+
set shieldHealth(shieldHealth: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
12
|
+
/** Shield Reflect Percent */
|
|
13
|
+
get shieldReflectPercentage(): number[];
|
|
14
|
+
set shieldReflectPercentage(shieldReflectPercentage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
15
|
+
/** Shield Duration */
|
|
16
|
+
get shieldDuration(): number[];
|
|
17
|
+
set shieldDuration(shieldDuration: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
18
|
+
/** Taunted Defense Reduction */
|
|
19
|
+
get tauntedArmorReduction(): number[];
|
|
20
|
+
set tauntedArmorReduction(tauntedArmorReduction: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
21
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
+
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
+
--- Provoke / Heroic Challenge (AHhc). Its fields live in Data F-I; Data A-E have no metadata.
|
|
9
|
+
____exports.ProvokeAbilityType = __TS__Class()
|
|
10
|
+
local ProvokeAbilityType = ____exports.ProvokeAbilityType
|
|
11
|
+
ProvokeAbilityType.name = "ProvokeAbilityType"
|
|
12
|
+
__TS__ClassExtends(ProvokeAbilityType, AbilityType)
|
|
13
|
+
ProvokeAbilityType.BASE_ID = fourCC("AHhc")
|
|
14
|
+
__TS__SetDescriptor(
|
|
15
|
+
ProvokeAbilityType.prototype,
|
|
16
|
+
"shieldHealth",
|
|
17
|
+
{
|
|
18
|
+
get = function(self)
|
|
19
|
+
return self:getNumberLevelField("hhc1")
|
|
20
|
+
end,
|
|
21
|
+
set = function(self, shieldHealth)
|
|
22
|
+
self:setNumberLevelField("hhc1", shieldHealth)
|
|
23
|
+
end
|
|
24
|
+
},
|
|
25
|
+
true
|
|
26
|
+
)
|
|
27
|
+
__TS__SetDescriptor(
|
|
28
|
+
ProvokeAbilityType.prototype,
|
|
29
|
+
"shieldReflectPercentage",
|
|
30
|
+
{
|
|
31
|
+
get = function(self)
|
|
32
|
+
return self:getNumberLevelField("hhc2")
|
|
33
|
+
end,
|
|
34
|
+
set = function(self, shieldReflectPercentage)
|
|
35
|
+
self:setNumberLevelField("hhc2", shieldReflectPercentage)
|
|
36
|
+
end
|
|
37
|
+
},
|
|
38
|
+
true
|
|
39
|
+
)
|
|
40
|
+
__TS__SetDescriptor(
|
|
41
|
+
ProvokeAbilityType.prototype,
|
|
42
|
+
"shieldDuration",
|
|
43
|
+
{
|
|
44
|
+
get = function(self)
|
|
45
|
+
return self:getNumberLevelField("hhc3")
|
|
46
|
+
end,
|
|
47
|
+
set = function(self, shieldDuration)
|
|
48
|
+
self:setNumberLevelField("hhc3", shieldDuration)
|
|
49
|
+
end
|
|
50
|
+
},
|
|
51
|
+
true
|
|
52
|
+
)
|
|
53
|
+
__TS__SetDescriptor(
|
|
54
|
+
ProvokeAbilityType.prototype,
|
|
55
|
+
"tauntedArmorReduction",
|
|
56
|
+
{
|
|
57
|
+
get = function(self)
|
|
58
|
+
return self:getNumberLevelField("hhc4")
|
|
59
|
+
end,
|
|
60
|
+
set = function(self, tauntedArmorReduction)
|
|
61
|
+
self:setNumberLevelField("hhc4", tauntedArmorReduction)
|
|
62
|
+
end
|
|
63
|
+
},
|
|
64
|
+
true
|
|
65
|
+
)
|
|
66
|
+
return ____exports
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
+
export declare class RaiseTheBannerAbilityType extends AbilityType {
|
|
5
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
+
/** Given Abilities */
|
|
7
|
+
get givenAbilityTypeIds(): AbilityTypeId[][];
|
|
8
|
+
set givenAbilityTypeIds(givenAbilityTypeIds: ObjectDataEntryLevelFieldValueSupplier<AbilityTypeId[]>);
|
|
9
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
+
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
+
____exports.RaiseTheBannerAbilityType = __TS__Class()
|
|
9
|
+
local RaiseTheBannerAbilityType = ____exports.RaiseTheBannerAbilityType
|
|
10
|
+
RaiseTheBannerAbilityType.name = "RaiseTheBannerAbilityType"
|
|
11
|
+
__TS__ClassExtends(RaiseTheBannerAbilityType, AbilityType)
|
|
12
|
+
RaiseTheBannerAbilityType.BASE_ID = fourCC("Aaga")
|
|
13
|
+
__TS__SetDescriptor(
|
|
14
|
+
RaiseTheBannerAbilityType.prototype,
|
|
15
|
+
"givenAbilityTypeIds",
|
|
16
|
+
{
|
|
17
|
+
get = function(self)
|
|
18
|
+
return self:getObjectDataEntryNumericIdsLevelField("aga1")
|
|
19
|
+
end,
|
|
20
|
+
set = function(self, givenAbilityTypeIds)
|
|
21
|
+
self:setObjectDataEntryNumericIdsLevelField("aga1", givenAbilityTypeIds)
|
|
22
|
+
end
|
|
23
|
+
},
|
|
24
|
+
true
|
|
25
|
+
)
|
|
26
|
+
return ____exports
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
+
export declare class ReincarnationAbilityType extends AbilityType {
|
|
5
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
+
get reincarnationDelay(): number[];
|
|
7
|
+
set reincarnationDelay(reincarnationDelay: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
8
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
+
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
+
____exports.ReincarnationAbilityType = __TS__Class()
|
|
9
|
+
local ReincarnationAbilityType = ____exports.ReincarnationAbilityType
|
|
10
|
+
ReincarnationAbilityType.name = "ReincarnationAbilityType"
|
|
11
|
+
__TS__ClassExtends(ReincarnationAbilityType, AbilityType)
|
|
12
|
+
ReincarnationAbilityType.BASE_ID = fourCC("AOre")
|
|
13
|
+
__TS__SetDescriptor(
|
|
14
|
+
ReincarnationAbilityType.prototype,
|
|
15
|
+
"reincarnationDelay",
|
|
16
|
+
{
|
|
17
|
+
get = function(self)
|
|
18
|
+
return self:getNumberLevelField("Ore1")
|
|
19
|
+
end,
|
|
20
|
+
set = function(self, reincarnationDelay)
|
|
21
|
+
self:setNumberLevelField("Ore1", reincarnationDelay)
|
|
22
|
+
end
|
|
23
|
+
},
|
|
24
|
+
true
|
|
25
|
+
)
|
|
26
|
+
return ____exports
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
+
export declare class ResolveAbilityType extends AbilityType {
|
|
5
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
+
/** Resolve */
|
|
7
|
+
get resolve(): number[];
|
|
8
|
+
set resolve(resolve: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
9
|
+
/** Flat Bonus */
|
|
10
|
+
get isFlatBonus(): boolean[];
|
|
11
|
+
set isFlatBonus(isFlatBonus: ObjectDataEntryLevelFieldValueSupplier<boolean>);
|
|
12
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
+
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
+
____exports.ResolveAbilityType = __TS__Class()
|
|
9
|
+
local ResolveAbilityType = ____exports.ResolveAbilityType
|
|
10
|
+
ResolveAbilityType.name = "ResolveAbilityType"
|
|
11
|
+
__TS__ClassExtends(ResolveAbilityType, AbilityType)
|
|
12
|
+
ResolveAbilityType.BASE_ID = fourCC("AIlv")
|
|
13
|
+
__TS__SetDescriptor(
|
|
14
|
+
ResolveAbilityType.prototype,
|
|
15
|
+
"resolve",
|
|
16
|
+
{
|
|
17
|
+
get = function(self)
|
|
18
|
+
return self:getNumberLevelField("Ilv1")
|
|
19
|
+
end,
|
|
20
|
+
set = function(self, resolve)
|
|
21
|
+
self:setNumberLevelField("Ilv1", resolve)
|
|
22
|
+
end
|
|
23
|
+
},
|
|
24
|
+
true
|
|
25
|
+
)
|
|
26
|
+
__TS__SetDescriptor(
|
|
27
|
+
ResolveAbilityType.prototype,
|
|
28
|
+
"isFlatBonus",
|
|
29
|
+
{
|
|
30
|
+
get = function(self)
|
|
31
|
+
return self:getBooleanLevelField("Ilv2")
|
|
32
|
+
end,
|
|
33
|
+
set = function(self, isFlatBonus)
|
|
34
|
+
self:setBooleanLevelField("Ilv2", isFlatBonus)
|
|
35
|
+
end
|
|
36
|
+
},
|
|
37
|
+
true
|
|
38
|
+
)
|
|
39
|
+
return ____exports
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
+
export declare class RighteousFuryAbilityType extends AbilityType {
|
|
5
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
+
/** Target Intersect Radius */
|
|
7
|
+
get targetIntersectRadius(): number[];
|
|
8
|
+
set targetIntersectRadius(targetIntersectRadius: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
9
|
+
/** Dash Speed */
|
|
10
|
+
get dashSpeed(): number[];
|
|
11
|
+
set dashSpeed(dashSpeed: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
12
|
+
/** Dash Damage */
|
|
13
|
+
get dashDamage(): number[];
|
|
14
|
+
set dashDamage(dashDamage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
15
|
+
/** Bonus Critical Strike */
|
|
16
|
+
get bonusCriticalStrike(): number[];
|
|
17
|
+
set bonusCriticalStrike(bonusCriticalStrike: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
18
|
+
/** Normal - Bonus Critical Strike Duration */
|
|
19
|
+
get bonusCriticalStrikeDuration(): number[];
|
|
20
|
+
set bonusCriticalStrikeDuration(bonusCriticalStrikeDuration: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
21
|
+
/** Hero - Bonus Critical Strike Duration */
|
|
22
|
+
get bonusCriticalStrikeHeroDuration(): number[];
|
|
23
|
+
set bonusCriticalStrikeHeroDuration(bonusCriticalStrikeHeroDuration: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
24
|
+
/** Remove Buffs On Ability Start */
|
|
25
|
+
get removesBuffsOnStart(): boolean[];
|
|
26
|
+
set removesBuffsOnStart(removesBuffsOnStart: ObjectDataEntryLevelFieldValueSupplier<boolean>);
|
|
27
|
+
/** Movement Speed Slow */
|
|
28
|
+
get movementSpeedSlowFactor(): number[];
|
|
29
|
+
set movementSpeedSlowFactor(movementSpeedSlowFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
30
|
+
/** Attack Speed Slow */
|
|
31
|
+
get attackSpeedSlowFactor(): number[];
|
|
32
|
+
set attackSpeedSlowFactor(attackSpeedSlowFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
33
|
+
}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
+
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
+
local ____exports = {}
|
|
6
|
+
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
+
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
+
____exports.RighteousFuryAbilityType = __TS__Class()
|
|
9
|
+
local RighteousFuryAbilityType = ____exports.RighteousFuryAbilityType
|
|
10
|
+
RighteousFuryAbilityType.name = "RighteousFuryAbilityType"
|
|
11
|
+
__TS__ClassExtends(RighteousFuryAbilityType, AbilityType)
|
|
12
|
+
RighteousFuryAbilityType.BASE_ID = fourCC("ANcp")
|
|
13
|
+
__TS__SetDescriptor(
|
|
14
|
+
RighteousFuryAbilityType.prototype,
|
|
15
|
+
"targetIntersectRadius",
|
|
16
|
+
{
|
|
17
|
+
get = function(self)
|
|
18
|
+
return self:getNumberLevelField("chra")
|
|
19
|
+
end,
|
|
20
|
+
set = function(self, targetIntersectRadius)
|
|
21
|
+
self:setNumberLevelField("chra", targetIntersectRadius)
|
|
22
|
+
end
|
|
23
|
+
},
|
|
24
|
+
true
|
|
25
|
+
)
|
|
26
|
+
__TS__SetDescriptor(
|
|
27
|
+
RighteousFuryAbilityType.prototype,
|
|
28
|
+
"dashSpeed",
|
|
29
|
+
{
|
|
30
|
+
get = function(self)
|
|
31
|
+
return self:getNumberLevelField("chr1")
|
|
32
|
+
end,
|
|
33
|
+
set = function(self, dashSpeed)
|
|
34
|
+
self:setNumberLevelField("chr1", dashSpeed)
|
|
35
|
+
end
|
|
36
|
+
},
|
|
37
|
+
true
|
|
38
|
+
)
|
|
39
|
+
__TS__SetDescriptor(
|
|
40
|
+
RighteousFuryAbilityType.prototype,
|
|
41
|
+
"dashDamage",
|
|
42
|
+
{
|
|
43
|
+
get = function(self)
|
|
44
|
+
return self:getNumberLevelField("chr2")
|
|
45
|
+
end,
|
|
46
|
+
set = function(self, dashDamage)
|
|
47
|
+
self:setNumberLevelField("chr2", dashDamage)
|
|
48
|
+
end
|
|
49
|
+
},
|
|
50
|
+
true
|
|
51
|
+
)
|
|
52
|
+
__TS__SetDescriptor(
|
|
53
|
+
RighteousFuryAbilityType.prototype,
|
|
54
|
+
"bonusCriticalStrike",
|
|
55
|
+
{
|
|
56
|
+
get = function(self)
|
|
57
|
+
return self:getNumberLevelField("chr3")
|
|
58
|
+
end,
|
|
59
|
+
set = function(self, bonusCriticalStrike)
|
|
60
|
+
self:setNumberLevelField("chr3", bonusCriticalStrike)
|
|
61
|
+
end
|
|
62
|
+
},
|
|
63
|
+
true
|
|
64
|
+
)
|
|
65
|
+
__TS__SetDescriptor(
|
|
66
|
+
RighteousFuryAbilityType.prototype,
|
|
67
|
+
"bonusCriticalStrikeDuration",
|
|
68
|
+
{
|
|
69
|
+
get = function(self)
|
|
70
|
+
return self:getNumberLevelField("chr4")
|
|
71
|
+
end,
|
|
72
|
+
set = function(self, bonusCriticalStrikeDuration)
|
|
73
|
+
self:setNumberLevelField("chr4", bonusCriticalStrikeDuration)
|
|
74
|
+
end
|
|
75
|
+
},
|
|
76
|
+
true
|
|
77
|
+
)
|
|
78
|
+
__TS__SetDescriptor(
|
|
79
|
+
RighteousFuryAbilityType.prototype,
|
|
80
|
+
"bonusCriticalStrikeHeroDuration",
|
|
81
|
+
{
|
|
82
|
+
get = function(self)
|
|
83
|
+
return self:getNumberLevelField("chr5")
|
|
84
|
+
end,
|
|
85
|
+
set = function(self, bonusCriticalStrikeHeroDuration)
|
|
86
|
+
self:setNumberLevelField("chr5", bonusCriticalStrikeHeroDuration)
|
|
87
|
+
end
|
|
88
|
+
},
|
|
89
|
+
true
|
|
90
|
+
)
|
|
91
|
+
__TS__SetDescriptor(
|
|
92
|
+
RighteousFuryAbilityType.prototype,
|
|
93
|
+
"removesBuffsOnStart",
|
|
94
|
+
{
|
|
95
|
+
get = function(self)
|
|
96
|
+
return self:getBooleanLevelField("chr6")
|
|
97
|
+
end,
|
|
98
|
+
set = function(self, removesBuffsOnStart)
|
|
99
|
+
self:setBooleanLevelField("chr6", removesBuffsOnStart)
|
|
100
|
+
end
|
|
101
|
+
},
|
|
102
|
+
true
|
|
103
|
+
)
|
|
104
|
+
__TS__SetDescriptor(
|
|
105
|
+
RighteousFuryAbilityType.prototype,
|
|
106
|
+
"movementSpeedSlowFactor",
|
|
107
|
+
{
|
|
108
|
+
get = function(self)
|
|
109
|
+
return self:getNumberLevelField("nrf3")
|
|
110
|
+
end,
|
|
111
|
+
set = function(self, movementSpeedSlowFactor)
|
|
112
|
+
self:setNumberLevelField("nrf3", movementSpeedSlowFactor)
|
|
113
|
+
end
|
|
114
|
+
},
|
|
115
|
+
true
|
|
116
|
+
)
|
|
117
|
+
__TS__SetDescriptor(
|
|
118
|
+
RighteousFuryAbilityType.prototype,
|
|
119
|
+
"attackSpeedSlowFactor",
|
|
120
|
+
{
|
|
121
|
+
get = function(self)
|
|
122
|
+
return self:getNumberLevelField("nrf4")
|
|
123
|
+
end,
|
|
124
|
+
set = function(self, attackSpeedSlowFactor)
|
|
125
|
+
self:setNumberLevelField("nrf4", attackSpeedSlowFactor)
|
|
126
|
+
end
|
|
127
|
+
},
|
|
128
|
+
true
|
|
129
|
+
)
|
|
130
|
+
return ____exports
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
+
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
+
export declare class SacredAuraAbilityType extends AbilityType {
|
|
5
|
+
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
+
/** % Magic Resist Increase for Allies */
|
|
7
|
+
get allyMagicResistanceIncreaseFactor(): number[];
|
|
8
|
+
set allyMagicResistanceIncreaseFactor(allyMagicResistanceIncreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
9
|
+
/** % Healing Increase for Allies */
|
|
10
|
+
get allyHealingIncreasePercentage(): number[];
|
|
11
|
+
set allyHealingIncreasePercentage(allyHealingIncreasePercentage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
12
|
+
/** % Cooldown Reduction Increase for Allies */
|
|
13
|
+
get allyCooldownReductionIncreaseFactor(): number[];
|
|
14
|
+
set allyCooldownReductionIncreaseFactor(allyCooldownReductionIncreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
15
|
+
/** % Magic Resist Decrease for Enemies */
|
|
16
|
+
get enemyMagicResistanceDecreaseFactor(): number[];
|
|
17
|
+
set enemyMagicResistanceDecreaseFactor(enemyMagicResistanceDecreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
18
|
+
/** % Healing Decrease for Enemies */
|
|
19
|
+
get enemyHealingDecreaseFactor(): number[];
|
|
20
|
+
set enemyHealingDecreaseFactor(enemyHealingDecreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
21
|
+
/** % Cooldown Increase for Enemies */
|
|
22
|
+
get enemyCooldownIncreaseFactor(): number[];
|
|
23
|
+
set enemyCooldownIncreaseFactor(enemyCooldownIncreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
24
|
+
/** Flat Mana Regen for Allies */
|
|
25
|
+
get allyFlatManaRegeneration(): number[];
|
|
26
|
+
set allyFlatManaRegeneration(allyFlatManaRegeneration: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
27
|
+
}
|