mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-16 22:59:19 +00:00
117 lines
3 KiB
Lua
117 lines
3 KiB
Lua
|
-- 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
|
||
|
|
||
|
local function hitWatch(tlen)
|
||
|
local h = entity_getHealth(getNaija())
|
||
|
|
||
|
local t = 0
|
||
|
while t < tlen do
|
||
|
watch(FRAME_TIME)
|
||
|
t = t + FRAME_TIME
|
||
|
|
||
|
if entity_getHealth(getNaija()) < h then
|
||
|
return true
|
||
|
end
|
||
|
end
|
||
|
|
||
|
return false
|
||
|
end
|
||
|
|
||
|
local function changeCostume(cost)
|
||
|
|
||
|
setInvincibleOnNested(false)
|
||
|
|
||
|
hideInGameMenu()
|
||
|
|
||
|
esetv(getNaija(), EV_LOOKAT, 0)
|
||
|
entity_idle(getNaija())
|
||
|
|
||
|
entity_animate(getNaija(), "changeCostume")
|
||
|
|
||
|
if hitWatch(0.5) then setInvincibleOnNested(true) return end
|
||
|
|
||
|
fade(1, 0.5)
|
||
|
|
||
|
if hitWatch(1) then fade(0, 0.1) setInvincibleOnNested(true) return end
|
||
|
|
||
|
playSfx("ChangeClothes1")
|
||
|
if hitWatch(1) then fade(0, 0.1) setInvincibleOnNested(true) return end
|
||
|
|
||
|
playSfx("ChangeClothes2")
|
||
|
|
||
|
if hitWatch(0.5) then fade(0, 0.1) setInvincibleOnNested(true) return end
|
||
|
|
||
|
if getCostume()==cost then
|
||
|
setCostume("")
|
||
|
else
|
||
|
setCostume(cost)
|
||
|
end
|
||
|
|
||
|
if hitWatch(0.4) then fade(0, 0.1) setInvincibleOnNested(true) return end
|
||
|
|
||
|
if chance(50) then
|
||
|
if chance(50) then
|
||
|
emote(EMOTE_NAIJASIGH)
|
||
|
else
|
||
|
emote(EMOTE_NAIJAGIGGLE)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
fade(0, 0.5)
|
||
|
if hitWatch(0.5) then fade(0, 0.1) setInvincibleOnNested(true) return end
|
||
|
|
||
|
if hitWatch(0.5) then setInvincibleOnNested(true) return end
|
||
|
|
||
|
setInvincibleOnNested(true)
|
||
|
|
||
|
esetv(getNaija(), EV_LOOKAT, 1)
|
||
|
end
|
||
|
--[[
|
||
|
FLAG_COLLECTIBLE_URCHINCOSTUME = 517
|
||
|
FLAG_COLLECTIBLE_TEENCOSTUME = 518
|
||
|
FLAG_COLLECTIBLE_MUTANTCOSTUME = 519
|
||
|
FLAG_COLLECTIBLE_JELLYCOSTUME = 520
|
||
|
FLAG_COLLECTIBLE_MITHALANCOSTUME = 521
|
||
|
]]--
|
||
|
function useTreasure(idx)
|
||
|
debugLog("useTreasure!")
|
||
|
if idx == FLAG_COLLECTIBLE_ENERGYTEMPLE then
|
||
|
changeCostume("ETC")
|
||
|
elseif idx == FLAG_COLLECTIBLE_CRABCOSTUME then
|
||
|
changeCostume("CC")
|
||
|
elseif idx == FLAG_COLLECTIBLE_URCHINCOSTUME then
|
||
|
changeCostume("urchin")
|
||
|
elseif idx == FLAG_COLLECTIBLE_TEENCOSTUME then
|
||
|
changeCostume("teen")
|
||
|
elseif idx == FLAG_COLLECTIBLE_MUTANTCOSTUME then
|
||
|
changeCostume("mutant")
|
||
|
elseif idx == FLAG_COLLECTIBLE_JELLYCOSTUME then
|
||
|
changeCostume("jelly")
|
||
|
elseif idx == FLAG_COLLECTIBLE_MITHALANCOSTUME then
|
||
|
changeCostume("mithalan")
|
||
|
elseif idx == FLAG_COLLECTIBLE_SEAHORSECOSTUME then
|
||
|
changeCostume("seahorse")
|
||
|
else
|
||
|
playSfx("denied")
|
||
|
end
|
||
|
end
|