mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-10-08 23:41:06 +00:00
initial commit. This is icculus version 5542b94cae02a6333845854bbbd1abe0a259f1a4
This commit is contained in:
commit
3096eaf5e2
2519 changed files with 816064 additions and 0 deletions
236
game_scripts/scripts/entities/bigblaster.lua
Normal file
236
game_scripts/scripts/entities/bigblaster.lua
Normal file
|
@ -0,0 +1,236 @@
|
|||
-- Copyright (C) 2007, 2010 - Bit-Blot
|
||||
--
|
||||
-- This file is part of Aquaria.
|
||||
--
|
||||
-- Aquaria is free software; you can redistribute it and/or
|
||||
-- modify it under the terms of the GNU General Public License
|
||||
-- as published by the Free Software Foundation; either version 2
|
||||
-- of the License, or (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
--
|
||||
-- See the GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program; if not, write to the Free Software
|
||||
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
if not v then v = {} end
|
||||
if not AQUARIA_VERSION then dofile("scripts/entities/entityinclude.lua") end
|
||||
|
||||
-- ================================================================================================
|
||||
-- B L A S T E R
|
||||
-- ================================================================================================
|
||||
|
||||
-- entity specific
|
||||
local STATE_FIRE = 1000
|
||||
local STATE_PULLBACK = 1001
|
||||
local STATE_WAITING = 1002
|
||||
v.fireDelay = 0
|
||||
v.motherChance = 10
|
||||
v.soundDelay = 0
|
||||
|
||||
v.shotsFired = 0
|
||||
|
||||
v.n = 0
|
||||
|
||||
-- ================================================================================================
|
||||
-- FUNCTIONS
|
||||
-- ================================================================================================
|
||||
|
||||
function init(me)
|
||||
setupBasicEntity(
|
||||
me,
|
||||
"", -- texture
|
||||
100, -- health
|
||||
1, -- manaballamount
|
||||
1, -- exp
|
||||
1, -- money
|
||||
48, -- collideRadius (only used if hit entities is on)
|
||||
STATE_WAITING, -- initState
|
||||
128, -- sprite width
|
||||
128, -- sprite height
|
||||
1, -- particle "explosion" type, maps to particleEffects.txt -1 = none
|
||||
0, -- 0/1 hit other entities off/on (uses collideRadius)
|
||||
2000 -- updateCull -1: disabled, default: 4000
|
||||
)
|
||||
|
||||
entity_initSkeletal(me, "BigBlaster")
|
||||
entity_animate(me, "idle", -1)
|
||||
|
||||
entity_setDeathParticleEffect(me, "Explode")
|
||||
|
||||
entity_scale(me, 1.2, 1.2)
|
||||
|
||||
v.soundDelay = math.random(3)+1
|
||||
|
||||
entity_setEatType(me, EAT_FILE, "Blaster")
|
||||
|
||||
entity_setDeathScene(me, true)
|
||||
loadSound("BossDieSmall")
|
||||
loadSound("BossDieBig")
|
||||
loadSound("BigBlasterRoar")
|
||||
loadSound("BigBlasterLaugh")
|
||||
|
||||
entity_setDamageTarget(me, DT_AVATAR_PET, false)
|
||||
end
|
||||
|
||||
function postInit(me)
|
||||
v.n = getNaija()
|
||||
if isFlag(FLAG_PET_BLASTER, 1) then
|
||||
entity_delete(me)
|
||||
end
|
||||
end
|
||||
|
||||
function update(me, dt)
|
||||
|
||||
if entity_isState(me, STATE_WAITING) then
|
||||
if entity_isEntityInRange(me, getNaija(), 2000) then
|
||||
playSfx("BigBlasterLaugh")
|
||||
shakeCamera(2, 3)
|
||||
entity_setState(me, STATE_IDLE)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if true then
|
||||
if entity_hasTarget(me) then
|
||||
if entity_isTargetInRange(me, 200) then
|
||||
entity_moveTowardsTarget(me, dt, -200)
|
||||
end
|
||||
if entity_isTargetInRange(me, 64) then
|
||||
-- entity_hurtTarget(1);
|
||||
entity_moveTowardsTarget(me, dt, -1000)
|
||||
end
|
||||
end
|
||||
|
||||
if v.fireDelay > 0 then
|
||||
v.fireDelay = v.fireDelay - dt
|
||||
if v.fireDelay < 0 then
|
||||
v.fireDelay = 0
|
||||
end
|
||||
end
|
||||
|
||||
if entity_getState(me)==STATE_IDLE then
|
||||
if not entity_hasTarget(me) then
|
||||
entity_findTarget(me, 1000)
|
||||
else
|
||||
if entity_isTargetInRange(me, 1600) then
|
||||
entity_moveTowardsTarget(me, dt, 400) -- move in if we're too far away
|
||||
if entity_isTargetInRange(me, 350) and v.fireDelay==0 then
|
||||
entity_setState(me, STATE_FIRE)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
v.soundDelay = v.soundDelay - dt
|
||||
if v.soundDelay < 0 then
|
||||
-- Sound doesn't exist, so commenting out. --achurch
|
||||
--entity_playSfx(me, "BlasterIdle")
|
||||
v.soundDelay = math.random(3)+1
|
||||
end
|
||||
end
|
||||
if entity_getState(me)==STATE_FIRE then
|
||||
entity_moveTowardsTarget(me, dt, -600)
|
||||
end
|
||||
if entity_getState(me)==STATE_PULLBACK then
|
||||
if not entity_hasTarget(me) then
|
||||
entity_setState(me, STATE_IDLE)
|
||||
else
|
||||
if entity_isTargetInRange(me, 800) then
|
||||
entity_moveTowardsTarget(me, dt, -5000)
|
||||
else
|
||||
entity_setState(me, STATE_IDLE)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
entity_doEntityAvoidance(me, dt, 256, 0.2)
|
||||
-- entity_doSpellAvoidance(dt, 200, 1.5);
|
||||
entity_doCollisionAvoidance(me, dt, 6, 0.5)
|
||||
entity_rotateToVel(me, 0.1)
|
||||
entity_updateCurrents(me, dt)
|
||||
entity_updateMovement(me, dt)
|
||||
|
||||
entity_handleShotCollisions(me)
|
||||
entity_touchAvatarDamage(me, 32, 0, 1000)
|
||||
end
|
||||
|
||||
function enterState(me)
|
||||
if entity_getState(me)==STATE_IDLE then
|
||||
v.fireDelay = 1
|
||||
entity_setMaxSpeed(me, 600)
|
||||
elseif entity_getState(me)==STATE_FIRE then
|
||||
entity_setStateTime(me, 0.2)
|
||||
entity_setMaxSpeed(me, 800)
|
||||
local s = createShot("BigBlasterFire", me, entity_getTarget(me))
|
||||
shot_setOut(s, 32)
|
||||
elseif entity_getState(me)==STATE_PULLBACK then
|
||||
if chance(50) then
|
||||
shakeCamera(2, 3)
|
||||
playSfx("BigBlasterRoar")
|
||||
end
|
||||
entity_setMaxSpeed(me, 900)
|
||||
elseif entity_isState(me, STATE_DEATHSCENE) then
|
||||
clearShots()
|
||||
entity_setStateTime(me, 99)
|
||||
debugLog("spawning egg")
|
||||
entity_setInvincible(v.n, true)
|
||||
entity_idle(v.n)
|
||||
|
||||
cam_toEntity(me)
|
||||
entity_setInternalOffset(me, 0, 0)
|
||||
entity_setInternalOffset(me, 0, 10, 0.1, -1)
|
||||
playSfx("BossDieSmall")
|
||||
entity_idle(v.n)
|
||||
fade(1, 0.5, 1, 1, 1)
|
||||
watch(0.5)
|
||||
fade(0, 1, 1, 1, 1)
|
||||
watch(0.5)
|
||||
playSfx("BigBlasterLaugh")
|
||||
watch(0.7)
|
||||
entity_color(me, 1, 0, 0, 2)
|
||||
watch(1.0)
|
||||
playSfx("BigBlasterRoar")
|
||||
watch(0.5)
|
||||
playSfx("BossDieBig")
|
||||
fade(1, 0.2, 1, 1, 1)
|
||||
watch(0.2)
|
||||
watch(0.5)
|
||||
fade(0, 1, 1, 1, 1)
|
||||
local node = getNode("EGGLOC")
|
||||
debugLog(string.format("node(%d, %d", node_x(node), node_y(node)))
|
||||
local e = createEntity("CollectibleBlasterEgg", "", node_x(node), node_y(node))
|
||||
cam_toEntity(e)
|
||||
watch(3)
|
||||
cam_toEntity(getNaija())
|
||||
entity_setState(me, STATE_DEAD, -1, 1)
|
||||
end
|
||||
end
|
||||
|
||||
function exitState(me)
|
||||
if entity_getState(me)==STATE_FIRE then
|
||||
v.shotsFired = v.shotsFired + 1
|
||||
if v.shotsFired < 8 then
|
||||
entity_setState(me, STATE_FIRE)
|
||||
else
|
||||
entity_setState(me, STATE_PULLBACK, 1)
|
||||
end
|
||||
|
||||
elseif entity_getState(me)==STATE_PULLBACK then
|
||||
v.shotsFired = 0
|
||||
entity_setState(me, STATE_IDLE)
|
||||
end
|
||||
end
|
||||
|
||||
function hitSurface(me)
|
||||
end
|
||||
|
||||
function damage(me, attacker, bone, damageType, dmg)
|
||||
if damageType == DT_AVATAR_BITE then
|
||||
entity_changeHealth(me, -99)
|
||||
end
|
||||
return true
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue