Skip to content

Commit

Permalink
Eh, later
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiskster committed Sep 16, 2024
1 parent 94925c2 commit 92da32e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/Lua/Gimmicks/powerbubble.lua
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,25 @@ PTSR:AddBubblePower({
pop_color = SKINCOLOR_GALAXY
})

/*
PTSR:AddBubblePower({
name = "Attraction Shield",
pickup_func = function(toucher)
if toucher and toucher.valid and toucher.player and toucher.player.valid then
local player = toucher.player
P_SwitchShield(player, SH_ATTRACT)
P_SpawnShieldOrb(player)
S_StartSound(toucher, sfx_attrsg)
end
end,
sprite = SPR_TVAT,
frame = C,
--disable_popsound = true,
pop_color = SKINCOLOR_YELLOW
})
*/

function A_PT_BubbleFloatAnim(actor, var1) -- var1: color
local angles = 6

Expand Down

0 comments on commit 92da32e

Please sign in to comment.