If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

SpongeBob's Atlantis SquarePantis SquareOff

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

SpongeBob's Atlantis SquarePantis SquareOff

Developer: THIS IS POP
Publisher: Nick Arcade
Platform: Windows
Released internationally: January 23, 2008


CharacterIcon.png This game has unused playable characters.
CodeIcon.png This game has unused code.
GraphicsIcon.png This game has unused graphics.


So very stubbly.
This page is rather stubbly and could use some expansion.
Are you a bad enough dude to rescue this article?

Unused Graphics

Placeholder Card

SpongeBob'sAtlantisSquarePantisSquareOff-CardAssets-95.png

Found in data/cardAssets.swf is a placeholder card graphic, with pink text saying "GRAPHIC NOT AVAILABLE".

Type Missing Character

Hmmm...
To do:
See what this looks like in-game.

If you were to pick a character that doesn't exist (for example, using hacks), this character will show up as default. Which uses DoodleBob's graphics with text saying "type MISSING" over him.

Seen in data/units.swf.

There's even leftover code associated with it, though it doesn't really do anything.

package units
{
   import flash.display.MovieClip;
   import flash.text.TextField;
   
   public dynamic class NOTFOUND extends MovieClip
   {
       
      
      public var cMissingType:TextField;
      
      public function NOTFOUND()
      {
         super();
      }
   }
}

Scrapped Barnacle Boy

Somewhere in development, Barnacle Boy would've been playable in the game. Which ended up being scrapped in the process.

He also has code associated with him, same as the one from above.

package units
{
   import flash.display.MovieClip;
   
   public dynamic class barnacle_boy extends MovieClip
   {
       
      
      public function barnacle_boy()
      {
         super();
      }
   }
}