warscript 0.0.1-dev.404878c
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/LICENSE +23 -0
- package/binaryreader.d.ts +20 -0
- package/binaryreader.lua +50 -0
- package/binarywriter.d.ts +21 -0
- package/binarywriter.lua +90 -0
- package/core/dummy.d.ts +22 -0
- package/core/dummy.lua +133 -0
- package/core/game.d.ts +3 -0
- package/core/game.lua +24 -0
- package/core/mapbounds.d.ts +8 -0
- package/core/mapbounds.lua +12 -0
- package/core/thread.d.ts +8 -0
- package/core/thread.lua +40 -0
- package/core/types/ability.d.ts +4 -0
- package/core/types/ability.lua +10 -0
- package/core/types/async.d.ts +3 -0
- package/core/types/async.lua +2 -0
- package/core/types/camera.d.ts +4 -0
- package/core/types/camera.lua +21 -0
- package/core/types/cameraField.d.ts +15 -0
- package/core/types/cameraField.lua +38 -0
- package/core/types/color.d.ts +16 -0
- package/core/types/color.lua +93 -0
- package/core/types/destructable.d.ts +31 -0
- package/core/types/destructable.lua +245 -0
- package/core/types/effect.d.ts +31 -0
- package/core/types/effect.lua +209 -0
- package/core/types/frame.d.ts +140 -0
- package/core/types/frame.lua +882 -0
- package/core/types/game.d.ts +8 -0
- package/core/types/game.lua +41 -0
- package/core/types/group.d.ts +22 -0
- package/core/types/group.lua +94 -0
- package/core/types/handle.d.ts +48 -0
- package/core/types/handle.lua +169 -0
- package/core/types/image.d.ts +30 -0
- package/core/types/image.lua +121 -0
- package/core/types/internal/ability+cooldownRemaining.d.ts +1 -0
- package/core/types/internal/ability+cooldownRemaining.lua +0 -0
- package/core/types/item.d.ts +4 -0
- package/core/types/item.lua +6 -0
- package/core/types/missile.d.ts +22 -0
- package/core/types/missile.lua +233 -0
- package/core/types/order.d.ts +25 -0
- package/core/types/order.lua +55 -0
- package/core/types/player.d.ts +71 -0
- package/core/types/player.lua +448 -0
- package/core/types/playerCamera.d.ts +32 -0
- package/core/types/playerCamera.lua +162 -0
- package/core/types/playerColor.d.ts +40 -0
- package/core/types/playerColor.lua +203 -0
- package/core/types/rect.d.ts +39 -0
- package/core/types/rect.lua +152 -0
- package/core/types/region.d.ts +14 -0
- package/core/types/region.lua +84 -0
- package/core/types/sound.d.ts +69 -0
- package/core/types/sound.lua +247 -0
- package/core/types/tileCell.d.ts +13 -0
- package/core/types/tileCell.lua +100 -0
- package/core/types/timer.d.ts +36 -0
- package/core/types/timer.lua +230 -0
- package/core/types/timerDialog.d.ts +19 -0
- package/core/types/timerDialog.lua +95 -0
- package/core/types/unit.d.ts +10 -0
- package/core/types/unit.lua +24 -0
- package/core/types/widget.d.ts +5 -0
- package/core/types/widget.lua +2 -0
- package/core/util.d.ts +62 -0
- package/core/util.lua +464 -0
- package/core/vecmath/common.d.ts +18 -0
- package/core/vecmath/common.lua +29 -0
- package/core/vecmath/mat2.d.ts +73 -0
- package/core/vecmath/mat2.lua +261 -0
- package/core/vecmath/vec3.d.ts +47 -0
- package/core/vecmath/vec3.lua +350 -0
- package/core/vecmath/vec4.d.ts +54 -0
- package/core/vecmath/vec4.lua +400 -0
- package/crypto/ecc.d.ts +6 -0
- package/crypto/ecc.lua +1734 -0
- package/decl/index.d.ts +116 -0
- package/decl/native.d.ts +8198 -0
- package/destroyable.d.ts +20 -0
- package/destroyable.lua +31 -0
- package/engine/ability.d.ts +5 -0
- package/engine/ability.lua +7 -0
- package/engine/behavior.d.ts +28 -0
- package/engine/behavior.lua +181 -0
- package/engine/behaviour/ability/apply-buff.d.ts +38 -0
- package/engine/behaviour/ability/apply-buff.lua +126 -0
- package/engine/behaviour/ability/apply-unit-behavior.d.ts +12 -0
- package/engine/behaviour/ability/apply-unit-behavior.lua +36 -0
- package/engine/behaviour/ability/damage.d.ts +25 -0
- package/engine/behaviour/ability/damage.lua +75 -0
- package/engine/behaviour/ability/heal.d.ts +16 -0
- package/engine/behaviour/ability/heal.lua +35 -0
- package/engine/behaviour/ability/instant-impact.d.ts +6 -0
- package/engine/behaviour/ability/instant-impact.lua +25 -0
- package/engine/behaviour/ability.d.ts +40 -0
- package/engine/behaviour/ability.lua +175 -0
- package/engine/behaviour/unit/stun-immunity.d.ts +19 -0
- package/engine/behaviour/unit/stun-immunity.lua +67 -0
- package/engine/behaviour/unit.d.ts +20 -0
- package/engine/behaviour/unit.lua +75 -0
- package/engine/buff.d.ts +221 -0
- package/engine/buff.lua +1093 -0
- package/engine/constants.d.ts +7 -0
- package/engine/constants.lua +8 -0
- package/engine/index.d.ts +5 -0
- package/engine/index.lua +2 -0
- package/engine/internal/ability.d.ts +91 -0
- package/engine/internal/ability.lua +531 -0
- package/engine/internal/item/ability.d.ts +2 -0
- package/engine/internal/item/ability.lua +48 -0
- package/engine/internal/item+owner.d.ts +7 -0
- package/engine/internal/item+owner.lua +22 -0
- package/engine/internal/item.d.ts +86 -0
- package/engine/internal/item.lua +580 -0
- package/engine/internal/mechanics/ability-duration.d.ts +4 -0
- package/engine/internal/mechanics/ability-duration.lua +11 -0
- package/engine/internal/mechanics/area-damage.d.ts +2 -0
- package/engine/internal/mechanics/area-damage.lua +33 -0
- package/engine/internal/misc/dummy-units.d.ts +2 -0
- package/engine/internal/misc/dummy-units.lua +14 -0
- package/engine/internal/object-data/armor-increase.d.ts +2 -0
- package/engine/internal/object-data/armor-increase.lua +19 -0
- package/engine/internal/object-data/attribute-bonus.d.ts +2 -0
- package/engine/internal/object-data/attribute-bonus.lua +15 -0
- package/engine/internal/object-data/auto-attack-damage-increase.d.ts +2 -0
- package/engine/internal/object-data/auto-attack-damage-increase.lua +17 -0
- package/engine/internal/object-data/auto-attack-speed-increase.d.ts +2 -0
- package/engine/internal/object-data/auto-attack-speed-increase.lua +14 -0
- package/engine/internal/object-data/dummy-inventory.d.ts +2 -0
- package/engine/internal/object-data/dummy-inventory.lua +16 -0
- package/engine/internal/object-data/dummy-item.d.ts +2 -0
- package/engine/internal/object-data/dummy-item.lua +10 -0
- package/engine/internal/object-data/ghost-visible.d.ts +2 -0
- package/engine/internal/object-data/ghost-visible.lua +15 -0
- package/engine/internal/object-data/invulnerable.d.ts +2 -0
- package/engine/internal/object-data/invulnerable.lua +11 -0
- package/engine/internal/object-data/movement-speed-increase-factor.d.ts +2 -0
- package/engine/internal/object-data/movement-speed-increase-factor.lua +18 -0
- package/engine/internal/unit/ability.d.ts +143 -0
- package/engine/internal/unit/ability.lua +369 -0
- package/engine/internal/unit/allowed-targets.d.ts +17 -0
- package/engine/internal/unit/allowed-targets.lua +19 -0
- package/engine/internal/unit/band-aids/ancestral-spirit-cannibalize.d.ts +2 -0
- package/engine/internal/unit/band-aids/ancestral-spirit-cannibalize.lua +21 -0
- package/engine/internal/unit/bonus.d.ts +41 -0
- package/engine/internal/unit/bonus.lua +188 -0
- package/engine/internal/unit/buff.d.ts +38 -0
- package/engine/internal/unit/buff.lua +81 -0
- package/engine/internal/unit/expiration-timer.d.ts +22 -0
- package/engine/internal/unit/expiration-timer.lua +44 -0
- package/engine/internal/unit/ghost-counter.d.ts +12 -0
- package/engine/internal/unit/ghost-counter.lua +26 -0
- package/engine/internal/unit/invulnerability-counter.d.ts +12 -0
- package/engine/internal/unit/invulnerability-counter.lua +26 -0
- package/engine/internal/unit/missile.d.ts +42 -0
- package/engine/internal/unit/missile.lua +70 -0
- package/engine/internal/unit/movement-speed.d.ts +18 -0
- package/engine/internal/unit/movement-speed.lua +42 -0
- package/engine/internal/unit/summon-event.d.ts +12 -0
- package/engine/internal/unit/summon-event.lua +50 -0
- package/engine/internal/unit+ability.d.ts +9 -0
- package/engine/internal/unit+ability.lua +59 -0
- package/engine/internal/unit+bonus.d.ts +8 -0
- package/engine/internal/unit+bonus.lua +40 -0
- package/engine/internal/unit+damage.d.ts +69 -0
- package/engine/internal/unit+damage.lua +123 -0
- package/engine/internal/unit+rally.d.ts +10 -0
- package/engine/internal/unit+rally.lua +159 -0
- package/engine/internal/unit+spellSteal.d.ts +7 -0
- package/engine/internal/unit+spellSteal.lua +64 -0
- package/engine/internal/unit+transport.d.ts +12 -0
- package/engine/internal/unit+transport.lua +102 -0
- package/engine/internal/unit-missile-data.d.ts +2 -0
- package/engine/internal/unit-missile-data.lua +107 -0
- package/engine/internal/unit-missile-launch.d.ts +7 -0
- package/engine/internal/unit-missile-launch.lua +32 -0
- package/engine/internal/unit.d.ts +312 -0
- package/engine/internal/unit.lua +2430 -0
- package/engine/internal/utility.d.ts +2 -0
- package/engine/internal/utility.lua +13 -0
- package/engine/lightning.d.ts +51 -0
- package/engine/lightning.lua +303 -0
- package/engine/local-client.d.ts +16 -0
- package/engine/local-client.lua +86 -0
- package/engine/object-data/auxiliary/animation-name.d.ts +14 -0
- package/engine/object-data/auxiliary/animation-name.lua +2 -0
- package/engine/object-data/auxiliary/animation-qualifier.d.ts +53 -0
- package/engine/object-data/auxiliary/animation-qualifier.lua +2 -0
- package/engine/object-data/auxiliary/armor-sound-type.d.ts +8 -0
- package/engine/object-data/auxiliary/armor-sound-type.lua +2 -0
- package/engine/object-data/auxiliary/attachment-preset.d.ts +15 -0
- package/engine/object-data/auxiliary/attachment-preset.lua +29 -0
- package/engine/object-data/auxiliary/attack-type.d.ts +11 -0
- package/engine/object-data/auxiliary/attack-type.lua +2 -0
- package/engine/object-data/auxiliary/buff-polarity.d.ts +6 -0
- package/engine/object-data/auxiliary/buff-polarity.lua +2 -0
- package/engine/object-data/auxiliary/buff-resistance-type.d.ts +6 -0
- package/engine/object-data/auxiliary/buff-resistance-type.lua +2 -0
- package/engine/object-data/auxiliary/combat-classification.d.ts +46 -0
- package/engine/object-data/auxiliary/combat-classification.lua +206 -0
- package/engine/object-data/auxiliary/detection-type.d.ts +7 -0
- package/engine/object-data/auxiliary/detection-type.lua +2 -0
- package/engine/object-data/auxiliary/model-node-name.d.ts +12 -0
- package/engine/object-data/auxiliary/model-node-name.lua +2 -0
- package/engine/object-data/auxiliary/model-node-qualifier.d.ts +21 -0
- package/engine/object-data/auxiliary/model-node-qualifier.lua +2 -0
- package/engine/object-data/auxiliary/movement-type.d.ts +10 -0
- package/engine/object-data/auxiliary/movement-type.lua +2 -0
- package/engine/object-data/auxiliary/race.d.ts +14 -0
- package/engine/object-data/auxiliary/race.lua +2 -0
- package/engine/object-data/auxiliary/sound-preset-name.d.ts +8 -0
- package/engine/object-data/auxiliary/sound-preset-name.lua +2 -0
- package/engine/object-data/auxiliary/sound-set-name.d.ts +35 -0
- package/engine/object-data/auxiliary/sound-set-name.lua +2 -0
- package/engine/object-data/auxiliary/targeting-type.d.ts +8 -0
- package/engine/object-data/auxiliary/targeting-type.lua +2 -0
- package/engine/object-data/auxiliary/tech-tree-dependency.d.ts +16 -0
- package/engine/object-data/auxiliary/tech-tree-dependency.lua +8 -0
- package/engine/object-data/auxiliary/unit-classification.d.ts +19 -0
- package/engine/object-data/auxiliary/unit-classification.lua +50 -0
- package/engine/object-data/auxiliary/weapon-sound-type.d.ts +17 -0
- package/engine/object-data/auxiliary/weapon-sound-type.lua +2 -0
- package/engine/object-data/entry/ability-type/armor-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/armor-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/attribute-increase.d.ts +12 -0
- package/engine/object-data/entry/ability-type/attribute-increase.lua +52 -0
- package/engine/object-data/entry/ability-type/auto-attack-damage-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/auto-attack-damage-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/auto-attack-heal-reduction-effect.d.ts +12 -0
- package/engine/object-data/entry/ability-type/auto-attack-heal-reduction-effect.lua +52 -0
- package/engine/object-data/entry/ability-type/auto-attack-speed-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/auto-attack-speed-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/bash.d.ts +16 -0
- package/engine/object-data/entry/ability-type/bash.lua +78 -0
- package/engine/object-data/entry/ability-type/berserk.d.ts +10 -0
- package/engine/object-data/entry/ability-type/berserk.lua +39 -0
- package/engine/object-data/entry/ability-type/blank-configurable.d.ts +21 -0
- package/engine/object-data/entry/ability-type/blank-configurable.lua +249 -0
- package/engine/object-data/entry/ability-type/blank-passive.d.ts +7 -0
- package/engine/object-data/entry/ability-type/blank-passive.lua +28 -0
- package/engine/object-data/entry/ability-type/blizzard.d.ts +16 -0
- package/engine/object-data/entry/ability-type/blizzard.lua +78 -0
- package/engine/object-data/entry/ability-type/blood-lust.d.ts +12 -0
- package/engine/object-data/entry/ability-type/blood-lust.lua +52 -0
- package/engine/object-data/entry/ability-type/chain-lightning.d.ts +12 -0
- package/engine/object-data/entry/ability-type/chain-lightning.lua +52 -0
- package/engine/object-data/entry/ability-type/channel.d.ts +48 -0
- package/engine/object-data/entry/ability-type/channel.lua +140 -0
- package/engine/object-data/entry/ability-type/charge-gold-and-lumber.d.ts +14 -0
- package/engine/object-data/entry/ability-type/charge-gold-and-lumber.lua +65 -0
- package/engine/object-data/entry/ability-type/cleaving-attack.d.ts +8 -0
- package/engine/object-data/entry/ability-type/cleaving-attack.lua +26 -0
- package/engine/object-data/entry/ability-type/cluster-rockets.d.ts +18 -0
- package/engine/object-data/entry/ability-type/cluster-rockets.lua +91 -0
- package/engine/object-data/entry/ability-type/cripple.d.ts +12 -0
- package/engine/object-data/entry/ability-type/cripple.lua +52 -0
- package/engine/object-data/entry/ability-type/critical-strike.d.ts +18 -0
- package/engine/object-data/entry/ability-type/critical-strike.lua +91 -0
- package/engine/object-data/entry/ability-type/curse.d.ts +8 -0
- package/engine/object-data/entry/ability-type/curse.lua +26 -0
- package/engine/object-data/entry/ability-type/dark-summoning.d.ts +10 -0
- package/engine/object-data/entry/ability-type/dark-summoning.lua +39 -0
- package/engine/object-data/entry/ability-type/death-coil.d.ts +8 -0
- package/engine/object-data/entry/ability-type/death-coil.lua +26 -0
- package/engine/object-data/entry/ability-type/disease-cloud.d.ts +15 -0
- package/engine/object-data/entry/ability-type/disease-cloud.lua +65 -0
- package/engine/object-data/entry/ability-type/divine-shield.d.ts +5 -0
- package/engine/object-data/entry/ability-type/divine-shield.lua +12 -0
- package/engine/object-data/entry/ability-type/endurance-aura.d.ts +10 -0
- package/engine/object-data/entry/ability-type/endurance-aura.lua +39 -0
- package/engine/object-data/entry/ability-type/engineering-upgrade.d.ts +13 -0
- package/engine/object-data/entry/ability-type/engineering-upgrade.lua +88 -0
- package/engine/object-data/entry/ability-type/evasion.d.ts +8 -0
- package/engine/object-data/entry/ability-type/evasion.lua +26 -0
- package/engine/object-data/entry/ability-type/faerie-fire.d.ts +10 -0
- package/engine/object-data/entry/ability-type/faerie-fire.lua +39 -0
- package/engine/object-data/entry/ability-type/far-sight.d.ts +9 -0
- package/engine/object-data/entry/ability-type/far-sight.lua +26 -0
- package/engine/object-data/entry/ability-type/feral-spirit.d.ts +11 -0
- package/engine/object-data/entry/ability-type/feral-spirit.lua +39 -0
- package/engine/object-data/entry/ability-type/frenzy.d.ts +12 -0
- package/engine/object-data/entry/ability-type/frenzy.lua +52 -0
- package/engine/object-data/entry/ability-type/frost-nova.d.ts +12 -0
- package/engine/object-data/entry/ability-type/frost-nova.lua +52 -0
- package/engine/object-data/entry/ability-type/ghost-visible.d.ts +10 -0
- package/engine/object-data/entry/ability-type/ghost-visible.lua +39 -0
- package/engine/object-data/entry/ability-type/gold-mine.d.ts +12 -0
- package/engine/object-data/entry/ability-type/gold-mine.lua +52 -0
- package/engine/object-data/entry/ability-type/heal.d.ts +8 -0
- package/engine/object-data/entry/ability-type/heal.lua +26 -0
- package/engine/object-data/entry/ability-type/healing-salve.d.ts +22 -0
- package/engine/object-data/entry/ability-type/healing-salve.lua +78 -0
- package/engine/object-data/entry/ability-type/healing-spray.d.ts +18 -0
- package/engine/object-data/entry/ability-type/healing-spray.lua +91 -0
- package/engine/object-data/entry/ability-type/healing-wave.d.ts +12 -0
- package/engine/object-data/entry/ability-type/healing-wave.lua +52 -0
- package/engine/object-data/entry/ability-type/holy-light.d.ts +8 -0
- package/engine/object-data/entry/ability-type/holy-light.lua +26 -0
- package/engine/object-data/entry/ability-type/incinerate.d.ts +18 -0
- package/engine/object-data/entry/ability-type/incinerate.lua +91 -0
- package/engine/object-data/entry/ability-type/inner-fire.d.ts +14 -0
- package/engine/object-data/entry/ability-type/inner-fire.lua +65 -0
- package/engine/object-data/entry/ability-type/inventory.d.ts +16 -0
- package/engine/object-data/entry/ability-type/inventory.lua +78 -0
- package/engine/object-data/entry/ability-type/invulnerable.d.ts +5 -0
- package/engine/object-data/entry/ability-type/invulnerable.lua +12 -0
- package/engine/object-data/entry/ability-type/lightning-shield.d.ts +8 -0
- package/engine/object-data/entry/ability-type/lightning-shield.lua +26 -0
- package/engine/object-data/entry/ability-type/movement-speed-increase.d.ts +8 -0
- package/engine/object-data/entry/ability-type/movement-speed-increase.lua +26 -0
- package/engine/object-data/entry/ability-type/permanent-immolation.d.ts +8 -0
- package/engine/object-data/entry/ability-type/permanent-immolation.lua +26 -0
- package/engine/object-data/entry/ability-type/phoenix-morph.d.ts +25 -0
- package/engine/object-data/entry/ability-type/phoenix-morph.lua +130 -0
- package/engine/object-data/entry/ability-type/recall.d.ts +10 -0
- package/engine/object-data/entry/ability-type/recall.lua +39 -0
- package/engine/object-data/entry/ability-type/rejuvenation.d.ts +20 -0
- package/engine/object-data/entry/ability-type/rejuvenation.lua +65 -0
- package/engine/object-data/entry/ability-type/searing-arrows.d.ts +8 -0
- package/engine/object-data/entry/ability-type/searing-arrows.lua +26 -0
- package/engine/object-data/entry/ability-type/shock-wave.d.ts +10 -0
- package/engine/object-data/entry/ability-type/shock-wave.lua +39 -0
- package/engine/object-data/entry/ability-type/slow-poison.d.ts +12 -0
- package/engine/object-data/entry/ability-type/slow-poison.lua +52 -0
- package/engine/object-data/entry/ability-type/slow.d.ts +12 -0
- package/engine/object-data/entry/ability-type/slow.lua +52 -0
- package/engine/object-data/entry/ability-type/spell-damage-reduction.d.ts +10 -0
- package/engine/object-data/entry/ability-type/spell-damage-reduction.lua +39 -0
- package/engine/object-data/entry/ability-type/spiked-carapace.d.ts +12 -0
- package/engine/object-data/entry/ability-type/spiked-carapace.lua +52 -0
- package/engine/object-data/entry/ability-type/spirit-touch.d.ts +14 -0
- package/engine/object-data/entry/ability-type/spirit-touch.lua +65 -0
- package/engine/object-data/entry/ability-type/storm-bolt.d.ts +8 -0
- package/engine/object-data/entry/ability-type/storm-bolt.lua +26 -0
- package/engine/object-data/entry/ability-type/summon-quilbeast.d.ts +11 -0
- package/engine/object-data/entry/ability-type/summon-quilbeast.lua +39 -0
- package/engine/object-data/entry/ability-type/summon-water-elemental.d.ts +11 -0
- package/engine/object-data/entry/ability-type/summon-water-elemental.lua +39 -0
- package/engine/object-data/entry/ability-type.d.ts +148 -0
- package/engine/object-data/entry/ability-type.lua +1058 -0
- package/engine/object-data/entry/buff-type/applicable.d.ts +16 -0
- package/engine/object-data/entry/buff-type/applicable.lua +377 -0
- package/engine/object-data/entry/buff-type/blank.d.ts +8 -0
- package/engine/object-data/entry/buff-type/blank.lua +17 -0
- package/engine/object-data/entry/buff-type.d.ts +64 -0
- package/engine/object-data/entry/buff-type.lua +316 -0
- package/engine/object-data/entry/destructible-type.d.ts +21 -0
- package/engine/object-data/entry/destructible-type.lua +83 -0
- package/engine/object-data/entry/item-type/blank.d.ts +8 -0
- package/engine/object-data/entry/item-type/blank.lua +21 -0
- package/engine/object-data/entry/item-type.d.ts +49 -0
- package/engine/object-data/entry/item-type.lua +259 -0
- package/engine/object-data/entry/lightning-type.d.ts +37 -0
- package/engine/object-data/entry/lightning-type.lua +191 -0
- package/engine/object-data/entry/unit-type/blank.d.ts +6 -0
- package/engine/object-data/entry/unit-type/blank.lua +13 -0
- package/engine/object-data/entry/unit-type.d.ts +218 -0
- package/engine/object-data/entry/unit-type.lua +1306 -0
- package/engine/object-data/entry/upgrade/blank.d.ts +8 -0
- package/engine/object-data/entry/upgrade/blank.lua +22 -0
- package/engine/object-data/entry/upgrade.d.ts +59 -0
- package/engine/object-data/entry/upgrade.lua +238 -0
- package/engine/object-data/entry.d.ts +80 -0
- package/engine/object-data/entry.lua +634 -0
- package/engine/object-data/utility/object-data-entry-id-generator.d.ts +6 -0
- package/engine/object-data/utility/object-data-entry-id-generator.lua +63 -0
- package/engine/object-data/utility/order-type-string-id-factory.d.ts +9 -0
- package/engine/object-data/utility/order-type-string-id-factory.lua +368 -0
- package/engine/object-field/ability.d.ts +115 -0
- package/engine/object-field/ability.lua +471 -0
- package/engine/object-field/unit.d.ts +15 -0
- package/engine/object-field/unit.lua +49 -0
- package/engine/object-field.d.ts +84 -0
- package/engine/object-field.lua +444 -0
- package/engine/random.d.ts +10 -0
- package/engine/random.lua +9 -0
- package/engine/standard/entries/ability-type.d.ts +8 -0
- package/engine/standard/entries/ability-type.lua +8 -0
- package/engine/standard/entries/lightning-type.d.ts +16 -0
- package/engine/standard/entries/lightning-type.lua +16 -0
- package/engine/standard/entries/unit-type.d.ts +63 -0
- package/engine/standard/entries/unit-type.lua +63 -0
- package/engine/standard/entries/upgrade.d.ts +92 -0
- package/engine/standard/entries/upgrade.lua +92 -0
- package/engine/standard/fields/ability.d.ts +737 -0
- package/engine/standard/fields/ability.lua +749 -0
- package/engine/standard/pathing-textures.d.ts +6 -0
- package/engine/standard/pathing-textures.lua +7 -0
- package/engine/text-tag.d.ts +25 -0
- package/engine/text-tag.lua +109 -0
- package/engine/unit.d.ts +20 -0
- package/engine/unit.lua +31 -0
- package/event.d.ts +53 -0
- package/event.lua +269 -0
- package/exception.d.ts +17 -0
- package/exception.lua +53 -0
- package/file.d.ts +4 -0
- package/file.lua +42 -0
- package/global/math.d.ts +21 -0
- package/global/math.lua +72 -0
- package/global/vec2.d.ts +66 -0
- package/global/vec2.lua +159 -0
- package/index.d.ts +8 -0
- package/index.lua +9 -0
- package/lualib_bundle.lua +2629 -0
- package/math/vec2.d.ts +18 -0
- package/math/vec2.lua +42 -0
- package/math.d.ts +39 -0
- package/math.lua +91 -0
- package/net/signal.d.ts +11 -0
- package/net/signal.lua +56 -0
- package/net/socket.d.ts +9 -0
- package/net/socket.lua +26 -0
- package/network.d.ts +31 -0
- package/network.lua +194 -0
- package/objutil/ability.d.ts +710 -0
- package/objutil/ability.lua +3781 -0
- package/objutil/buff.d.ts +110 -0
- package/objutil/buff.lua +769 -0
- package/objutil/dummy.d.ts +2 -0
- package/objutil/dummy.lua +49 -0
- package/objutil/idgen.d.ts +9 -0
- package/objutil/idgen.lua +92 -0
- package/objutil/item.d.ts +38 -0
- package/objutil/item.lua +254 -0
- package/objutil/object.d.ts +43 -0
- package/objutil/object.lua +213 -0
- package/objutil/unit.d.ts +134 -0
- package/objutil/unit.lua +913 -0
- package/objutil/upgrade.d.ts +22 -0
- package/objutil/upgrade.lua +127 -0
- package/operation.d.ts +35 -0
- package/operation.lua +179 -0
- package/package.json +47 -0
- package/patch-lualib.d.ts +2 -0
- package/patch-lualib.lua +67 -0
- package/patch-natives.d.ts +11 -0
- package/patch-natives.lua +14 -0
- package/string.d.ts +106 -0
- package/string.lua +34 -0
- package/time/dayOfWeek.d.ts +97 -0
- package/time/dayOfWeek.lua +53 -0
- package/time/localDate.d.ts +145 -0
- package/time/localDate.lua +236 -0
- package/time/localDateTime.d.ts +133 -0
- package/time/localDateTime.lua +154 -0
- package/time/localTime.d.ts +87 -0
- package/time/localTime.lua +91 -0
- package/time/month.d.ts +146 -0
- package/time/month.lua +129 -0
- package/time/year.d.ts +117 -0
- package/time/year.lua +81 -0
- package/types.d.ts +13 -0
- package/types.lua +0 -0
- package/util/objectPool.d.ts +6 -0
- package/util/objectPool.lua +28 -0
- package/util/stream.d.ts +29 -0
- package/util/stream.lua +453 -0
- package/util/stringBuilder.d.ts +8 -0
- package/util/stringBuilder.lua +25 -0
- package/utility/arrays.d.ts +57 -0
- package/utility/arrays.lua +369 -0
- package/utility/base64.d.ts +23 -0
- package/utility/base64.lua +177 -0
- package/utility/bit-set.d.ts +18 -0
- package/utility/bit-set.lua +12 -0
- package/utility/functions.d.ts +5 -0
- package/utility/functions.lua +90 -0
- package/utility/json.d.ts +2 -0
- package/utility/json.lua +400 -0
- package/utility/linked-set.d.ts +49 -0
- package/utility/linked-set.lua +181 -0
- package/utility/lua-maps.d.ts +6 -0
- package/utility/lua-maps.lua +25 -0
- package/utility/lua-sets.d.ts +6 -0
- package/utility/lua-sets.lua +37 -0
- package/utility/lzw.d.ts +2 -0
- package/utility/lzw.lua +161 -0
- package/utility/observable-array.d.ts +17 -0
- package/utility/observable-array.lua +30 -0
- package/utility/preconditions.d.ts +23 -0
- package/utility/preconditions.lua +58 -0
- package/utility/records.d.ts +3 -0
- package/utility/records.lua +9 -0
- package/utility/reflection.d.ts +4 -0
- package/utility/reflection.lua +31 -0
- package/utility/strings.d.ts +2 -0
- package/utility/strings.lua +44 -0
- package/utility/types.d.ts +39 -0
- package/utility/types.lua +2 -0
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
+
local __TS__New = ____lualib.__TS__New
|
|
4
|
+
local ____exports = {}
|
|
5
|
+
local ____linked_2Dset = require("utility.linked-set")
|
|
6
|
+
local LinkedSet = ____linked_2Dset.LinkedSet
|
|
7
|
+
local orderTypeStringIdsByTargetingType = {
|
|
8
|
+
[0] = {
|
|
9
|
+
"innerfireoff",
|
|
10
|
+
"innerfireon",
|
|
11
|
+
"healoff",
|
|
12
|
+
"healon",
|
|
13
|
+
"frostarmoroff",
|
|
14
|
+
"frostarmoron",
|
|
15
|
+
"autodispeloff",
|
|
16
|
+
"autodispelon",
|
|
17
|
+
"bloodlustoff",
|
|
18
|
+
"bloodluston",
|
|
19
|
+
"webon",
|
|
20
|
+
"weboff",
|
|
21
|
+
"blackarrowoff",
|
|
22
|
+
"blackarrowon",
|
|
23
|
+
"carrionscarabs",
|
|
24
|
+
"carrionscarabsinstant",
|
|
25
|
+
"carrionscarabsoff",
|
|
26
|
+
"carrionscarabson",
|
|
27
|
+
"curseoff",
|
|
28
|
+
"curseon",
|
|
29
|
+
"faeriefireoff",
|
|
30
|
+
"faeriefireon",
|
|
31
|
+
"frenzy",
|
|
32
|
+
"frenzyoff",
|
|
33
|
+
"frenzyon",
|
|
34
|
+
"incineratearrowoff",
|
|
35
|
+
"incineratearrowon",
|
|
36
|
+
"repairoff",
|
|
37
|
+
"repairon",
|
|
38
|
+
"renewoff",
|
|
39
|
+
"renewon",
|
|
40
|
+
"spellstealoff",
|
|
41
|
+
"spellstealon",
|
|
42
|
+
"slowoff",
|
|
43
|
+
"slowon",
|
|
44
|
+
"parasiteoff",
|
|
45
|
+
"parasiteon",
|
|
46
|
+
"raisedead",
|
|
47
|
+
"raisedeadoff",
|
|
48
|
+
"raisedeadon",
|
|
49
|
+
"rechargeoff",
|
|
50
|
+
"rechargeon",
|
|
51
|
+
"replenishlifeoff",
|
|
52
|
+
"replenishlifeon",
|
|
53
|
+
"replenishmanaoff",
|
|
54
|
+
"replenishmanaon",
|
|
55
|
+
"replenishoff",
|
|
56
|
+
"replenishon",
|
|
57
|
+
"phaseshift",
|
|
58
|
+
"phaseshiftinstant",
|
|
59
|
+
"phaseshiftoff",
|
|
60
|
+
"phaseshifton",
|
|
61
|
+
"whirlwind",
|
|
62
|
+
"animatedead",
|
|
63
|
+
"wateryminion",
|
|
64
|
+
"waterelemental",
|
|
65
|
+
"avatar",
|
|
66
|
+
"battleroar",
|
|
67
|
+
"bearform",
|
|
68
|
+
"berserk",
|
|
69
|
+
"cannibalize",
|
|
70
|
+
"burrow",
|
|
71
|
+
"chemicalrage",
|
|
72
|
+
"creepanimatedead",
|
|
73
|
+
"creephealoff",
|
|
74
|
+
"creephealon",
|
|
75
|
+
"creepthunderclap",
|
|
76
|
+
"windwalk",
|
|
77
|
+
"defend",
|
|
78
|
+
"fanofknives",
|
|
79
|
+
"divineshield",
|
|
80
|
+
"unsubmerge",
|
|
81
|
+
"howlofterror",
|
|
82
|
+
"militia",
|
|
83
|
+
"militiaconvert",
|
|
84
|
+
"militiaoff",
|
|
85
|
+
"militiaunconvert",
|
|
86
|
+
"metamorphosis",
|
|
87
|
+
"mirrorimage",
|
|
88
|
+
"resurrection",
|
|
89
|
+
"submerge",
|
|
90
|
+
"taunt",
|
|
91
|
+
"coupletarget",
|
|
92
|
+
"coupleinstant",
|
|
93
|
+
"elementalfury",
|
|
94
|
+
"ambush",
|
|
95
|
+
"etherealform",
|
|
96
|
+
"unetherealform",
|
|
97
|
+
"undivineshield",
|
|
98
|
+
"undefend",
|
|
99
|
+
"unburrow",
|
|
100
|
+
"tranquility",
|
|
101
|
+
"unavatar",
|
|
102
|
+
"thunderclap",
|
|
103
|
+
"voodoo",
|
|
104
|
+
"lavamonster",
|
|
105
|
+
"locustswarm",
|
|
106
|
+
"magicdefense",
|
|
107
|
+
"magicundefense",
|
|
108
|
+
"manaflareoff",
|
|
109
|
+
"manaflareon",
|
|
110
|
+
"manashieldoff",
|
|
111
|
+
"manashieldon",
|
|
112
|
+
"battlestations",
|
|
113
|
+
"immolation",
|
|
114
|
+
"loadarcher",
|
|
115
|
+
"mounthippogryph",
|
|
116
|
+
"coupletarget",
|
|
117
|
+
"ensnareon",
|
|
118
|
+
"ensnareoff",
|
|
119
|
+
"vengeanceoff",
|
|
120
|
+
"vengeanceon",
|
|
121
|
+
"spiritofvengeance",
|
|
122
|
+
"spiritwolf",
|
|
123
|
+
"selfdestructoff",
|
|
124
|
+
"selfdestructon",
|
|
125
|
+
"stomp",
|
|
126
|
+
"stoneform",
|
|
127
|
+
"starfall",
|
|
128
|
+
"townbelloff",
|
|
129
|
+
"townbellon",
|
|
130
|
+
"unimmolation",
|
|
131
|
+
"unstoneform",
|
|
132
|
+
"unwindwalk",
|
|
133
|
+
"vengeance",
|
|
134
|
+
"vengeanceinstant",
|
|
135
|
+
"unrobogoblin",
|
|
136
|
+
"robogoblin",
|
|
137
|
+
"roar",
|
|
138
|
+
"summongrizzly",
|
|
139
|
+
"summonphoenix",
|
|
140
|
+
"summonquillbeast",
|
|
141
|
+
"summonwareagle",
|
|
142
|
+
"unloadallcorpses",
|
|
143
|
+
"unravenform",
|
|
144
|
+
"ravenform",
|
|
145
|
+
"poisonarrows",
|
|
146
|
+
"unpoisonarrows",
|
|
147
|
+
"unflamingarrows",
|
|
148
|
+
"flamingarrows",
|
|
149
|
+
"flamingattack",
|
|
150
|
+
"unflamingattack",
|
|
151
|
+
"coldarrows",
|
|
152
|
+
"uncoldarrows",
|
|
153
|
+
"unbearform",
|
|
154
|
+
"returnresources",
|
|
155
|
+
"loadcorpse",
|
|
156
|
+
"loadcorpseinstant",
|
|
157
|
+
"scout",
|
|
158
|
+
"revive",
|
|
159
|
+
"awaken",
|
|
160
|
+
"ancestralspirit",
|
|
161
|
+
"entangleinstant",
|
|
162
|
+
"mechanicalcritter",
|
|
163
|
+
"barkskinoff",
|
|
164
|
+
"barkskinon",
|
|
165
|
+
"unroot",
|
|
166
|
+
"spirittroll",
|
|
167
|
+
"standdown",
|
|
168
|
+
"corporealform",
|
|
169
|
+
"uncorporealform",
|
|
170
|
+
"unloadallinstant",
|
|
171
|
+
"autoentangleinstant",
|
|
172
|
+
"undeadbuild",
|
|
173
|
+
"orcbuild",
|
|
174
|
+
"humanbuild",
|
|
175
|
+
"nagabuild",
|
|
176
|
+
"nightelfbuild",
|
|
177
|
+
"restorationoff",
|
|
178
|
+
"restorationon",
|
|
179
|
+
"mount",
|
|
180
|
+
"dismount",
|
|
181
|
+
"phoenixmorph"
|
|
182
|
+
},
|
|
183
|
+
[1] = {
|
|
184
|
+
"innerfire",
|
|
185
|
+
"heal",
|
|
186
|
+
"frostarmor",
|
|
187
|
+
"autodispel",
|
|
188
|
+
"bloodlust",
|
|
189
|
+
"web",
|
|
190
|
+
"blackarrow",
|
|
191
|
+
"curse",
|
|
192
|
+
"faeriefire",
|
|
193
|
+
"incineratearrow",
|
|
194
|
+
"repair",
|
|
195
|
+
"renew",
|
|
196
|
+
"spellsteal",
|
|
197
|
+
"slow",
|
|
198
|
+
"parasite",
|
|
199
|
+
"recharge",
|
|
200
|
+
"replenishmana",
|
|
201
|
+
"replenish",
|
|
202
|
+
"replenishlife",
|
|
203
|
+
"absorb",
|
|
204
|
+
"acidbomb",
|
|
205
|
+
"acolyteharvest",
|
|
206
|
+
"antimagicshell",
|
|
207
|
+
"banish",
|
|
208
|
+
"cripple",
|
|
209
|
+
"cyclone",
|
|
210
|
+
"darkritual",
|
|
211
|
+
"charm",
|
|
212
|
+
"chainlightning",
|
|
213
|
+
"creepdevour",
|
|
214
|
+
"creepheal",
|
|
215
|
+
"creepthunderbolt",
|
|
216
|
+
"darkconversion",
|
|
217
|
+
"deathcoil",
|
|
218
|
+
"deathpact",
|
|
219
|
+
"devour",
|
|
220
|
+
"doom",
|
|
221
|
+
"sleep",
|
|
222
|
+
"soulburn",
|
|
223
|
+
"soulpreservation",
|
|
224
|
+
"forkedlightning",
|
|
225
|
+
"wispharvest",
|
|
226
|
+
"eattree",
|
|
227
|
+
"drunkenhaze",
|
|
228
|
+
"grabtree",
|
|
229
|
+
"hex",
|
|
230
|
+
"healingwave",
|
|
231
|
+
"polymorph",
|
|
232
|
+
"harvest",
|
|
233
|
+
"invisibility",
|
|
234
|
+
"manaburn",
|
|
235
|
+
"possession",
|
|
236
|
+
"firebolt",
|
|
237
|
+
"fingerofdeath",
|
|
238
|
+
"frostnova",
|
|
239
|
+
"shadowstrike",
|
|
240
|
+
"unholyfrenzy",
|
|
241
|
+
"rejuvination",
|
|
242
|
+
"purge",
|
|
243
|
+
"controlmagic",
|
|
244
|
+
"transmute",
|
|
245
|
+
"thunderbolt",
|
|
246
|
+
"holybolt",
|
|
247
|
+
"lightningshield",
|
|
248
|
+
"magicleash",
|
|
249
|
+
"mindrot",
|
|
250
|
+
"entanglingroots",
|
|
251
|
+
"ensnare",
|
|
252
|
+
"spiritlink",
|
|
253
|
+
"unstableconcoction",
|
|
254
|
+
"poisonarrowstarg",
|
|
255
|
+
"flamingarrowstarg",
|
|
256
|
+
"flamingattacktarg",
|
|
257
|
+
"coldarrowstarg",
|
|
258
|
+
"load",
|
|
259
|
+
"sacrifice",
|
|
260
|
+
"sentinel",
|
|
261
|
+
"ancestralspirittarget",
|
|
262
|
+
"entangle",
|
|
263
|
+
"drain",
|
|
264
|
+
"shadowsight",
|
|
265
|
+
"steal",
|
|
266
|
+
"unsummon",
|
|
267
|
+
"sanctuary",
|
|
268
|
+
"preservation",
|
|
269
|
+
"autoentangle"
|
|
270
|
+
},
|
|
271
|
+
[2] = {
|
|
272
|
+
"blink",
|
|
273
|
+
"blizzard",
|
|
274
|
+
"cloudoffog",
|
|
275
|
+
"clusterrockets",
|
|
276
|
+
"darkportal",
|
|
277
|
+
"darksummoning",
|
|
278
|
+
"deathanddecay",
|
|
279
|
+
"detonate",
|
|
280
|
+
"devourmagic",
|
|
281
|
+
"dispel",
|
|
282
|
+
"dreadlordinferno",
|
|
283
|
+
"earthquake",
|
|
284
|
+
"flare",
|
|
285
|
+
"forceofnature",
|
|
286
|
+
"healingspray",
|
|
287
|
+
"healingward",
|
|
288
|
+
"inferno",
|
|
289
|
+
"monsoon",
|
|
290
|
+
"flamestrike",
|
|
291
|
+
"farsight",
|
|
292
|
+
"evileye",
|
|
293
|
+
"silence",
|
|
294
|
+
"stasistrap",
|
|
295
|
+
"volcano",
|
|
296
|
+
"tornado",
|
|
297
|
+
"rainofchaos",
|
|
298
|
+
"rainoffire",
|
|
299
|
+
"summonfactory",
|
|
300
|
+
"unload",
|
|
301
|
+
"disenchant",
|
|
302
|
+
"root",
|
|
303
|
+
"ward",
|
|
304
|
+
"unloadall"
|
|
305
|
+
},
|
|
306
|
+
[3] = {
|
|
307
|
+
"breathoffire",
|
|
308
|
+
"breathoffrost",
|
|
309
|
+
"carrionswarm",
|
|
310
|
+
"massteleport",
|
|
311
|
+
"impale",
|
|
312
|
+
"shockwave",
|
|
313
|
+
"stampede",
|
|
314
|
+
"selfdestruct",
|
|
315
|
+
"setrally",
|
|
316
|
+
"patrol",
|
|
317
|
+
"dropitem"
|
|
318
|
+
},
|
|
319
|
+
[4] = {
|
|
320
|
+
"attributemodskill",
|
|
321
|
+
"auraunholy",
|
|
322
|
+
"auravampiric",
|
|
323
|
+
"corrosivebreath",
|
|
324
|
+
"freezingbreath",
|
|
325
|
+
"phoenixfire"
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
local targetingTypeByOrderTypeStringId = {}
|
|
329
|
+
for targetingType, orderTypeStringIds in pairs(orderTypeStringIdsByTargetingType) do
|
|
330
|
+
for ____, orderTypeStringId in ipairs(orderTypeStringIds) do
|
|
331
|
+
targetingTypeByOrderTypeStringId[orderTypeStringId] = targetingType
|
|
332
|
+
end
|
|
333
|
+
end
|
|
334
|
+
____exports.OrderTypeStringIdFactory = __TS__Class()
|
|
335
|
+
local OrderTypeStringIdFactory = ____exports.OrderTypeStringIdFactory
|
|
336
|
+
OrderTypeStringIdFactory.name = "OrderTypeStringIdFactory"
|
|
337
|
+
function OrderTypeStringIdFactory.prototype.____constructor(self)
|
|
338
|
+
self.positionByTargetingType = {}
|
|
339
|
+
self.recycleQueueByTargetingType = {}
|
|
340
|
+
end
|
|
341
|
+
function OrderTypeStringIdFactory.prototype.next(self, targetingType)
|
|
342
|
+
local recycleQueue = self.recycleQueueByTargetingType[targetingType]
|
|
343
|
+
if recycleQueue ~= nil then
|
|
344
|
+
local orderString = recycleQueue:first()
|
|
345
|
+
if orderString ~= nil then
|
|
346
|
+
recycleQueue:remove(orderString)
|
|
347
|
+
return orderString
|
|
348
|
+
end
|
|
349
|
+
end
|
|
350
|
+
local orderStrings = orderTypeStringIdsByTargetingType[targetingType]
|
|
351
|
+
local position = self.positionByTargetingType[targetingType] or 0
|
|
352
|
+
local orderString = orderStrings[position + 1]
|
|
353
|
+
self.positionByTargetingType[targetingType] = (position + 1) % #orderStrings
|
|
354
|
+
return orderString
|
|
355
|
+
end
|
|
356
|
+
function OrderTypeStringIdFactory.prototype.recycle(self, orderString)
|
|
357
|
+
local targetingType = targetingTypeByOrderTypeStringId[orderString]
|
|
358
|
+
if targetingType ~= nil then
|
|
359
|
+
local recycleQueue = self.recycleQueueByTargetingType[targetingType]
|
|
360
|
+
if recycleQueue == nil then
|
|
361
|
+
recycleQueue = __TS__New(LinkedSet)
|
|
362
|
+
self.recycleQueueByTargetingType[targetingType] = recycleQueue
|
|
363
|
+
end
|
|
364
|
+
recycleQueue:add(orderString)
|
|
365
|
+
end
|
|
366
|
+
end
|
|
367
|
+
____exports.orderTypeStringIdFactory = __TS__New(____exports.OrderTypeStringIdFactory)
|
|
368
|
+
return ____exports
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
/** @noSelfInFile */
|
|
2
|
+
import { Ability } from "../internal/ability";
|
|
3
|
+
import { ObjectArrayField, ObjectField, ObjectFieldValueChangeEvent, ObjectLevelField, ObjectLevelFieldValueChangeEvent, ReadonlyObjectFieldType, ReadonlyObjectLevelFieldType } from "../object-field";
|
|
4
|
+
import { AbilityType, AbilityTypeId } from "../object-data/entry/ability-type";
|
|
5
|
+
import { ObjectDataEntryId } from "../object-data/entry";
|
|
6
|
+
import { LightningTypeId } from "../object-data/entry/lightning-type";
|
|
7
|
+
import { CombatClassifications } from "../object-data/auxiliary/combat-classification";
|
|
8
|
+
import { UnitTypeId } from "../object-data/entry/unit-type";
|
|
9
|
+
export declare abstract class AbilityField<ValueType extends number | string | boolean = number | string | boolean, NativeFieldType = unknown> extends ObjectField<AbilityType, Ability, ValueType, NativeFieldType> {
|
|
10
|
+
protected get instanceClass(): typeof Ability;
|
|
11
|
+
protected getObjectDataEntryId(instance: Ability): AbilityTypeId;
|
|
12
|
+
static get valueChangeEvent(): ObjectFieldValueChangeEvent<ReadonlyObjectFieldType<AbilityField>>;
|
|
13
|
+
}
|
|
14
|
+
export declare class AbilityBooleanField extends AbilityField<boolean, jabilitybooleanfield> {
|
|
15
|
+
protected get defaultValue(): boolean;
|
|
16
|
+
protected getNativeFieldById(id: number): jabilitybooleanfield;
|
|
17
|
+
protected getNativeFieldValue(instance: Ability): boolean;
|
|
18
|
+
protected setNativeFieldValue(instance: Ability, value: boolean): boolean;
|
|
19
|
+
static get valueChangeEvent(): ObjectFieldValueChangeEvent<AbilityBooleanField>;
|
|
20
|
+
}
|
|
21
|
+
export declare abstract class AbilityNumberField<NativeFieldType = unknown> extends AbilityField<number, NativeFieldType> {
|
|
22
|
+
protected get defaultValue(): number;
|
|
23
|
+
static get valueChangeEvent(): ObjectFieldValueChangeEvent<AbilityNumberField>;
|
|
24
|
+
}
|
|
25
|
+
export declare class AbilityFloatField extends AbilityNumberField<jabilityrealfield> {
|
|
26
|
+
protected getNativeFieldById(id: number): jabilityrealfield;
|
|
27
|
+
protected getNativeFieldValue(instance: Ability): number;
|
|
28
|
+
protected setNativeFieldValue(instance: Ability, value: number): boolean;
|
|
29
|
+
static get valueChangeEvent(): ObjectFieldValueChangeEvent<AbilityFloatField>;
|
|
30
|
+
}
|
|
31
|
+
export declare class AbilityIntegerField extends AbilityNumberField<jabilityintegerfield> {
|
|
32
|
+
protected getNativeFieldById(id: number): jabilityintegerfield;
|
|
33
|
+
protected getNativeFieldValue(instance: Ability): number;
|
|
34
|
+
protected setNativeFieldValue(instance: Ability, value: number): boolean;
|
|
35
|
+
static get valueChangeEvent(): ObjectFieldValueChangeEvent<AbilityIntegerField>;
|
|
36
|
+
}
|
|
37
|
+
export declare class AbilityStringField extends AbilityField<string, jabilitystringfield> {
|
|
38
|
+
protected get defaultValue(): string;
|
|
39
|
+
protected getNativeFieldById(id: number): jabilitystringfield;
|
|
40
|
+
protected getNativeFieldValue(instance: Ability): string;
|
|
41
|
+
protected setNativeFieldValue(instance: Ability, value: string): boolean;
|
|
42
|
+
static get valueChangeEvent(): ObjectFieldValueChangeEvent<AbilityStringField>;
|
|
43
|
+
}
|
|
44
|
+
export declare abstract class AbilityArrayField<ValueType extends number | string | boolean = number | string | boolean, NativeFieldType = unknown> extends ObjectArrayField<AbilityType, Ability, ValueType, NativeFieldType> {
|
|
45
|
+
protected get instanceClass(): typeof Ability;
|
|
46
|
+
protected getObjectDataEntryId(instance: Ability): AbilityTypeId;
|
|
47
|
+
}
|
|
48
|
+
export declare class AbilityStringArrayField extends AbilityArrayField<string, jabilitystringlevelfield> {
|
|
49
|
+
protected get defaultValue(): string;
|
|
50
|
+
protected getNativeFieldById(id: number): jabilitystringlevelfield;
|
|
51
|
+
protected getNativeFieldValue(instance: Ability, index: number): string;
|
|
52
|
+
protected setNativeFieldValue(instance: Ability, index: number, value: string): boolean;
|
|
53
|
+
}
|
|
54
|
+
export declare abstract class AbilityObjectDataEntryIdArrayField<T extends ObjectDataEntryId = ObjectDataEntryId> extends AbilityArrayField<T, jabilitystringlevelfield> {
|
|
55
|
+
protected get defaultValue(): T;
|
|
56
|
+
protected getNativeFieldById(id: number): jabilitystringlevelfield;
|
|
57
|
+
protected getNativeFieldValue(instance: Ability, index: number): T;
|
|
58
|
+
protected setNativeFieldValue(instance: Ability, index: number, value: T): boolean;
|
|
59
|
+
}
|
|
60
|
+
export declare class AbilityLightningTypeIdArrayField extends AbilityObjectDataEntryIdArrayField<LightningTypeId> {
|
|
61
|
+
}
|
|
62
|
+
export declare abstract class AbilityLevelField<ValueType extends number | string | boolean = number | string | boolean, InputValueType extends ValueType = never, NativeFieldType = unknown> extends ObjectLevelField<AbilityType, Ability, ValueType, InputValueType, NativeFieldType> {
|
|
63
|
+
protected get instanceClass(): typeof Ability;
|
|
64
|
+
protected getLevelCount(entry: AbilityType | Ability): number;
|
|
65
|
+
protected getObjectDataEntryId(instance: Ability): AbilityTypeId;
|
|
66
|
+
static get valueChangeEvent(): ObjectLevelFieldValueChangeEvent<ReadonlyObjectLevelFieldType<AbilityLevelField>>;
|
|
67
|
+
}
|
|
68
|
+
export declare class AbilityBooleanLevelField extends AbilityLevelField<boolean, boolean, jabilityintegerlevelfield> {
|
|
69
|
+
protected get defaultValue(): boolean;
|
|
70
|
+
protected getNativeFieldById(id: number): jabilityintegerlevelfield;
|
|
71
|
+
protected getNativeFieldValue(instance: Ability, level: number): boolean;
|
|
72
|
+
protected setNativeFieldValue(instance: Ability, level: number, value: boolean): boolean;
|
|
73
|
+
static get valueChangeEvent(): ObjectLevelFieldValueChangeEvent<AbilityBooleanLevelField>;
|
|
74
|
+
}
|
|
75
|
+
export declare abstract class AbilityNumberLevelField<NativeFieldType = unknown> extends AbilityLevelField<number, number, NativeFieldType> {
|
|
76
|
+
protected get defaultValue(): number;
|
|
77
|
+
static get valueChangeEvent(): ObjectLevelFieldValueChangeEvent<AbilityNumberLevelField>;
|
|
78
|
+
}
|
|
79
|
+
export declare class AbilityFloatLevelField extends AbilityNumberLevelField<jabilityreallevelfield> {
|
|
80
|
+
protected getNativeFieldById(id: number): jabilityreallevelfield;
|
|
81
|
+
protected getNativeFieldValue(instance: Ability, level: number): number;
|
|
82
|
+
protected setNativeFieldValue(instance: Ability, level: number, value: number): boolean;
|
|
83
|
+
static get valueChangeEvent(): ObjectLevelFieldValueChangeEvent<AbilityFloatLevelField>;
|
|
84
|
+
}
|
|
85
|
+
export declare class AbilityIntegerLevelField extends AbilityNumberLevelField<jabilityintegerlevelfield> {
|
|
86
|
+
protected getNativeFieldById(id: number): jabilityintegerlevelfield;
|
|
87
|
+
protected getNativeFieldValue(instance: Ability, level: number): number;
|
|
88
|
+
protected setNativeFieldValue(instance: Ability, level: number, value: number): boolean;
|
|
89
|
+
static get valueChangeEvent(): ObjectLevelFieldValueChangeEvent<AbilityIntegerLevelField>;
|
|
90
|
+
}
|
|
91
|
+
export declare class AbilityStringLevelField extends AbilityLevelField<string, string, jabilitystringlevelfield> {
|
|
92
|
+
protected get defaultValue(): string;
|
|
93
|
+
protected getNativeFieldById(id: number): jabilitystringlevelfield;
|
|
94
|
+
protected getNativeFieldValue(instance: Ability, level: number): string;
|
|
95
|
+
protected setNativeFieldValue(instance: Ability, level: number, value: string): boolean;
|
|
96
|
+
static get valueChangeEvent(): ObjectLevelFieldValueChangeEvent<AbilityStringLevelField>;
|
|
97
|
+
}
|
|
98
|
+
export declare abstract class AbilityObjectDataEntryIdLevelField<T extends ObjectDataEntryId = ObjectDataEntryId> extends AbilityLevelField<T, T, jabilitystringlevelfield> {
|
|
99
|
+
protected get defaultValue(): T;
|
|
100
|
+
protected getNativeFieldById(id: number): jabilitystringlevelfield;
|
|
101
|
+
protected getNativeFieldValue(instance: Ability, level: number): T;
|
|
102
|
+
protected setNativeFieldValue(instance: Ability, level: number, value: T): boolean;
|
|
103
|
+
}
|
|
104
|
+
export declare class AbilityAbilityTypeIdLevelField extends AbilityObjectDataEntryIdLevelField<AbilityTypeId> {
|
|
105
|
+
}
|
|
106
|
+
export declare class AbilityUnitTypeIdLevelField extends AbilityObjectDataEntryIdLevelField<UnitTypeId> {
|
|
107
|
+
}
|
|
108
|
+
export declare class AbilityCombatClassificationsLevelField extends AbilityLevelField<CombatClassifications, CombatClassifications, jabilityintegerlevelfield> {
|
|
109
|
+
protected get defaultValue(): CombatClassifications;
|
|
110
|
+
protected getNativeFieldById(id: number): jabilityintegerlevelfield;
|
|
111
|
+
protected getNativeFieldValue(instance: Ability, level: number): CombatClassifications;
|
|
112
|
+
protected setNativeFieldValue(instance: Ability, level: number, value: CombatClassifications): boolean;
|
|
113
|
+
}
|
|
114
|
+
export type AbilityDependentValue<ValueType extends boolean | number | string> = ValueType | AbilityField<ValueType> | AbilityLevelField<ValueType> | ((ability: Ability) => ValueType);
|
|
115
|
+
export declare const resolveCurrentAbilityDependentValue: <ValueType extends string | number | boolean>(ability: Ability, value: AbilityDependentValue<ValueType>) => ValueType;
|