diff --git a/.gitignore b/.gitignore index 0063d245..903ccfed 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,6 @@ conftest.c conftest.err conftest.cpp conf*/ + +debian/*.substvars +debian/*-snapshot/ diff --git a/configure.ac b/configure.ac index 9a4f5f0d..0c0f7d0a 100644 --- a/configure.ac +++ b/configure.ac @@ -267,10 +267,12 @@ AC_DEFINE(EM_USE_SHARED_COLOR, [1], [One color per vertex]) dnl AC_SUBST(pkglibdir) dnl AC_SUBST(pkgincludedir) -AC_CONFIG_FILES([Makefile + +AC_CONFIG_FILES([Makefile addon/Makefile base/Makefile data/Makefile data/tux/Makefile data/professor/Makefile data/hurd/Makefile + data/gnu/Makefile src/Makefile test/Makefile pinball-config]) AC_OUTPUT diff --git a/data/Makefile.am b/data/Makefile.am index 5d4af4e9..a74ec7ab 100755 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,6 +1,6 @@ AUTOMAKE_OPTIONS = gnu -SUBDIRS = tux professor hurd +SUBDIRS = tux professor hurd gnu pindatadir = $(datadir)/pinball diff --git a/data/gnu/.README.swp b/data/gnu/.README.swp new file mode 100644 index 00000000..0e599eae Binary files /dev/null and b/data/gnu/.README.swp differ diff --git a/data/gnu/Makefile.am b/data/gnu/Makefile.am new file mode 100755 index 00000000..ad99a3c9 --- /dev/null +++ b/data/gnu/Makefile.am @@ -0,0 +1,58 @@ +AUTOMAKE_OPTIONS = gnu + +highscoredir = $(DESTDIR)/$(EM_BUILD_ROOT)/$(EM_HIGHSCORE_DIR)/gnu + +gnulibdir = $(EM_LIBDIR) +gnudatadir = $(datadir)/pinball/gnu + +gnulib_LTLIBRARIES = libModuleGnu.la + +INCLUDES = -I../../base -I.../../addon -I../../src + +libModuleGnu_la_LDFLAGS = -module +libModuleGnu_la_SOURCES = ModuleGnu.cpp + +gnudata_DATA = \ +bump.ogg \ +bumpsoft.wav \ +nudge.wav \ +shoot.ogg \ +flip2b.ogg \ +flip2br.ogg \ +lock.ogg \ +gnu_letter.ogg \ +gnu_all.ogg \ +multiball.wav \ +gplv1.ogg \ +gplv2.ogg \ +gplv3.ogg \ +freedom0.ogg \ +freedom1.ogg \ +freedom2.ogg \ +freedom3.ogg \ +freeball.ogg \ +free_letter.ogg \ +free_all.ogg \ +knockdown.ogg \ +reset_knockdowns.ogg \ +raise-stopper.ogg \ +plunger.wav \ +music.ogg \ +pinball.pbl \ +gnu.png \ +gnu2b.png \ +tiles.png \ +tiles2.png \ +tiles3.png +#music is Subvulture_-_The_Money_Ran_Out__Rudy, from jamendo. CC by sa. + +# This will create a new empty highscores file +# NOTE! The user games must exist! +install-data-hook: + -mkdir -p $(highscoredir) # - if not root #!rzr + -touch $(highscoredir)/highscores + -if test `whoami` = root; then chown games $(highscoredir)/highscores; fi + -if test `whoami` = root; then chgrp games $(highscoredir)/highscores; fi + -chmod 666 $(highscoredir)/highscores + +EXTRA_DIST = $(gnudata_DATA) diff --git a/data/gnu/ModuleGnu.cpp b/data/gnu/ModuleGnu.cpp new file mode 100755 index 00000000..081d4c6e --- /dev/null +++ b/data/gnu/ModuleGnu.cpp @@ -0,0 +1,999 @@ +//#ident "$Id: ModuleGnu.cpp,v 1.8 2003/07/16 20:02:04 rzr Exp $" +/*************************************************************************** + Score.cpp - description + ------------------- + begin : Fri Jan 26 2001 + copyright : (C) 2001 by Henrik Enqvist + (C) 2013 Ben Asselstine + email : henqvist@excite.com +***************************************************************************/ + +#include "Private.h" +//#include "Keyboard.h" +#include "Config.h" +#include "Behavior.h" +#include "Group.h" +#include "Pinball.h" +#include "Loader.h" +#include "StateMachine.h" +#include "Table.h" +#include "Score.h" +#include "BallGroup.h" +#include "Shape3D.h" + +/* + * + * 4 simultaneous missions. + * 1. fill in GNU at the top. It triggers the left and right lower shoot + * objects that save the ball from dying. + * 2. knock down the letters COPY LEFT. this makes the 0, 1, 2, 3 light go up. + * 3. knock down the letters GPL. this makes the v1, v2, v3 light up. + * 4. fill in FREE at the bottom. when both balls are locked in the spinners, + * it triggers multiball. + * + * when the 0, 1, 2, 3 lights are all lit up, the freedom target lights up. + * upon hitting this target, a cylinder pops up in between the flippers. the + * cylinder stays up for the remainder of the game. + * + * when the v1, v2, v3 lights are all lit up, the free ball target lights up. + * upon hitting this target, a free ball is awarded. + * + * it is possible to put a ball behind the top right flipper, and it goes + * back down to the plunger area. doing this scores some points, but that's + * all. + * + * strategy: + * getting a free ball is fairly easy. just plunger the ball barely up out + * of the shoot, and it will end up on the flipper. from there it's pretty + * easy to hit the GPL letters (mission 3) if there isn't a ball in the spinner. + * it's especially easy to do this after a multiball when the spinners won't + * capture a ball. + * + * repeatedly complete mission 1 to make the FREE letters easily attainable. + * then go for mission 4 multiball. + * then mission 2 COPYLEFT targets should go down pretty fast during multiball. + * + * lastly, the free ball target is impossible to directly hit if the cylinder has popped up between the flippers. an indirect hit is the only way. + * if you can do this repeatedly, getting free balls will be REALLY easy. + */ +class GnuBehavior : public Behavior { +public: + GnuBehavior() : Behavior() { + char name[32]; + //this->clear(); + Loader * loader = Loader::getInstance(); + m_sigBump = loader->getSignal("bump"); + int i = 0; + for (const char *p = "copy"; *p != '\0'; ++p) { + snprintf (name, sizeof (name), "knockdown_copy_%c", *p); + m_sigKnockdown[i][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_copy_%c", *p); + m_sigKnockdown[i][1] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_copy_%c_going_down", *p); + m_sigKnocking[i][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_copy_%c_going_up", *p); + m_sigKnocking[i][1] = loader->getSignal(name); + i++; + } + i = 0; + for (const char *p = "left"; *p != '\0'; ++p) { + snprintf (name, sizeof (name), "knockdown_left_%c", *p); + m_sigKnockdown[i+4][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_left_%c", *p); + m_sigKnockdown[i+4][1] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_left_%c_going_down", *p); + m_sigKnocking[i+4][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_left_%c_going_up", *p); + m_sigKnocking[i+4][1] = loader->getSignal(name); + i++; + } + m_sigCopyleftKnockdownReset = loader->getSignal("knockdown_copyleft_reset"); + i = 0; + for (const char *p = "gpl"; *p != '\0'; ++p) { + snprintf (name, sizeof (name), "knockdown_gpl_%c", *p); + m_sigKnockdown[i+8][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_gpl_%c", *p); + m_sigKnockdown[i+8][1] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_gpl_%c_going_down", *p); + m_sigKnocking[i+8][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "knockup_gpl_%c_going_up", *p); + m_sigKnocking[i+8][1] = loader->getSignal(name); + i++; + } + m_sigGplKnockdownReset = loader->getSignal("knockdown_gpl_reset"); + m_sigGnuAll = loader->getSignal("gnu_all"); + m_sigGnu[0] = loader->getSignal("gnu_g"); + m_sigGnuOn[0] = loader->getSignal("gnu_g_on"); + m_sigGnuOff[0] = loader->getSignal("gnu_g_off"); + m_sigGnu[1] = loader->getSignal("gnu_n"); + m_sigGnuOn[1] = loader->getSignal("gnu_n_on"); + m_sigGnuOff[1] = loader->getSignal("gnu_n_off"); + m_sigGnu[2] = loader->getSignal("gnu_u"); + m_sigGnuOn[2] = loader->getSignal("gnu_u_on"); + m_sigGnuOff[2] = loader->getSignal("gnu_u_off"); + m_sigFreeAll = loader->getSignal("free_all"); + m_sigFree[0] = loader->getSignal("free_f"); + m_sigFreeOn[0] = loader->getSignal("free_f_on"); + m_sigFreeOff[0] = loader->getSignal("free_f_off"); + m_sigFree[1] = loader->getSignal("free_r"); + m_sigFreeOn[1] = loader->getSignal("free_r_on"); + m_sigFreeOff[1] = loader->getSignal("free_r_off"); + m_sigFree[2] = loader->getSignal("free_e"); + m_sigFreeOn[2] = loader->getSignal("free_e_on"); + m_sigFreeOff[2] = loader->getSignal("free_e_off"); + m_sigFree[3] = loader->getSignal("free_ee"); + m_sigFreeOn[3] = loader->getSignal("free_ee_on"); + m_sigFreeOff[3] = loader->getSignal("free_ee_off"); + m_sigCopyleftAll = loader->getSignal("copyleft_all"); + m_sigCopyleft[0] = loader->getSignal("copy_c"); + m_sigCopyleftOn[0] = loader->getSignal("copy_c_on"); + m_sigCopyleftOff[0] = loader->getSignal("copy_c_off"); + m_sigCopyleft[1] = loader->getSignal("copy_o"); + m_sigCopyleftOn[1] = loader->getSignal("copy_o_on"); + m_sigCopyleftOff[1] = loader->getSignal("copy_o_off"); + m_sigCopyleft[2] = loader->getSignal("copy_p"); + m_sigCopyleftOn[2] = loader->getSignal("copy_p_on"); + m_sigCopyleftOff[2] = loader->getSignal("copy_p_off"); + m_sigCopyleft[3] = loader->getSignal("copy_y"); + m_sigCopyleftOn[3] = loader->getSignal("copy_y_on"); + m_sigCopyleftOff[3] = loader->getSignal("copy_y_off"); + m_sigCopyleft[4] = loader->getSignal("left_l"); + m_sigCopyleftOn[4] = loader->getSignal("left_l_on"); + m_sigCopyleftOff[4] = loader->getSignal("left_l_off"); + m_sigCopyleft[5] = loader->getSignal("left_e"); + m_sigCopyleftOn[5] = loader->getSignal("left_e_on"); + m_sigCopyleftOff[5] = loader->getSignal("left_e_off"); + m_sigCopyleft[6] = loader->getSignal("left_f"); + m_sigCopyleftOn[6] = loader->getSignal("left_f_on"); + m_sigCopyleftOff[6] = loader->getSignal("left_f_off"); + m_sigCopyleft[7] = loader->getSignal("left_t"); + m_sigCopyleftOn[7] = loader->getSignal("left_t_on"); + m_sigCopyleftOff[7] = loader->getSignal("left_t_off"); + m_sigGplAll = loader->getSignal("gpl_all"); + m_sigGpl[0] = loader->getSignal("gpl_g"); + m_sigGplOn[0] = loader->getSignal("gpl_g_on"); + m_sigGplOff[0] = loader->getSignal("gpl_g_off"); + m_sigGpl[1] = loader->getSignal("gpl_p"); + m_sigGplOn[1] = loader->getSignal("gpl_p_on"); + m_sigGplOff[1] = loader->getSignal("gpl_p_off"); + m_sigGpl[2] = loader->getSignal("gpl_l"); + m_sigGplOn[2] = loader->getSignal("gpl_l_on"); + m_sigGplOff[2] = loader->getSignal("gpl_l_off"); + for (i = 0; i < 6; i++) { + snprintf (name, sizeof (name), "arrow_%d_on", i+1); + m_sigArrowOn[i] = loader->getSignal(name); + snprintf (name, sizeof (name), "arrow_%d_off", i+1); + m_sigArrowOff[i] = loader->getSignal(name); + snprintf (name, sizeof (name), "arrow_%d_blink", i+1); + m_sigArrowBlink[i] = loader->getSignal(name); + } + m_sigMidStopperBreached = loader->getSignal("mid_stopper_breached"); + m_sigSideStopperBreached = loader->getSignal("side_stopper_breached"); + m_sigBottomStopperBreached = loader->getSignal("bottom_stopper_breached"); + m_sig0123All = loader->getSignal("0123_all"); + m_sig0123On[0] = loader->getSignal("0123_0_on"); + m_sig0123Off[0] = loader->getSignal("0123_0_off"); + m_sig0123Announce[0] = loader->getSignal("0123_0_announce"); + m_sig0123On[1] = loader->getSignal("0123_1_on"); + m_sig0123Off[1] = loader->getSignal("0123_1_off"); + m_sig0123Announce[1] = loader->getSignal("0123_1_announce"); + m_sig0123On[2] = loader->getSignal("0123_2_on"); + m_sig0123Off[2] = loader->getSignal("0123_2_off"); + m_sig0123Announce[2] = loader->getSignal("0123_2_announce"); + m_sig0123On[3] = loader->getSignal("0123_3_on"); + m_sig0123Off[3] = loader->getSignal("0123_3_off"); + m_sig0123Announce[3] = loader->getSignal("0123_3_announce"); + m_sigv123All = loader->getSignal("v123_all"); + m_sigv123On[0] = loader->getSignal("v123_1_on"); + m_sigv123Off[0] = loader->getSignal("v123_1_off"); + m_sigv123Announce[0] = loader->getSignal("v123_1_announce"); + m_sigv123On[1] = loader->getSignal("v123_2_on"); + m_sigv123Off[1] = loader->getSignal("v123_2_off"); + m_sigv123Announce[1] = loader->getSignal("v123_2_announce"); + m_sigv123On[2] = loader->getSignal("v123_3_on"); + m_sigv123Off[2] = loader->getSignal("v123_3_off"); + m_sigv123Announce[2] = loader->getSignal("v123_3_announce"); + m_sigv123On[3] = loader->getSignal("v123_freeball_on"); + m_sigv123Off[3] = loader->getSignal("v123_freeball_off"); + m_sigv123Announce[3] = loader->getSignal("v123_freeball_announce"); + for (i = 0; i < 6; i++) { + snprintf (name, sizeof (name), "lock_arrow_%d_on", i+1); + m_sigLockArrowOn[i][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "lock_arrow_%d_off", i+1); + m_sigLockArrowOff[i][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "lock_arrow_%d_blink", i+1); + m_sigLockArrowBlink[i][0] = loader->getSignal(name); + snprintf (name, sizeof (name), "lock_arrow_%d_crazyblink", i+1); + m_sigLockArrowCrazyBlink[i][0] = loader->getSignal(name); + } + for (i = 0; i < 6; i++) { + snprintf (name, sizeof (name), "lock_arrow_%d_on", i+7); + m_sigLockArrowOn[i][1] = loader->getSignal(name); + snprintf (name, sizeof (name), "lock_arrow_%d_off", i+7); + m_sigLockArrowOff[i][1] = loader->getSignal(name); + snprintf (name, sizeof (name), "lock_arrow_%d_blink", i+7); + m_sigLockArrowBlink[i][1] = loader->getSignal(name); + snprintf (name, sizeof (name), "lock_arrow_%d_crazyblink", i+7); + m_sigLockArrowCrazyBlink[i][1] = loader->getSignal(name); + } + for (i = 0; i < 14; i++) { + snprintf (name, sizeof (name), "light_%03d_on", i+1); + m_sigLightOn[i] = loader->getSignal(name); + snprintf (name, sizeof (name), "light_%03d_off", i+1); + m_sigLightOff[i] = loader->getSignal(name); + snprintf (name, sizeof (name), "light_%03d_blink", i+1); + m_sigLightBlink[i] = loader->getSignal(name); + snprintf (name, sizeof (name), "light_%03d_crazyblink", i+1); + m_sigLightCrazyBlink[i] = loader->getSignal(name); + } + m_sigLock[0] = loader->getSignal("lock1"); + m_sigLock[1] = loader->getSignal("lock2"); + m_sigLockRelease = loader->getSignal("releaselock"); + m_sigSensitizeLockOne = loader->getSignal("sensitize_lock1"); + m_sigFreeballTarget = loader->getSignal("freeball_target"); + m_sigFreeballTargetOn = loader->getSignal("freeball_target_on"); + m_sigFreeballTargetOff = loader->getSignal("freeball_target_off"); + m_sigFloorFreedomOn = loader->getSignal("freedom_on"); + m_sigFloorFreedomOff = loader->getSignal("freedom_off"); + m_sigFloorFreedomOn = loader->getSignal("freedom_on"); + m_sigFloorFreedomBlink = loader->getSignal("floor_freedom_all"); + m_sigGnuFloorOn = loader->getSignal("multiball_floor"); + m_sigGnuFloorOff = loader->getSignal("original_floor"); + m_sigFreedomTarget = loader->getSignal("freedom_target"); + m_sigFreedomTargetOn = loader->getSignal("freedom_target_on"); + m_sigFreedomTargetOff = loader->getSignal("freedom_target_off"); + m_sigRaiseFreedomStopper = loader->getSignal("raise_freedom_stopper"); + m_sigResetFreedomStopper = loader->getSignal("freedom_stopper_reset"); + + //is this last bit necessary? + //are we checking for locked balls before a game reset? not likely. + //reset triggers a clear() + /* + for (int i = 0; i < 2; i++) + { + m_aLocked[i] = false; + m_aLockedBallSlot[i] = -1; + } + */ + }; + ~GnuBehavior() {}; + + void onTick() { + Table * table = Table::getInstance(); + Score * score = table->getScore(); + Loader * loader = Loader::getInstance(); + if (table) + { + if (m_bBallColourChanged == false) + { + //this is the start of a new ball. + BallGroup *ballgroup = table->getBall(table->getCurrentBall()); + ballgroup->getShape3D(0)->setColor(1, 1, 1, 1); + m_bBallColourChanged = true; + m_aArrow[0] = true; + m_iLeftLockArrowTick=9999; + m_iRightLockArrowTick=9999; + for (int i = 0; i < m_iMultiplier + 1; i++) + SendSignal( m_sig0123On[i], 0, this->getParent(), NULL ); + for (int i = 0; i < m_iGplVersionLevel + 1; i++) + SendSignal( m_sigv123On[i], 0, this->getParent(), NULL ); + SendSignal (m_sigLightOff[0], 0, this->getParent(), NULL); + SendSignal (m_sigLightOff[1], 0, this->getParent(), NULL); + SendSignal (m_sigLightOff[2], 0, this->getParent(), NULL); + SendSignal (m_sigLightBlink[0], 200, this->getParent(), NULL); + SendSignal (m_sigLightBlink[1], 200, this->getParent(), NULL); + SendSignal (m_sigLightBlink[2], 100, this->getParent(), NULL); + SendSignal (m_sigLightOn[6], 50, this->getParent(), NULL); + SendSignal (m_sigLightOff[7], 0, this->getParent(), NULL); + SendSignal (m_sigLightOff[8], 0, this->getParent(), NULL); + SendSignal (m_sigLightBlink[7], 150, this->getParent(), NULL); + SendSignal (m_sigLightBlink[8], 250, this->getParent(), NULL); + SendSignal (m_sigLightOn[11], 0, this->getParent(), NULL); + SendSignal (m_sigLightOn[12], 0, this->getParent(), NULL); + SendSignal (m_sigLightOn[13], 0, this->getParent(), NULL); + SendSignal (m_sigSensitizeLockOne, 0, this->getParent(), NULL); + if (m_aLocked[0] == false && m_aLocked[1] == false) + { + for (int j = 0; j < 2; j++) + for (int i = 0; i < 6; i++) { + m_aLockArrow[i][j] = false; + SendSignal (m_sigLockArrowOff[i][j], 0, this->getParent(), NULL); + } + m_aLockArrow[0][0] = true; + } + else if (m_aLocked[0] == true && m_aLocked[1] == false) + { + for (int i = 0; i < 6; i++) { + SendSignal (m_sigLockArrowBlink[i][1], 0, this->getParent(), NULL); + for (int i = 0; i < 6; i++) { + m_aLockArrow[i][1] = false; + SendSignal (m_sigLockArrowOff[i][1], 0, this->getParent(), NULL); + } + m_aLockArrow[0][1] = true; + } + } + else if (m_aLocked[0] && m_aLocked[1]) + { + for (int j = 0; j < 2; j++) + for (int i = 0; i < 6; i++) { + m_aLockArrow[i][j] = false; + SendSignal (m_sigLockArrowBlink[i][j], 0, this->getParent(), NULL); + } + } + } + } + // init signals + EmAssert(score != NULL, "GnuBehavior::onTick score NULL"); + // launch ball + string launch("launch"); + + if (table->active() == 0) { + if (m_bGameOver == false) { + //which ball do we activate if we just locked a ball? + int i = getFirstDeadBall(); + if (i > -1) { + SendSignal( PBL_SIG_BALL_ON, 0, this->getParent(), NULL ); + table->activateBall(i, 19.5f, 0.0f, 30.0f); + m_iCurrentBallSlot = i; + m_bBallColourChanged = false; + } + } + } + m_iPlungerTick++; + if (m_iPlungerTick >= 20) { + if (m_aArrow[0]) { + m_aArrow[0] = false; + m_aArrow[1] = true; + SendSignal( m_sigArrowOn[1], 0, this->getParent(), NULL ); + SendSignal( m_sigArrowOff[0], 0, this->getParent(), NULL ); + } else if (m_aArrow[1]) { + m_aArrow[1] = false; + m_aArrow[2] = true; + SendSignal( m_sigArrowOn[2], 0, this->getParent(), NULL ); + SendSignal( m_sigArrowOff[1], 0, this->getParent(), NULL ); + } else if (m_aArrow[2]) { + m_aArrow[2] = false; + m_aArrow[3] = true; + SendSignal( m_sigArrowOn[3], 0, this->getParent(), NULL ); + SendSignal( m_sigArrowOff[2], 0, this->getParent(), NULL ); + } else if (m_aArrow[3]) { + m_aArrow[3] = false; + m_aArrow[4] = true; + SendSignal( m_sigArrowOn[4], 0, this->getParent(), NULL ); + SendSignal( m_sigArrowOff[3], 0, this->getParent(), NULL ); + } else if (m_aArrow[4]) { + m_aArrow[4] = false; + m_aArrow[5] = true; + SendSignal( m_sigArrowOn[5], 0, this->getParent(), NULL ); + SendSignal( m_sigArrowOff[4], 0, this->getParent(), NULL ); + } else if (m_aArrow[5]) { + m_aArrow[5] = false; + m_aArrow[0] = true; + SendSignal( m_sigArrowOn[0], 0, this->getParent(), NULL ); + SendSignal( m_sigArrowOff[5], 0, this->getParent(), NULL ); + } + m_iPlungerTick = 0; + } + if (m_aLocked[0] == false && m_aLocked[1] == false) { + m_iLeftLockArrowTick++; + if (m_iLeftLockArrowTick >= 20) { + if (m_aLockArrow[0][0]) { + m_aLockArrow[0][0] = false; + m_aLockArrow[1][0] = true; + SendSignal( m_sigLockArrowBlink[1][0], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[0][0], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[1][0]) { + m_aLockArrow[1][0] = false; + m_aLockArrow[2][0] = true; + SendSignal( m_sigLockArrowBlink[2][0], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[1][0], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[2][0]) { + m_aLockArrow[2][0] = false; + m_aLockArrow[3][0] = true; + SendSignal( m_sigLockArrowBlink[3][0], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[2][0], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[3][0]) { + m_aLockArrow[3][0] = false; + m_aLockArrow[4][0] = true; + SendSignal( m_sigLockArrowBlink[4][0], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[3][0], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[4][0]) { + m_aLockArrow[4][0] = false; + m_aLockArrow[5][0] = true; + SendSignal( m_sigLockArrowBlink[5][0], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[4][0], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[5][0]) { + m_aLockArrow[5][0] = false; + m_aLockArrow[0][0] = true; + SendSignal( m_sigLockArrowBlink[0][0], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[5][0], 0, this->getParent(), NULL ); + } + m_iLeftLockArrowTick = 0; + } + } + if (m_aLocked[0] == true && m_aLocked[1] == false) { + m_iRightLockArrowTick++; + if (m_iRightLockArrowTick >= 20) { + if (m_aLockArrow[0][1]) { + m_aLockArrow[0][1] = false; + m_aLockArrow[1][1] = true; + SendSignal( m_sigLockArrowBlink[1][1], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[0][1], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[1][1]) { + m_aLockArrow[1][1] = false; + m_aLockArrow[2][1] = true; + SendSignal( m_sigLockArrowBlink[2][1], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[1][1], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[2][1]) { + m_aLockArrow[2][1] = false; + m_aLockArrow[3][1] = true; + SendSignal( m_sigLockArrowBlink[3][1], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[2][1], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[3][1]) { + m_aLockArrow[3][1] = false; + m_aLockArrow[4][1] = true; + SendSignal( m_sigLockArrowBlink[4][1], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[3][1], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[4][1]) { + m_aLockArrow[4][1] = false; + m_aLockArrow[5][1] = true; + SendSignal( m_sigLockArrowBlink[5][1], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[4][1], 0, this->getParent(), NULL ); + } else if (m_aLockArrow[5][1]) { + m_aLockArrow[5][1] = false; + m_aLockArrow[0][1] = true; + SendSignal( m_sigLockArrowBlink[0][1], 0, this->getParent(), NULL ); + SendSignal( m_sigLockArrowOff[5][1], 0, this->getParent(), NULL ); + } + m_iRightLockArrowTick = 0; + } + } + }; + + void StdOnCollision() {}; + + void StdOnSignal() { + //EM_COUT((int)em_signal, 1); + Table * table = Table::getInstance(); + Score * score = table->getScore(); + Loader * loader = Loader::getInstance(); + + OnSignal( PBL_SIG_RESET_ALL ) { + this->clear(); + } + // ball dead + ElseOnSignal( PBL_SIG_BALL_OFF ) { + if (m_bFreeBall == false) { + Table * table = Table::getInstance(); + if (table->active() == 0) { + if (table->getCurrentBall() == MAX_BALL-1) { + SendSignal( PBL_SIG_GAME_OVER, 0, this->getParent(), NULL ); + m_bGameOver = true; + } + else + table->setCurrentBall(table->getCurrentBall()+1); + m_bMultiBall = false; + } + } + else { + m_bFreeBall = false; + m_iGplVersionLevel = 0; + SendSignal (m_sigv123Off[3], 0, this->getParent(), NULL); + //for (int i = 1; i < 4; i++) + //SendSignal (m_sigv123Off[i], 0, this->getParent(), NULL); + //SendSignal (m_sigv123On[0], 0, this->getParent(), NULL); + //SendSignal (m_sigv123Announce[0], 0, this->getParent(), NULL); + } + } + ElseOnSignal(m_sigBump) { + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigGnu[0]) { + if (!m_aGnu[0]) { + SendSignal(m_sigGnuOn[0], 0, this->getParent(), NULL); + m_aGnu[0] = true; + } + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigGnu[1]) { + if (!m_aGnu[1]) { + SendSignal(m_sigGnuOn[1], 0, this->getParent(), NULL); + m_aGnu[1] = true; + } + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigGnu[2]) { + if (!m_aGnu[2]) { + SendSignal(m_sigGnuOn[2], 0, this->getParent(), NULL); + m_aGnu[2] = true; + } + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigFree[0]) { + if (!m_aFree[0]) { + SendSignal(m_sigFreeOn[0], 0, this->getParent(), NULL); + m_aFree[0] = true; + } + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigFree[1]) { + if (!m_aFree[1]) { + SendSignal(m_sigFreeOn[1], 0, this->getParent(), NULL); + m_aFree[1] = true; + } + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigFree[2]) { + if (!m_aFree[2]) { + SendSignal(m_sigFreeOn[2], 0, this->getParent(), NULL); + m_aFree[2] = true; + } + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigFree[3]) { + if (!m_aFree[3]) { + SendSignal(m_sigFreeOn[3], 0, this->getParent(), NULL); + m_aFree[3] = true; + } + score->addScore(withMultiplier(50)); + } + ElseOnSignal(m_sigKnockdown[0][0]) { + if (!m_aKnockdown[0]) { + SendSignal(m_sigCopyleftOn[0], 0, this->getParent(), NULL); + m_aKnockdown[0] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[1][0]) { + if (!m_aKnockdown[1]) { + SendSignal(m_sigCopyleftOn[1], 0, this->getParent(), NULL); + m_aKnockdown[1] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[2][0]) { + if (!m_aKnockdown[2]) { + SendSignal(m_sigCopyleftOn[2], 0, this->getParent(), NULL); + m_aKnockdown[2] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[3][0]) { + if (!m_aKnockdown[3]) { + SendSignal(m_sigCopyleftOn[3], 0, this->getParent(), NULL); + m_aKnockdown[3] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[4][0]) { + if (!m_aKnockdown[4]) { + SendSignal(m_sigCopyleftOn[4], 0, this->getParent(), NULL); + m_aKnockdown[4] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[5][0]) { + if (!m_aKnockdown[5]) { + SendSignal(m_sigCopyleftOn[5], 0, this->getParent(), NULL); + m_aKnockdown[5] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[6][0]) { + if (!m_aKnockdown[6]) { + SendSignal(m_sigCopyleftOn[6], 0, this->getParent(), NULL); + m_aKnockdown[6] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[7][0]) { + if (!m_aKnockdown[7]) { + SendSignal(m_sigCopyleftOn[7], 0, this->getParent(), NULL); + m_aKnockdown[7] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[8][0]) { + if (!m_aKnockdown[8]) { + SendSignal(m_sigGplOn[0], 0, this->getParent(), NULL); + m_aKnockdown[8] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[9][0]) { + if (!m_aKnockdown[9]) { + SendSignal(m_sigGplOn[1], 0, this->getParent(), NULL); + m_aKnockdown[9] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigKnockdown[10][0]) { + if (!m_aKnockdown[10]) { + SendSignal(m_sigGplOn[2], 0, this->getParent(), NULL); + m_aKnockdown[10] = true; + score->addScore(withMultiplier(50)); + } + } + ElseOnSignal(m_sigMidStopperBreached) { + for (int i = 0; i < 6; i++) + { + SendSignal( m_sigArrowOff[i], 0, this->getParent(), NULL ); + m_aArrow[i] = false; + } + SendSignal (m_sigLightOff[6], 0, this->getParent(), NULL); + SendSignal (m_sigLightOn[3], 0, this->getParent(), NULL); + SendSignal (m_sigLightOn[4], 0, this->getParent(), NULL); + if (m_bRunIt) { + SendSignal (m_sig0123Announce[0], 0, this->getParent(), NULL); + m_bRunIt = false; + } + } + ElseOnSignal(m_sigBottomStopperBreached) { + //working around a glitch that has some balls still locked + //even though they aren't. + if (m_aLocked[0] == false && m_aLocked[1] == false) { + unLockBalls(); + } + SendSignal (m_sigLightOff[3], 0, this->getParent(), NULL); + SendSignal (m_sigLightOff[4], 0, this->getParent(), NULL); + if (table->active() > 1) + { + SendSignal (m_sigLightOn[3], 200, this->getParent(), NULL); + SendSignal (m_sigLightOn[4], 200, this->getParent(), NULL); + } + } + ElseOnSignal(m_sigSideStopperBreached) { + score->addScore(withMultiplier(500)); + //turn on the plunger light and arrows. + m_aArrow[0] = true; + SendSignal (m_sigLightOn[6], 50, this->getParent(), NULL); + } + ElseOnSignal(m_sigLock[0]) { + m_aLocked[0] = true; + m_aLockedBallSlot[0] = m_iCurrentBallSlot; + for (int i = 0; i < 6; i++) + SendSignal( m_sigLockArrowBlink[i][0], 0, this->getParent(), NULL ); + m_aLockArrow[0][1] = true; //start spinning the other wheel + } + ElseOnSignal(m_sigLock[1]) { + m_aLocked[1] = true; + m_aLockedBallSlot[1] = m_iCurrentBallSlot; + for (int i = 0; i < 6; i++) + SendSignal( m_sigLockArrowBlink[i][1], 0, this->getParent(), NULL ); + } + ElseOnSignal( PBL_SIG_BALL_ON ) { + Table * table = Table::getInstance(); + for (int i = 0; i < MAX_BALL; i++) + { + BallGroup *ballgroup = table->getBall(i); + ballgroup->getShape3D(0)->setColor(1, 1, 1, 1); + } + } + ElseOnSignal( m_sigFreeballTarget) { + if (m_iGplVersionLevel == 2) + { + m_iGplVersionLevel = 3; + SendSignal (m_sigLightOff[10], 0, this->getParent(), NULL); + SendSignal (m_sigv123On[3], 0, this->getParent(), NULL); + m_bFreeBall = true; + m_bFreeBallTargetOn = false; + SendSignal (m_sigv123On[0], 2500, this->getParent(), NULL); + SendSignal (m_sigv123Off[1], 0, this->getParent(), NULL); + SendSignal (m_sigv123Off[2], 0, this->getParent(), NULL); + SendSignal (m_sigv123Announce[3], 0, this->getParent(), NULL); + SendSignal (m_sigv123Announce[0], 2000, this->getParent(), NULL); + } + } + ElseOnSignal( m_sigFreedomTarget) { + if (m_iMultiplier == 3) + { + SendSignal (m_sigLightOff[9], 0, this->getParent(), NULL); + m_bFreedomTargetOn = false; + m_bFreedomStopperOn = true; + SendSignal (m_sigRaiseFreedomStopper, 0, this->getParent(), NULL); + SendSignal (m_sigFloorFreedomOn, 0, this->getParent(), NULL); + } + } + + // GNU all + if (m_aGnu[0] && m_aGnu[1] && m_aGnu[2]) { + SendSignal(m_sigGnuAll, 0, this->getParent(), NULL); + m_aGnu[0] = m_aGnu[1] = m_aGnu[2] = false; + score->addScore(withMultiplier(500)); + } + + // FREE all + if (m_aFree[0] && m_aFree[1] && m_aFree[2] && m_aFree[3]) { + SendSignal(m_sigFreeAll, 0, this->getParent(), NULL); + m_aFree[0] = m_aFree[1] = m_aFree[2] = m_aFree[3] = false; + score->addScore(withMultiplier(500)); + //MULTIBALL + if (m_aLocked[0] == true && m_aLocked[1] == true) { + score->addScore(withMultiplier(1000)); + unLockBalls(); + SendSignal(m_sigLockRelease, 0, this->getParent(), NULL); + m_bMultiBall = true; + SendSignal (m_sigGnuFloorOn, 0, this->getParent(), NULL); + SendSignal (m_sigGnuFloorOff, 200, this->getParent(), NULL); + for (int i = 0; i < 6; i++) + SendSignal (m_sigArrowBlink[i], 0, this->getParent(), NULL); + + for (int j = 0; j < 2; j++) + for (int i = 0; i < 6; i++) + SendSignal( m_sigLockArrowCrazyBlink[i][j], 0, this->getParent(), NULL ); + for (int j = 0; j < 2; j++) + for (int i = 0; i < 6; i++) { + SendSignal( m_sigLockArrowOn[i][j], 600, this->getParent(), NULL ); + m_aLockArrow[i][j] = false; + } + for (int i = 0; i < 6; i++) + SendSignal (m_sigArrowOff[i], 600, this->getParent(), NULL); + + for (int i = 0; i < 14; i++) + SendSignal (m_sigLightCrazyBlink[i], 0, this->getParent(), NULL); + for (int i = 0; i < 14; i++) + SendSignal (m_sigLightOff[i], 600, this->getParent(), NULL); + SendSignal (m_sigLightBlink[0], 600+200, this->getParent(), NULL); + SendSignal (m_sigLightBlink[1], 600+200, this->getParent(), NULL); + SendSignal (m_sigLightBlink[2], 600+100, this->getParent(), NULL); + SendSignal (m_sigLightBlink[7], 600+150, this->getParent(), NULL); + SendSignal (m_sigLightBlink[8], 600+250, this->getParent(), NULL); + SendSignal (m_sigLightOn[3], 650, this->getParent(), NULL); + SendSignal (m_sigLightOn[4], 650, this->getParent(), NULL); + SendSignal (m_sigLightOff[5], 650, this->getParent(), NULL); + SendSignal (m_sigLightOff[6], 650, this->getParent(), NULL); + SendSignal (m_sigLightOn[11], 650, this->getParent(), NULL); + SendSignal (m_sigLightOn[12], 650, this->getParent(), NULL); + SendSignal (m_sigLightOn[13], 650, this->getParent(), NULL); + if (m_bFreeBallTargetOn) + SendSignal (m_sigLightOff[9], 650, this->getParent(), NULL); + if (m_bFreedomTargetOn) + SendSignal (m_sigLightOff[10], 650, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sig0123Off[i], 0, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + { + SendSignal (m_sig0123On[i], 10 + (i+1)*15, this->getParent(), NULL); + } + for (int i = 0; i < 4; i++) + SendSignal (m_sig0123Off[i], 85, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + { + SendSignal (m_sig0123On[i], 95 + (i+1)*15, this->getParent(), NULL); + } + for (int i = 0; i < 4; i++) + SendSignal (m_sig0123Off[i], 170, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sig0123On[i], 185 + (i+1)*15, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sig0123Off[i], 260, this->getParent(), NULL); + for (int i = 0; i < m_iMultiplier+1; i++) + SendSignal (m_sig0123On[i], 275, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sigv123Off[i], 85, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sigv123On[i], 95 + (i+1)*15, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sigv123Off[i], 170, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sigv123On[i], 185 + (i+1)*15, this->getParent(), NULL); + for (int i = 0; i < 4; i++) + SendSignal (m_sigv123Off[i], 260, this->getParent(), NULL); + for (int i = 0; i < m_iGplVersionLevel; i++) + SendSignal (m_sigv123On[i], 275, this->getParent(), NULL); + } + } + // COPYLEFT all + if (m_aKnockdown[0] && m_aKnockdown[1] && m_aKnockdown[2] && + m_aKnockdown[3] && m_aKnockdown[4] && m_aKnockdown[5] && + m_aKnockdown[6] && m_aKnockdown[7]) { + int i; + SendSignal(m_sigCopyleftAll, 0, this->getParent(), NULL); + score->addScore(withMultiplier(500)); + for (i = 0; i < 8; i++) + { + if (m_aKnockdown[i]) + { + printf("sending sigKnocking[%d][1] now\n", i); + SendSignal(m_sigKnocking[i][1], 250, this->getParent(), NULL); + m_aKnockdown[i] = false; + } + } + SendSignal(m_sigCopyleftKnockdownReset, 300, this->getParent(), NULL); + m_iMultiplier++; + if (m_iMultiplier > 3) + m_iMultiplier = 3; + else + { + SendSignal(m_sig0123On[m_iMultiplier], 50, this->getParent(), NULL); + SendSignal(m_sig0123Announce[m_iMultiplier], 0, this->getParent(), NULL); + } + if (m_iMultiplier == 3 && m_bFreedomStopperOn == false) { + m_bFreedomTargetOn = true; + SendSignal (m_sigFreedomTargetOn, 0, this->getParent(), NULL); + } + } + + //GPL all + if (m_aKnockdown[8] && m_aKnockdown[9] && m_aKnockdown[10]) { + SendSignal(m_sigGplAll, 0, this->getParent(), NULL); + score->addScore(withMultiplier(500)); + for (int i = 8; i < 11; i++) + { + if (m_aKnockdown[i]) + { + SendSignal(m_sigKnocking[i][1], 250, this->getParent(), NULL); + m_aKnockdown[i] = false; + } + } + SendSignal(m_sigGplKnockdownReset, 300, this->getParent(), NULL); + if (m_iGplVersionLevel < 2) + { + m_iGplVersionLevel++; + for (int i = 0; i <= m_iGplVersionLevel; i++) + { + printf("turning %d on\n", i); + SendSignal(m_sigv123On[i], 50, this->getParent(), NULL); + } + SendSignal (m_sigv123Announce[m_iGplVersionLevel], 0, this->getParent(), NULL); + } + + if (m_iGplVersionLevel == 2 && m_bFreeBallTargetOn == false) + { + //to get to the last GplVersionLevel we have to shoot a target. + //(freeball) + SendSignal (m_sigFreeballTargetOn, 0, this->getParent(), NULL); + SendSignal (m_sigLightCrazyBlink[10], 0, this->getParent(), NULL); + m_bFreeBallTargetOn = true; + } + } + } + + void clear() { + int i = 0, j = 0; + for (i = 0; i < 3; i++) + m_aGnu[i] = false; + for (i = 0; i < 4; i++) + m_aFree[i] = false; + for (i = 0; i < 11; i++) + m_aKnockdown[i] = false; + m_bBallColourChanged = false; + for (i = 0; i < 6; i++) + m_aArrow[i] = false; + for (i = 0; i < 6; i++) + for (j = 0; j < 2; j++) + m_aLockArrow[i][j] = false; + m_iMultiplier = 0; + m_iGplVersionLevel = 0; + m_iLeftLockArrowTick = 0; + m_iRightLockArrowTick = 0; + m_iPlungerTick = 0; + for (i = 0; i < 2; i++) + { + m_aLocked[i] = false; + m_aLockedBallSlot[i] = -1; + } + m_bMultiBall = false; + m_bGameOver = false; + m_bFreeBall = false; + m_bFreeBallTargetOn = false; + m_bFreedomTargetOn = false; + m_bFreedomStopperOn = false; + m_bRunIt = true; + }; + + int getFirstDeadBall() { + Table * table = Table::getInstance(); + for (int i = 0; i < MAX_BALL; i++) + if (table->isBallDead(i)) + return i; + return -1; + } + + void unLockBalls() { + Table * table = Table::getInstance(); + for (int i = 0; i < 2; i++) { + if (m_aLocked[i]) { + BallGroup *ballgroup = table->getBall(m_aLockedBallSlot[i]); + ballgroup->getShape3D(0)->getParent()->addTranslation(1, 0, 1); + m_aLockedBallSlot[i] = -1; + m_aLocked[i] = false; + table->unLockBall(m_aLockedBallSlot[i]); + } + } + for (int i = 0; i < MAX_BALL; i++) + { + if (table->isBallLocked(i)) + table->unLockBall(i); + } + }; + int withMultiplier(int score) { + return score * (m_iMultiplier + 1); + }; +private: + int m_sigGnuAll; + bool m_aGnu[3]; + int m_sigGnu[3]; + int m_sigGnuOn[3]; + int m_sigGnuOff[3]; + bool m_bBallColourChanged; + int m_sigBump; + int m_sigKnockdown[11][2]; //0 = down, 1 = up + int m_sigKnocking[11][2]; //0 = down, 1 = up + int m_sigCopyleftKnockdownReset; + int m_sigGplKnockdownReset; + int m_sigFreeAll; + bool m_aFree[4]; + int m_sigFree[4]; + int m_sigFreeOn[4]; + int m_sigFreeOff[4]; + int m_sigCopyleftAll; + int m_sigCopyleft[8]; //the COPYLEFT lights + int m_sigCopyleftOn[8]; + int m_sigCopyleftOff[8]; + int m_sigGplAll; + int m_sigGpl[3]; //the GPL lights + int m_sigGplOn[3]; + int m_sigGplOff[3]; + bool m_aKnockdown[11]; //the first 8 are COPYLEFT, the rest are GPL + int m_sigArrowOn[6]; + int m_sigArrowOff[6]; + int m_sigArrowBlink[6]; + bool m_aArrow[6]; + int m_iPlungerTick; + int m_sigMidStopperBreached; + int m_sigBottomStopperBreached; + int m_sigSideStopperBreached; + int m_iMultiplier; + int m_iGplVersionLevel; + int m_sig0123All; + int m_sig0123On[4]; + int m_sig0123Off[4]; + int m_sig0123Announce[4]; + int m_sigv123All; + int m_sigv123On[4]; + int m_sigv123Off[4]; + int m_sigv123Announce[4]; + int m_sigLockArrowOn[6][2]; //0 = left lock arrows, 1 = right lock arrows + int m_sigLockArrowOff[6][2]; + int m_sigLockArrowBlink[6][2]; + int m_sigLockArrowCrazyBlink[6][2]; + bool m_aLockArrow[6][2]; + int m_iLeftLockArrowTick; + int m_iRightLockArrowTick; + int m_sigLightOn[14]; //0, 1, 2 bumper lights. 3, 4 flippers, 5 gnu head + int m_sigLightOff[14]; //6 plunger, 7, 8 flat bumper lights, + int m_sigLightBlink[14]; //9 freedom target, 10 freeball target + int m_sigLightCrazyBlink[14]; //11, 12, 13 under walled roofs + int m_sigLock[2]; + int m_sigLockRelease; + int m_sigSensitizeLockOne; + bool m_aLocked[2]; + int m_aLockedBallSlot[2]; + bool m_bMultiBall; + bool m_bGameOver; + int m_iCurrentBallSlot; + int m_sigFreeballTarget; + int m_sigFreeballTargetOn; + int m_sigFreeballTargetOff; + bool m_bFreeBall; + int m_sigFreedomTarget; + int m_sigFreedomTargetOn; + int m_sigFreedomTargetOff; + int m_sigGnuFloorOn; + int m_sigGnuFloorOff; + int m_sigFloorFreedomOn; + int m_sigFloorFreedomOff; + int m_sigFloorFreedomBlink; + int m_sigRaiseFreedomStopper; + int m_sigResetFreedomStopper; + bool m_bFreedomTargetOn; + bool m_bFreeBallTargetOn; + bool m_bFreedomStopperOn; + bool m_bRunIt; +}; + +extern "C" void * new_object_fct(void) { + return new GnuBehavior(); +} + diff --git a/data/gnu/README b/data/gnu/README new file mode 100644 index 00000000..0a29517c --- /dev/null +++ b/data/gnu/README @@ -0,0 +1,56 @@ +This file describes the origin of media files used in this pinball table. + +Images: + +The GNU head of gnu.png and gnu2b.png comes from: +http://commons.wikimedia.org/wiki/File:Official_gnu.svg +and is modified by Ben Asselstine to include a modified version of the open mouth located here: +http://openclipart.org/detail/14581 +The metadata for the file lists it as being in the public domain. + +The fancy GNU letters come from the old thanx gnu t-shirt design, with the lettering inside the letters removed, and modified more in the gimp. +http://ftp.gnu.org/gnu/button.N.MM.shar + +tiles.png comes from tiles.png of the tux pinball table and is modified to change colours. +The bullseye graphics were created by Ben Asselstine in the gimp. +The font for the lettering is Unibit, as found in the gimp. +The yellow arrow comes from mystica_Arrow_set_(Smooth).svg in: http://packages.debian.org/sid/openclipart2-svg + +tiles2.png comes from tiles.png of the tux pinball table, with other graphics created by Ben Asselstine in the gimp. + +tiles3.png was created by Ben Asselstine. The stars come from the Common section of the unicode character set, rendered in the Sans font in the gimp. + + +Sounds: + +The various beeping sounds come from: +https://github.com/dozingcat/Vector-Pinball/blob/master/assets/audio/misc/startup1.ogg +and the project is licensed under GPLv3. +The beeping sounds were modified in audacity and appear in various sound files for this pinball table. + +The voice clips were performed and recorded by Ben Asselstine. + +The music.ogg comes from: +http://www.jamendo.com/en/track/229792/the-money-ran-out-rudy +and it is licensed under a Creative Commons Attribution Share-Alike license. + + +Various sounds came from: +http://code.google.com/p/xtremme-pinball/ +A java pinball game, licensed gplv3. + +The round bumper sound (bump.ogg) file comes from bump.wav of xtremme, but modified in audacity. + +The flipper sound (flip2b.ogg) file comes from flipperMove.wav of xtremme, but modified in audacity. flip2br.ogg is just the same file with a reduced amplitude. + +The shoot sound (shoot.ogg) file comes from newBall.wav of xtremme. it is not modified. + +The plunger sound (plunger.wav) file comes from plungerRelease.wav of xtremme, but it has been modified in audacity. + +The knockdown sound (knockdown.ogg) file is a heavily modified sound taken from tile.wav of xtremme. so is is reset_knockdowns.ogg. + +The multiball siren sound (multiball.wav) file comes from tilt-abuse.wav of xtremme, and has been modified in audacity. + +the rising stopper sound (raise-stopper.ogg) file also comes from tilt-abuse.wav from xtremme, and has been modified heavily in audacity. + + diff --git a/data/gnu/bump.ogg b/data/gnu/bump.ogg new file mode 100644 index 00000000..0edb69c9 Binary files /dev/null and b/data/gnu/bump.ogg differ diff --git a/data/gnu/bumpsoft.wav b/data/gnu/bumpsoft.wav new file mode 100755 index 00000000..c421ad2e Binary files /dev/null and b/data/gnu/bumpsoft.wav differ diff --git a/data/gnu/flip2b.ogg b/data/gnu/flip2b.ogg new file mode 100644 index 00000000..0728acdd Binary files /dev/null and b/data/gnu/flip2b.ogg differ diff --git a/data/gnu/flip2br.ogg b/data/gnu/flip2br.ogg new file mode 100644 index 00000000..9be51081 Binary files /dev/null and b/data/gnu/flip2br.ogg differ diff --git a/data/gnu/free_all.ogg b/data/gnu/free_all.ogg new file mode 100644 index 00000000..25ca9e4f Binary files /dev/null and b/data/gnu/free_all.ogg differ diff --git a/data/gnu/free_letter.ogg b/data/gnu/free_letter.ogg new file mode 100644 index 00000000..2903f6e0 Binary files /dev/null and b/data/gnu/free_letter.ogg differ diff --git a/data/gnu/freeball.ogg b/data/gnu/freeball.ogg new file mode 100644 index 00000000..b9967818 Binary files /dev/null and b/data/gnu/freeball.ogg differ diff --git a/data/gnu/freeball.wav b/data/gnu/freeball.wav new file mode 100644 index 00000000..bfeac801 Binary files /dev/null and b/data/gnu/freeball.wav differ diff --git a/data/gnu/freedom0.ogg b/data/gnu/freedom0.ogg new file mode 100644 index 00000000..7f9578cb Binary files /dev/null and b/data/gnu/freedom0.ogg differ diff --git a/data/gnu/freedom1.ogg b/data/gnu/freedom1.ogg new file mode 100644 index 00000000..0b20bbe5 Binary files /dev/null and b/data/gnu/freedom1.ogg differ diff --git a/data/gnu/freedom2.ogg b/data/gnu/freedom2.ogg new file mode 100644 index 00000000..093719e0 Binary files /dev/null and b/data/gnu/freedom2.ogg differ diff --git a/data/gnu/freedom3.ogg b/data/gnu/freedom3.ogg new file mode 100644 index 00000000..ab50dcc1 Binary files /dev/null and b/data/gnu/freedom3.ogg differ diff --git a/data/gnu/gnu.png b/data/gnu/gnu.png new file mode 100755 index 00000000..82acaef9 Binary files /dev/null and b/data/gnu/gnu.png differ diff --git a/data/gnu/gnu2b.png b/data/gnu/gnu2b.png new file mode 100644 index 00000000..b57b3a61 Binary files /dev/null and b/data/gnu/gnu2b.png differ diff --git a/data/gnu/gnu_all.ogg b/data/gnu/gnu_all.ogg new file mode 100644 index 00000000..4c274c7b Binary files /dev/null and b/data/gnu/gnu_all.ogg differ diff --git a/data/gnu/gnu_letter.ogg b/data/gnu/gnu_letter.ogg new file mode 100644 index 00000000..0d3e12e9 Binary files /dev/null and b/data/gnu/gnu_letter.ogg differ diff --git a/data/gnu/gplv1.ogg b/data/gnu/gplv1.ogg new file mode 100644 index 00000000..8103aae8 Binary files /dev/null and b/data/gnu/gplv1.ogg differ diff --git a/data/gnu/gplv2.ogg b/data/gnu/gplv2.ogg new file mode 100644 index 00000000..4350612c Binary files /dev/null and b/data/gnu/gplv2.ogg differ diff --git a/data/gnu/gplv3.ogg b/data/gnu/gplv3.ogg new file mode 100644 index 00000000..c5b87af0 Binary files /dev/null and b/data/gnu/gplv3.ogg differ diff --git a/data/gnu/knockdown.ogg b/data/gnu/knockdown.ogg new file mode 100644 index 00000000..06064c3a Binary files /dev/null and b/data/gnu/knockdown.ogg differ diff --git a/data/gnu/lock.ogg b/data/gnu/lock.ogg new file mode 100644 index 00000000..884b17ab Binary files /dev/null and b/data/gnu/lock.ogg differ diff --git a/data/gnu/multiball.wav b/data/gnu/multiball.wav new file mode 100644 index 00000000..6513fa56 Binary files /dev/null and b/data/gnu/multiball.wav differ diff --git a/data/gnu/music.ogg b/data/gnu/music.ogg new file mode 100644 index 00000000..e496f36e Binary files /dev/null and b/data/gnu/music.ogg differ diff --git a/data/gnu/nudge.wav b/data/gnu/nudge.wav new file mode 100755 index 00000000..e39fbea4 Binary files /dev/null and b/data/gnu/nudge.wav differ diff --git a/data/gnu/pinball.pbl b/data/gnu/pinball.pbl new file mode 100755 index 00000000..7e8b1a34 --- /dev/null +++ b/data/gnu/pinball.pbl @@ -0,0 +1,26834 @@ +version { 0 3 0 } +object walls { + 0 0 0 + 0 0 0 + 1 1 1 + shape { + vts { 331 } + pls { 131 } + bhi { } + vtx { + -4 1 37.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -4 -1 37.1 + 0 0.6 0 1 + 0 0 + } + vtx { + 18 1 29.5 + 0 0.6 0 1 + 0 0 + } + vtx { + 18 -1 29.5 + 0 0.6 0 1 + 0 0 + } + vtx { + 18 1 13.1 + 0 0.6 0 1 + 0 0 + } + vtx { + 18 -1 13 + 0 0.6 0 1 + 0 0 + } + vtx { + 17 1 11.6 + 0 0.6 0 1 + 0 0 + } + vtx { + 17 -1 11.6 + 0 0.6 0 1 + 0 0 + } + vtx { + 10.6161 1 -2.75897 + 0 0.6 0 1 + 0 0 + } + vtx { + 10.6161 -1 -2.75897 + 0 0.6 0 1 + 0 0 + } + vtx { + -19 1 10 + 0 0.6 0 1 + 0 0 + } + vtx { + -19 -1 10 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 13.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 13.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 29.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 29.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -8.25 -1 29.125 + 0 0.6 0 1 + 0 0 + } + vtx { + -8.25 0.5 29.125 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.5 -1 24.625 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.5 0.5 24.625 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.5 -1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.5 0.5 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + -18 -1 15.625 + 0 0.6 0 1 + 0 0 + } + vtx { + -18 0.5 15.625 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.375 -1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.375 0.5 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.5 -1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.5 0.5 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.5 -1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.5 0.5 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.375 -1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.375 0.5 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 15 -1 15.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 15 0.5 15.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.5 -1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.5 0.5 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.5 -1 24.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.5 0.5 24.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 5.25 -1 29.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 5.25 0.5 29.125 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.5 -1 25.125 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.5 0.5 25.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.5 -1 25.375 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.5 0.5 25.375 + 0 0.6 0 1 + 0 0 + } + vtx { + 17 1 -3.9 + 0 0.6 0 1 + 0 0 + } + vtx { + 17 -1 -3.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.8 1 7.8 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.8 -1 7.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 1 1 37.1 + 0 0.6 0 1 + 0 0 + } + vtx { + 1 -1 37.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -3 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 -3 + 0 0.6 0 1 + 0 0 + } + vtx { + -7.33334 1 -42 + 0 0.6 0 1 + 0 0 + } + vtx { + -7.33334 -1 -42 + 0 0.6 0 1 + 0 0 + } + vtx { + 5.9 1 -42 + 0 0.6 0 1 + 0 0 + } + vtx { + 5.9 -1 -42 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -11 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 -11 + 0 0.6 0 1 + 0 0 + } + vtx { + 13.0233 1 -40.9833 + 0 0.6 0 1 + 0 0 + } + vtx { + 13.0233 -1 -40.9833 + 0 0.6 0 1 + 0 0 + } + vtx { + 19.6067 1 -35.7 + 0 0.6 0 1 + 0 0 + } + vtx { + 19.6067 -1 -35.7 + 0 0.6 0 1 + 0 0 + } + vtx { + 21.01 1 -24.89 + 0 0.6 0 1 + 0 0 + } + vtx { + 21.01 -1 -24.89 + 0 0.6 0 1 + 0 0 + } + vtx { + 21 1 -1.9 + 0 0.6 0 1 + 0 0 + } + vtx { + 21 -1 -1.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -14 1 18.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -14 -1 18.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -14 1 16.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -14 -1 16.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -15 1 16.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -15 -1 16.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -15 1 22.8 + 0 0.6 0 1 + 0 0 + } + vtx { + -15 -1 22.8 + 0 0.6 0 1 + 0 0 + } + vtx { + -11 1 24.8 + 0 0.6 0 1 + 0 0 + } + vtx { + -11 -1 24.8 + 0 0.6 0 1 + 0 0 + } + vtx { + -10.45 1 24.5 + 0 0.6 0 1 + 0 0 + } + vtx { + -10.45 -1 24.5 + 0 0.6 0 1 + 0 0 + } + vtx { + -10.45 1 23.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -10.45 -1 23.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.8167 1 -32.7 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.8167 -1 -32.7 + 0 0.6 0 1 + 0 0 + } + vtx { + -21.0617 1 -28.0175 + 0 0.6 0 1 + 0 0 + } + vtx { + -21.0617 -1 -28.0175 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.2667 1 -36.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.2667 -1 -36.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -19.0001 1 -38.9333 + 0 0.6 0 1 + 0 0 + } + vtx { + -19.0001 -1 -38.9333 + 0 0.6 0 1 + 0 0 + } + vtx { + -14.1733 1 -41.0867 + 0 0.6 0 1 + 0 0 + } + vtx { + -14.1733 -1 -41.0867 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.625 -1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.625 0.5 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.625 -1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.625 0.5 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + -14.5 1 15.6 + 0 0.6 0 1 + 0 0 + } + vtx { + -14.5 -1 15.6 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.25 1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.25 -1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.5 1 15.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.5 -1 15.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 12 1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 12 -1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 12 1 22.6 + 0 0.6 0 1 + 0 0 + } + vtx { + 12 -1 22.6 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.875 1 24.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.875 -1 24.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.5 1 24.5 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.5 -1 24.5 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.5 1 23.875 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.5 -1 23.875 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.875 1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.875 -1 15.75 + 0 0.6 0 1 + 0 0 + } + vtx { + -19.75 1 4.625 + 0 0.6 0 1 + 0 0 + } + vtx { + -19.75 -1 4.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 7 1 -2 + 0 0.6 0 1 + 0 0 + } + vtx { + 7 -1 -2 + 0 0.6 0 1 + 0 0 + } + vtx { + 21.01 1 32.01 + 0 0.6 0 1 + 0 0 + } + vtx { + 21.01 -1 32.01 + 0 0.6 0 1 + 0 0 + } + vtx { + 20.6067 1 -31.2 + 0 0.6 0 1 + 0 0 + } + vtx { + 20.6067 -1 -31.2 + 0 0.6 0 1 + 0 0 + } + vtx { + 17.6467 1 -5.93111 + 0 0.6 0 1 + 0 0 + } + vtx { + 17.6467 -1 -5.9 + 0 0.6 0 1 + 0 0 + } + vtx { + 17.01 1 -38.7233 + 0 0.6 0 1 + 0 0 + } + vtx { + 17.01 -1 -38.7233 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.0667 1 -40.2067 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.0667 -1 -40.2067 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.975 1 23.05 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.975 -1 23.05 + 0 0.6 0 1 + 0 0 + } + vtx { + -12 1 23.05 + 0 0.6 0 1 + 0 0 + } + vtx { + -12 -1 23.05 + 0 0.6 0 1 + 0 0 + } + vtx { + 18.01 1 32.01 + 0 0.6 0 1 + 0 0 + } + vtx { + 18.01 -1 32.01 + 0 0.6 0 1 + 0 0 + } + vtx { + 18.01 1 31.01 + 0 0.6 0 1 + 0 0 + } + vtx { + 18.01 -1 31.01 + 0 0.6 0 1 + 0 0 + } + vtx { + 21 1 42 + 0 0.6 0 1 + 0 0 + } + vtx { + 21 -1 42 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.25 -1 25.875 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.25 0.5 25.875 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.5 -1 26.5 + 0 0.6 0 1 + 0 0 + } + vtx { + 14.5 0.5 26.5 + 0 0.6 0 1 + 0 0 + } + vtx { + 6.125 -1 30.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 6.125 0.5 30.625 + 0 0.6 0 1 + 0 0 + } + vtx { + 11 1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 11 -1 16.125 + 0 0.6 0 1 + 0 0 + } + vtx { + 11 1 18 + 0 0.6 0 1 + 0 0 + } + vtx { + 11 -1 18 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.25 -1 25.875 + 0 0.6 0 1 + 0 0 + } + vtx { + -18.25 0.5 25.875 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.5 -1 26.5 + 0 0.6 0 1 + 0 0 + } + vtx { + -17.5 0.5 26.5 + 0 0.6 0 1 + 0 0 + } + vtx { + -9.125 -1 30.625 + 0 0.6 0 1 + 0 0 + } + vtx { + -9.125 0.5 30.625 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.625 1 0.875 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.625 -1 0.875 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.52105 1 -34.428 + 0 0.9 0 1 + 0 0 + } + vtx { + -4.52105 1 -33.428 + 0 0.9 0 1 + 0 0 + } + vtx { + -4.52105 1 -32.428 + 0 0.9 0 1 + 0 0 + } + vtx { + -4.22105 1 -31.928 + 0 0.9 0 1 + 0 0 + } + vtx { + -3.72105 1 -31.928 + 0 0.9 0 1 + 0 0 + } + vtx { + -3.52105 1 -32.428 + 0 0.9 0 1 + 0 0 + } + vtx { + -3.52105 1 -34.428 + 0 0.9 0 1 + 0 0 + } + vtx { + -3.72105 1 -34.878 + 0 0.9 0 1 + 0 0 + } + vtx { + -4.32105 1 -34.828 + 0 0.9 0 1 + 0 0 + } + vtx { + -4.52105 -1 -34.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.52105 1 -34.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.52105 1 -33.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.52105 -1 -33.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.32105 1 -34.8566 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.30676 -1 -34.8566 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.52105 1 -32.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.52105 -1 -32.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.22105 1 -31.928 + 0 0.6 0 1 + 0 0 + } + vtx { + -4.22105 -1 -31.928 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.72105 1 -31.928 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.77105 -1 -31.928 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.52105 1 -32.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.52105 -1 -32.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.52105 1 -34.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.52105 -1 -34.428 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.72105 1 -34.878 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.72105 -1 -34.878 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.9444 0 13.1111 + 1 1 1 1 + 0 0 + } + vtx { + -21 0 -3.11111 + 1 1 1 1 + 0 0 + } + vtx { + -20.6111 0 0.888889 + 1 1 1 1 + 0 0 + } + vtx { + -19.7222 0 4.66667 + 1 1 1 1 + 0 0 + } + vtx { + -18.3333 0 7.72222 + 1 1 1 1 + 0 0 + } + vtx { + -19 0 10.0556 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 -0.5 + 0 0.9 0 1 + 0 0 + } + vtx { + -21 1 -0.5 + 0 0.9 0 1 + 0 0 + } + vtx { + -21 1 -0.5 + 0 0.9 0 1 + 0 0 + } + vtx { + -21 1 -0.5 + 0 0.9 0 1 + 0 0 + } + vtx { + -21 0 -0.5 + 0 0.9 0 1 + 0 0 + } + vtx { + -0.554383 1 -34.4947 + 0 0.9 0 1 + 0 0 + } + vtx { + -0.554383 1 -33.4947 + 0 0.9 0 1 + 0 0 + } + vtx { + -0.554383 1 -32.4947 + 0 0.9 0 1 + 0 0 + } + vtx { + -0.254383 1 -31.9947 + 0 0.9 0 1 + 0 0 + } + vtx { + 0.245617 1 -31.9947 + 0 0.9 0 1 + 0 0 + } + vtx { + 0.445617 1 -32.4947 + 0 0.9 0 1 + 0 0 + } + vtx { + 0.445617 1 -34.4947 + 0 0.9 0 1 + 0 0 + } + vtx { + 0.245617 1 -34.9447 + 0 0.9 0 1 + 0 0 + } + vtx { + -0.354383 1 -34.8947 + 0 0.9 0 1 + 0 0 + } + vtx { + -0.554383 -1 -34.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.554383 1 -34.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.554383 1 -33.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.554383 -1 -33.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.354383 1 -34.9233 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.340093 -1 -34.9233 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.554383 1 -32.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.554383 -1 -32.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.254383 1 -31.9947 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.254383 -1 -31.9947 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.245617 1 -31.9947 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.195617 -1 -31.9947 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.445617 1 -32.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.445617 -1 -32.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.445617 1 -34.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.445617 -1 -34.4947 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.245617 1 -34.9447 + 0 0.6 0 1 + 0 0 + } + vtx { + 0.245617 -1 -34.9447 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.46667 1 -34.3754 + 0 0.9 0 1 + 0 0 + } + vtx { + 3.46667 1 -33.3754 + 0 0.9 0 1 + 0 0 + } + vtx { + 3.46667 1 -32.3754 + 0 0.9 0 1 + 0 0 + } + vtx { + 3.76667 1 -31.8754 + 0 0.9 0 1 + 0 0 + } + vtx { + 4.26667 1 -31.8754 + 0 0.9 0 1 + 0 0 + } + vtx { + 4.46667 1 -32.3754 + 0 0.9 0 1 + 0 0 + } + vtx { + 4.46667 1 -34.3754 + 0 0.9 0 1 + 0 0 + } + vtx { + 4.26667 1 -34.8254 + 0 0.9 0 1 + 0 0 + } + vtx { + 3.66667 1 -34.7754 + 0 0.9 0 1 + 0 0 + } + vtx { + 3.46667 -1 -34.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.46667 1 -34.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.46667 1 -33.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.46667 -1 -33.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.66667 1 -34.804 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.68096 -1 -34.804 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.46667 1 -32.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.46667 -1 -32.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.76667 1 -31.8754 + 0 0.6 0 1 + 0 0 + } + vtx { + 3.76667 -1 -31.8754 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.26667 1 -31.8754 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.21667 -1 -31.8754 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.46667 1 -32.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.46667 -1 -32.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.46667 1 -34.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.46667 -1 -34.3754 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.26667 1 -34.8254 + 0 0.6 0 1 + 0 0 + } + vtx { + 4.26667 -1 -34.8254 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.40702 1 -34.3895 + 0 0.9 0 1 + 0 0 + } + vtx { + 7.40702 1 -33.3895 + 0 0.9 0 1 + 0 0 + } + vtx { + 7.40702 1 -32.3895 + 0 0.9 0 1 + 0 0 + } + vtx { + 7.70702 1 -31.8895 + 0 0.9 0 1 + 0 0 + } + vtx { + 8.20702 1 -31.8895 + 0 0.9 0 1 + 0 0 + } + vtx { + 8.40702 1 -32.3895 + 0 0.9 0 1 + 0 0 + } + vtx { + 8.40702 1 -34.3895 + 0 0.9 0 1 + 0 0 + } + vtx { + 8.20702 1 -34.8395 + 0 0.9 0 1 + 0 0 + } + vtx { + 7.60702 1 -34.7895 + 0 0.9 0 1 + 0 0 + } + vtx { + 7.40702 -1 -34.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.40702 1 -34.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.40702 1 -33.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.40702 -1 -33.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.60702 1 -34.8181 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.62131 -1 -34.8181 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.40702 1 -32.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.40702 -1 -32.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.70702 1 -31.8895 + 0 0.6 0 1 + 0 0 + } + vtx { + 7.70702 -1 -31.8895 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.20702 1 -31.8895 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.15702 -1 -31.8895 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.40702 1 -32.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.40702 -1 -32.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.40702 1 -34.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.40702 -1 -34.3895 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.20702 1 -34.8395 + 0 0.6 0 1 + 0 0 + } + vtx { + 8.20702 -1 -34.8395 + 0 0.6 0 1 + 0 0 + } + vtx { + 18 -1 -4.7 + 1 1 1 1 + 0 0 + } + vtx { + 17.9628 -1 7.65166 + 1 1 1 1 + 0 0 + } + vtx { + 17.9628 1 7.58995 + 1 1 1 1 + 0 0 + } + vtx { + 18 1 -4.7 + 1 1 1 1 + 0 0 + } + vtx { + -21 -1 -8.87054 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -8.87054 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -5.22849 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 -5.22849 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 -19 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -19 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -4.38666 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 -4.38666 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -2.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 -1 -2.9 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.1564 1 -3.6 + 0 0.6 0 1 + 0 0 + } + vtx { + -20.1985 -1 -3.56093 + 0 0.6 0 1 + 0 0 + } + vtx { + -19.7181 1 -4 + 0 0.6 0 1 + 0 0 + } + vtx { + -19.7181 -1 -4 + 0 0.6 0 1 + 0 0 + } + vtx { + -16.508 1 -8.0818 + 0 0.6 0 1 + 0 0 + } + vtx { + -16.508 -1 -8.1 + 0 0.6 0 1 + 0 0 + } + vtx { + -14 1 -11 + 0 0.6 0 1 + 0 0 + } + vtx { + -14 -1 -11 + 0 0.6 0 1 + 0 0 + } + vtx { + -21 1 -19 + 1 1 1 1 + 0 0 + } + vtx { + -14 1 -11 + 1 1 1 1 + 0 0 + } + vtx { + -16.5 1 -8.1 + 1 1 1 1 + 0 0 + } + vtx { + -20 1 -3.7 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 -3 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 -4.4 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 -5.2 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 -8.9 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 -10 + 1 1 1 1 + 0 0 + } + vtx { + 11.4602 1 -33.103 + 0 0.9 0 1 + 0 0 + } + vtx { + 11.829 1 -33.5788 + 0 0.9 0 1 + 0 0 + } + vtx { + 12.2958 1 -33.4219 + 0 0.9 0 1 + 0 0 + } + vtx { + 16.9955 1 -29.1251 + 0 0.9 0 1 + 0 0 + } + vtx { + 17.1785 1 -28.6854 + 0 0.9 0 1 + 0 0 + } + vtx { + 16.8401 1 -28.3167 + 0 0.9 0 1 + 0 0 + } + vtx { + 16.3187 1 -28.3877 + 0 0.9 0 1 + 0 0 + } + vtx { + 15.6819 1 -28.9721 + 0 0.9 0 1 + 0 0 + } + vtx { + 11.6196 1 -32.6852 + 0 0.9 0 1 + 0 0 + } + vtx { + 11.6196 -1 -32.6852 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.6196 1 -32.6852 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.6819 1 -28.9721 + 0 0.6 0 1 + 0 0 + } + vtx { + 15.6819 -1 -28.9721 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.4488 -1 -33.1329 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.4391 1 -33.1223 + 0 0.6 0 1 + 0 0 + } + vtx { + 16.3187 1 -28.3877 + 0 0.6 0 1 + 0 0 + } + vtx { + 16.3187 -1 -28.3877 + 0 0.6 0 1 + 0 0 + } + vtx { + 16.8401 1 -28.3167 + 0 0.6 0 1 + 0 0 + } + vtx { + 16.8401 -1 -28.3167 + 0 0.6 0 1 + 0 0 + } + vtx { + 17.1785 1 -28.6854 + 0 0.6 0 1 + 0 0 + } + vtx { + 17.1447 -1 -28.6486 + 0 0.6 0 1 + 0 0 + } + vtx { + 16.9955 1 -29.1251 + 0 0.6 0 1 + 0 0 + } + vtx { + 16.9955 -1 -29.1251 + 0 0.6 0 1 + 0 0 + } + vtx { + 12.2958 1 -33.4219 + 0 0.6 0 1 + 0 0 + } + vtx { + 12.2958 -1 -33.4219 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.829 1 -33.5788 + 0 0.6 0 1 + 0 0 + } + vtx { + 11.829 -1 -33.5788 + 0 0.6 0 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 5 } + ple { 4 } + ple { 2 } + } + ply { + pes { 4 } + ple { 5 } + ple { 7 } + ple { 6 } + ple { 4 } + } + ply { + pes { 4 } + ple { 11 } + ple { 13 } + ple { 12 } + ple { 10 } + } + ply { + pes { 4 } + ple { 13 } + ple { 15 } + ple { 14 } + ple { 12 } + } + ply { + pes { 4 } + ple { 15 } + ple { 1 } + ple { 0 } + ple { 14 } + } + ply { + pes { 4 } + ple { 17 } + ple { 19 } + ple { 18 } + ple { 16 } + } + ply { + pes { 4 } + ple { 19 } + ple { 21 } + ple { 20 } + ple { 18 } + } + ply { + pes { 4 } + ple { 23 } + ple { 25 } + ple { 24 } + ple { 22 } + } + ply { + pes { 4 } + ple { 25 } + ple { 27 } + ple { 26 } + ple { 24 } + } + ply { + pes { 4 } + ple { 29 } + ple { 31 } + ple { 30 } + ple { 28 } + } + ply { + pes { 4 } + ple { 31 } + ple { 33 } + ple { 32 } + ple { 30 } + } + ply { + pes { 4 } + ple { 35 } + ple { 37 } + ple { 36 } + ple { 34 } + } + ply { + pes { 4 } + ple { 37 } + ple { 39 } + ple { 38 } + ple { 36 } + } + ply { + pes { 4 } + ple { 43 } + ple { 29 } + ple { 28 } + ple { 42 } + } + ply { + pes { 4 } + ple { 41 } + ple { 40 } + ple { 26 } + ple { 27 } + } + ply { + pes { 4 } + ple { 46 } + ple { 47 } + ple { 11 } + ple { 10 } + } + ply { + pes { 4 } + ple { 49 } + ple { 3 } + ple { 2 } + ple { 48 } + } + ply { + pes { 4 } + ple { 55 } + ple { 53 } + ple { 52 } + ple { 54 } + } + ply { + pes { 4 } + ple { 57 } + ple { 51 } + ple { 50 } + ple { 56 } + } + ply { + pes { 4 } + ple { 65 } + ple { 63 } + ple { 62 } + ple { 64 } + } + ply { + pes { 4 } + ple { 66 } + ple { 68 } + ple { 69 } + ple { 67 } + } + ply { + pes { 4 } + ple { 72 } + ple { 73 } + ple { 71 } + ple { 70 } + } + ply { + pes { 4 } + ple { 74 } + ple { 75 } + ple { 73 } + ple { 72 } + } + ply { + pes { 4 } + ple { 78 } + ple { 79 } + ple { 77 } + ple { 76 } + } + ply { + pes { 4 } + ple { 81 } + ple { 83 } + ple { 82 } + ple { 80 } + } + ply { + pes { 4 } + ple { 80 } + ple { 84 } + ple { 85 } + ple { 81 } + } + ply { + pes { 4 } + ple { 84 } + ple { 86 } + ple { 87 } + ple { 85 } + } + ply { + pes { 4 } + ple { 52 } + ple { 53 } + ple { 89 } + ple { 88 } + } + ply { + pes { 4 } + ple { 21 } + ple { 91 } + ple { 90 } + ple { 20 } + } + ply { + pes { 4 } + ple { 90 } + ple { 91 } + ple { 23 } + ple { 22 } + } + ply { + pes { 4 } + ple { 34 } + ple { 92 } + ple { 93 } + ple { 35 } + } + ply { + pes { 4 } + ple { 33 } + ple { 93 } + ple { 92 } + ple { 32 } + } + ply { + pes { 4 } + ple { 71 } + ple { 95 } + ple { 94 } + ple { 70 } + } + ply { + pes { 4 } + ple { 94 } + ple { 95 } + ple { 69 } + ple { 68 } + } + ply { + pes { 4 } + ple { 75 } + ple { 74 } + ple { 76 } + ple { 77 } + } + ply { + pes { 4 } + ple { 96 } + ple { 97 } + ple { 99 } + ple { 98 } + } + ply { + pes { 4 } + ple { 100 } + ple { 101 } + ple { 103 } + ple { 102 } + } + ply { + pes { 4 } + ple { 102 } + ple { 103 } + ple { 105 } + ple { 104 } + } + ply { + pes { 4 } + ple { 106 } + ple { 107 } + ple { 109 } + ple { 108 } + } + ply { + pes { 4 } + ple { 110 } + ple { 111 } + ple { 101 } + ple { 100 } + } + ply { + pes { 4 } + ple { 98 } + ple { 99 } + ple { 111 } + ple { 110 } + } + ply { + pes { 4 } + ple { 104 } + ple { 105 } + ple { 107 } + ple { 106 } + } + ply { + pes { 4 } + ple { 47 } + ple { 46 } + ple { 112 } + ple { 113 } + } + ply { + pes { 4 } + ple { 8 } + ple { 114 } + ple { 115 } + ple { 9 } + } + ply { + pes { 4 } + ple { 6 } + ple { 7 } + ple { 115 } + ple { 114 } + } + ply { + pes { 4 } + ple { 64 } + ple { 116 } + ple { 117 } + ple { 65 } + } + ply { + pes { 4 } + ple { 55 } + ple { 54 } + ple { 58 } + ple { 59 } + } + ply { + pes { 4 } + ple { 63 } + ple { 119 } + ple { 118 } + ple { 62 } + } + ply { + pes { 4 } + ple { 61 } + ple { 60 } + ple { 118 } + ple { 119 } + } + ply { + pes { 4 } + ple { 45 } + ple { 121 } + ple { 120 } + ple { 44 } + } + ply { + pes { 4 } + ple { 58 } + ple { 122 } + ple { 123 } + ple { 59 } + } + ply { + pes { 4 } + ple { 123 } + ple { 122 } + ple { 60 } + ple { 61 } + } + ply { + pes { 4 } + ple { 89 } + ple { 125 } + ple { 124 } + ple { 88 } + } + ply { + pes { 4 } + ple { 87 } + ple { 86 } + ple { 124 } + ple { 125 } + } + ply { + pes { 4 } + ple { 109 } + ple { 127 } + ple { 126 } + ple { 108 } + } + ply { + pes { 4 } + ple { 78 } + ple { 128 } + ple { 129 } + ple { 79 } + } + ply { + pes { 4 } + ple { 116 } + ple { 130 } + ple { 131 } + ple { 117 } + } + ply { + pes { 4 } + ple { 130 } + ple { 132 } + ple { 133 } + ple { 131 } + } + ply { + pes { 4 } + ple { 116 } + ple { 134 } + ple { 135 } + ple { 117 } + } + ply { + pes { 4 } + ple { 116 } + ple { 134 } + ple { 135 } + ple { 117 } + } + ply { + pes { 4 } + ple { 42 } + ple { 136 } + ple { 137 } + ple { 43 } + } + ply { + pes { 4 } + ple { 136 } + ple { 138 } + ple { 139 } + ple { 137 } + } + ply { + pes { 4 } + ple { 138 } + ple { 140 } + ple { 141 } + ple { 139 } + } + ply { + pes { 4 } + ple { 96 } + ple { 142 } + ple { 143 } + ple { 97 } + } + ply { + pes { 4 } + ple { 142 } + ple { 144 } + ple { 145 } + ple { 143 } + } + ply { + pes { 4 } + ple { 41 } + ple { 147 } + ple { 146 } + ple { 40 } + } + ply { + pes { 4 } + ple { 147 } + ple { 149 } + ple { 148 } + ple { 146 } + } + ply { + pes { 4 } + ple { 149 } + ple { 151 } + ple { 150 } + ple { 148 } + } + ply { + pes { 4 } + ple { 112 } + ple { 152 } + ple { 153 } + ple { 113 } + } + ply { + pes { 4 } + ple { 153 } + ple { 152 } + ple { 50 } + ple { 51 } + } + ply { + pes { 4 } + ple { 57 } + ple { 56 } + ple { 82 } + ple { 83 } + } + ply { + pes { 9 } + ple { 162 } + ple { 161 } + ple { 160 } + ple { 159 } + ple { 158 } + ple { 157 } + ple { 156 } + ple { 155 } + ple { 154 } + } + ply { + pes { 4 } + ple { 163 } + ple { 164 } + ple { 165 } + ple { 166 } + } + ply { + pes { 4 } + ple { 168 } + ple { 167 } + ple { 164 } + ple { 163 } + } + ply { + pes { 4 } + ple { 166 } + ple { 165 } + ple { 169 } + ple { 170 } + } + ply { + pes { 4 } + ple { 170 } + ple { 169 } + ple { 171 } + ple { 172 } + } + ply { + pes { 4 } + ple { 172 } + ple { 171 } + ple { 173 } + ple { 174 } + } + ply { + pes { 4 } + ple { 174 } + ple { 173 } + ple { 175 } + ple { 176 } + } + ply { + pes { 4 } + ple { 176 } + ple { 175 } + ple { 177 } + ple { 178 } + } + ply { + pes { 4 } + ple { 178 } + ple { 177 } + ple { 179 } + ple { 180 } + } + ply { + pes { 4 } + ple { 180 } + ple { 179 } + ple { 167 } + ple { 168 } + } + ply { + pes { 9 } + ple { 200 } + ple { 199 } + ple { 198 } + ple { 197 } + ple { 196 } + ple { 195 } + ple { 194 } + ple { 193 } + ple { 192 } + } + ply { + pes { 4 } + ple { 201 } + ple { 202 } + ple { 203 } + ple { 204 } + } + ply { + pes { 4 } + ple { 206 } + ple { 205 } + ple { 202 } + ple { 201 } + } + ply { + pes { 4 } + ple { 204 } + ple { 203 } + ple { 207 } + ple { 208 } + } + ply { + pes { 4 } + ple { 208 } + ple { 207 } + ple { 209 } + ple { 210 } + } + ply { + pes { 4 } + ple { 210 } + ple { 209 } + ple { 211 } + ple { 212 } + } + ply { + pes { 4 } + ple { 212 } + ple { 211 } + ple { 213 } + ple { 214 } + } + ply { + pes { 4 } + ple { 214 } + ple { 213 } + ple { 215 } + ple { 216 } + } + ply { + pes { 4 } + ple { 216 } + ple { 215 } + ple { 217 } + ple { 218 } + } + ply { + pes { 4 } + ple { 218 } + ple { 217 } + ple { 205 } + ple { 206 } + } + ply { + pes { 9 } + ple { 227 } + ple { 226 } + ple { 225 } + ple { 224 } + ple { 223 } + ple { 222 } + ple { 221 } + ple { 220 } + ple { 219 } + } + ply { + pes { 4 } + ple { 228 } + ple { 229 } + ple { 230 } + ple { 231 } + } + ply { + pes { 4 } + ple { 233 } + ple { 232 } + ple { 229 } + ple { 228 } + } + ply { + pes { 4 } + ple { 231 } + ple { 230 } + ple { 234 } + ple { 235 } + } + ply { + pes { 4 } + ple { 235 } + ple { 234 } + ple { 236 } + ple { 237 } + } + ply { + pes { 4 } + ple { 237 } + ple { 236 } + ple { 238 } + ple { 239 } + } + ply { + pes { 4 } + ple { 239 } + ple { 238 } + ple { 240 } + ple { 241 } + } + ply { + pes { 4 } + ple { 241 } + ple { 240 } + ple { 242 } + ple { 243 } + } + ply { + pes { 4 } + ple { 243 } + ple { 242 } + ple { 244 } + ple { 245 } + } + ply { + pes { 4 } + ple { 245 } + ple { 244 } + ple { 232 } + ple { 233 } + } + ply { + pes { 9 } + ple { 254 } + ple { 253 } + ple { 252 } + ple { 251 } + ple { 250 } + ple { 249 } + ple { 248 } + ple { 247 } + ple { 246 } + } + ply { + pes { 4 } + ple { 255 } + ple { 256 } + ple { 257 } + ple { 258 } + } + ply { + pes { 4 } + ple { 260 } + ple { 259 } + ple { 256 } + ple { 255 } + } + ply { + pes { 4 } + ple { 258 } + ple { 257 } + ple { 261 } + ple { 262 } + } + ply { + pes { 4 } + ple { 262 } + ple { 261 } + ple { 263 } + ple { 264 } + } + ply { + pes { 4 } + ple { 264 } + ple { 263 } + ple { 265 } + ple { 266 } + } + ply { + pes { 4 } + ple { 266 } + ple { 265 } + ple { 267 } + ple { 268 } + } + ply { + pes { 4 } + ple { 268 } + ple { 267 } + ple { 269 } + ple { 270 } + } + ply { + pes { 4 } + ple { 270 } + ple { 269 } + ple { 271 } + ple { 272 } + } + ply { + pes { 4 } + ple { 272 } + ple { 271 } + ple { 259 } + ple { 260 } + } + ply { + pes { 4 } + ple { 273 } + ple { 274 } + ple { 275 } + ple { 276 } + } + ply { + pes { 4 } + ple { 277 } + ple { 278 } + ple { 279 } + ple { 280 } + } + ply { + pes { 4 } + ple { 281 } + ple { 282 } + ple { 278 } + ple { 277 } + } + ply { + pes { 4 } + ple { 280 } + ple { 279 } + ple { 283 } + ple { 284 } + } + ply { + pes { 4 } + ple { 284 } + ple { 283 } + ple { 285 } + ple { 286 } + } + ply { + pes { 4 } + ple { 286 } + ple { 285 } + ple { 287 } + ple { 288 } + } + ply { + pes { 4 } + ple { 288 } + ple { 287 } + ple { 289 } + ple { 290 } + } + ply { + pes { 4 } + ple { 290 } + ple { 289 } + ple { 291 } + ple { 292 } + } + ply { + pes { 4 } + ple { 292 } + ple { 291 } + ple { 293 } + ple { 294 } + } + ply { + pes { 4 } + ple { 294 } + ple { 293 } + ple { 282 } + ple { 281 } + } + ply { + pes { 9 } + ple { 304 } + ple { 305 } + ple { 306 } + ple { 307 } + ple { 308 } + ple { 309 } + ple { 310 } + ple { 311 } + ple { 312 } + } + ply { + pes { 4 } + ple { 313 } + ple { 314 } + ple { 315 } + ple { 316 } + } + ply { + pes { 4 } + ple { 317 } + ple { 318 } + ple { 314 } + ple { 313 } + } + ply { + pes { 4 } + ple { 316 } + ple { 315 } + ple { 319 } + ple { 320 } + } + ply { + pes { 4 } + ple { 320 } + ple { 319 } + ple { 321 } + ple { 322 } + } + ply { + pes { 4 } + ple { 322 } + ple { 321 } + ple { 323 } + ple { 324 } + } + ply { + pes { 4 } + ple { 324 } + ple { 323 } + ple { 325 } + ple { 326 } + } + ply { + pes { 4 } + ple { 326 } + ple { 325 } + ple { 327 } + ple { 328 } + } + ply { + pes { 4 } + ple { 328 } + ple { 327 } + ple { 329 } + ple { 330 } + } + ply { + pes { 4 } + ple { 330 } + ple { 329 } + ple { 318 } + ple { 317 } + } + } + shape { + vts { 4 } + pls { 1 } + bhi { } + lit { } + tex { + tiles3.png + } + vtx { + 18.0087 1 13.0783 + 1 1 1 0 + 0.876687 0.664778 + } + vtx { + 17.7519 1 -3.94003 + 1 1 1 0 + 0.866655 0 + } + vtx { + 16.9483 1 -3.64483 + 1 1 1 0 + 0.835265 0.011531 + } + vtx { + 7.06552 1 -1.97586 + 1 1 1 0 + 0.449219 0.0767254 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + shape { + vts { 88 } + pls { 36 } + bhi { } + vtx { + 17.9 1 -6 + 0 1 0 1 + 0.640476 0 + } + vtx { + 17 1 -4 + 0 1 0 1 + 1 0.00238096 + } + vtx { + 18 1 13 + 0 1 0 1 + 0.809524 0.0119048 + } + vtx { + 7 1 -2 + 0 1 0 1 + 0.904762 0.0392857 + } + vtx { + 18 1 10 + 0 1 0 1 + 0.966667 0.075 + } + vtx { + -15 1 16.125 + 1 1 1 0 + 0.990476 0.128571 + } + vtx { + -14 1 16.125 + 1 1 1 0 + 1 0.203571 + } + vtx { + -10.45 1 23.9 + 1 1 1 0 + 0.754762 0.105952 + } + vtx { + -10.45 1 24.5 + 1 1 1 0 + 0.788095 0.107143 + } + vtx { + -11 1 24.8 + 1 1 1 0 + 0.783333 0.155952 + } + vtx { + -15 1 22.8 + 1 1 1 0 + 0.742857 0.184524 + } + vtx { + 11 1 16.1 + 1 1 1 1 + 0.72619 0.185714 + } + vtx { + 12 1 16.1 + 1 1 1 1 + 0.752381 0.0583334 + } + vtx { + 7.875 1 24.75 + 1 1 1 1 + 0.790476 0.0630952 + } + vtx { + 7.5 1 24.5 + 1 1 1 1 + 0.85 0.077381 + } + vtx { + 7.5 1 23.875 + 1 1 1 1 + 0.897619 0.108333 + } + vtx { + 12 1 22.6 + 0 1 0 1 + 0.864286 0.107143 + } + vtx { + -17.5 0.5 16.125 + 1 1 1 1 + 0.916667 0.142857 + } + vtx { + -18.5 0.5 16.125 + 1 1 1 1 + 0.869048 0.154762 + } + vtx { + -17.5 0.5 24.5 + 1 1 1 1 + 0.864286 0.211905 + } + vtx { + -17.5 0.5 26.5 + 1 1 1 1 + 0.928571 0.204762 + } + vtx { + -18.685 0.5 23.8059 + 1 1 1 1 + 0.842857 0.294048 + } + vtx { + -9.04 0.5 29.315 + 1 1 1 1 + 0.930952 0.310714 + } + vtx { + -9.3 0.5 29.85 + 1 1 1 1 + 0.802381 0.37381 + } + vtx { + 14.5 0.5 16.1 + 1 1 1 1 + 0.85 0.377381 + } + vtx { + 15.5 0.5 16.1 + 1 1 1 1 + 0.892857 0.392857 + } + vtx { + 14.5 0.5 24.6 + 1 1 1 1 + 0.919048 0.428571 + } + vtx { + 15.52 0.5 25.375 + 1 1 1 1 + 0.928571 0.479762 + } + vtx { + 14.52 0.5 26.515 + 1 1 1 1 + 0.919048 0.535714 + } + vtx { + 6 0.5 29.35 + 1 1 1 1 + 0.928571 0.655952 + } + vtx { + 6.33 0.5 29.925 + 1 1 1 1 + 0.885714 0.579762 + } + vtx { + -21 1 29.1 + 0 0.45 0 1 + 0.830952 0.621429 + } + vtx { + -4 1 37.075 + 0 0.45 0 1 + 0.142857 0.690476 + } + vtx { + -21 1 42 + 0 0.45 0 1 + 0.154762 0.684524 + } + vtx { + -4 1 42 + 0 0.45 0 1 + 0.166667 0.690476 + } + vtx { + 1 1 37.1 + 0 0.5 0 1 + 0.25 0.784524 + } + vtx { + 18 1 29.525 + 0 0.5 0 1 + 0.25 0.791667 + } + vtx { + 18 1 42 + 0 0.5 0 1 + 0.238095 0.795238 + } + vtx { + 1 1 42 + 0 0.5 0 1 + 0.145238 0.770238 + } + vtx { + -2.9633 0 0.171611 + 0 1 1 1 + 0.761905 0.690476 + } + vtx { + -19.75 0 4.625 + 0 1 1 1 + 0.77381 0.684524 + } + vtx { + -18.375 0 7.75 + 0 1 1 1 + 0.785714 0.690476 + } + vtx { + -16.975 0 10.125 + 0 1 1 1 + 0.688095 0.795238 + } + vtx { + -3.01718 0 2.57417 + 0 1 1 1 + 0.67619 0.791667 + } + vtx { + 21 1 38 + 0.9 0.9 0.1 1 + 0.67619 0.784524 + } + vtx { + 21 1 42 + 0 0.5 0 1 + 0.785714 0.769048 + } + vtx { + 18 1 38 + 0.9 0.9 0.1 1 + 0.0714286 0.686905 + } + vtx { + -21 -1 42 + 0 1 1 1 + 0.0833333 0.692857 + } + vtx { + -4 -1 42 + 0 1 1 1 + 0.0595238 0.692857 + } + vtx { + 18 -1 42 + 0 0.5 0 1 + 0.0833333 0.794048 + } + vtx { + 1 -1 42 + 0 0.5 0 1 + 0.0833333 0.811905 + } + vtx { + 21 -1 42 + 0 0.5 0 1 + 0.0595238 0.8 + } + vtx { + 18 1 32 + 0.9 0.9 0.1 1 + 0.297619 0.846429 + } + vtx { + 19 1 32 + 0.9 0.9 0.1 1 + 0.285714 0.857143 + } + vtx { + 19 1 38 + 0.9 0.9 0.1 1 + 0.845238 0.692857 + } + vtx { + 20 1 38 + 0.9 0.9 0.1 1 + 0.857143 0.685714 + } + vtx { + 20 1 32 + 0.9 0.9 0.1 1 + 0.869048 0.692857 + } + vtx { + 21 1 32 + 0.9 0.9 0.1 1 + 0.845238 0.792857 + } + vtx { + -18.375 0.5 15.75 + 1 1 1 1 + 0.869048 0.8 + } + vtx { + -18 0.5 15.625 + 1 1 1 1 + 0.845238 0.813095 + } + vtx { + -17.625 0.5 15.75 + 1 1 1 1 + 0.630952 0.845238 + } + vtx { + -14.25 1 15.75 + 1 1 1 0 + 0.645238 0.858333 + } + vtx { + -14.5 1 15.625 + 1 1 1 0 + 0 0.847619 + } + vtx { + -14.875 1 15.75 + 1 1 1 0 + 0.404762 0.940476 + } + vtx { + 11.875 1 15.75 + 1 1 1 1 + 0 1 + } + vtx { + 11.5 1 15.625 + 1 1 1 1 + 0.404762 1 + } + vtx { + 11.25 1 15.75 + 1 1 1 1 + 0.52381 0.941667 + } + vtx { + 15.375 0.5 15.75 + 1 1 1 1 + 0.928571 0.852381 + } + vtx { + 15 0.5 15.625 + 1 1 1 1 + 0.928571 1 + } + vtx { + 14.625 0.5 15.75 + 1 1 1 1 + 0.52381 1 + } + vtx { + 15.25 0.5 25.875 + 1 1 1 1 + 0.416667 0.0595238 + } + vtx { + 5.675 0.5 29.16 + 1 1 1 1 + 0.428571 0.0535714 + } + vtx { + 6.29 0.5 30.36 + 1 1 1 1 + 0.440476 0.0595238 + } + vtx { + 5.25 0.5 29.125 + 1 1 1 1 + 0.440476 0.0952381 + } + vtx { + 6.125 0.5 30.625 + 1 1 1 1 + 0.428571 0.10119 + } + vtx { + -18.5 0.5 25.5 + 1 1 1 1 + 0.416667 0.0952381 + } + vtx { + -8.25 0.5 29.15 + 1 1 1 1 + 0 0 + } + vtx { + -8.725 0.5 29.125 + 1 1 1 1 + 0 0 + } + vtx { + -9.325 0.5 30.225 + 1 1 1 1 + 0 0 + } + vtx { + -9.125 0.5 30.625 + 1 1 1 1 + 0 0 + } + vtx { + -3.01718 0 -0.588382 + 0 1 1 1 + 0 0 + } + vtx { + 0.666667 0 12.4167 + 1 1 1 1 + 0 0 + } + vtx { + -17.8 1 7.7 + 1 1 1 1 + 0 0 + } + vtx { + -19 1 10 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 13 + 1 1 1 1 + 0 0 + } + vtx { + -21 1 -3 + 1 1 1 1 + 0 0 + } + vtx { + -20.6 1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + -19.8 1 4.6 + 1 1 1 1 + 0 0 + } + ply { + pes { 3 } + ple { 7 } + ple { 8 } + ple { 9 } + } + ply { + pes { 3 } + ple { 13 } + ple { 14 } + ple { 15 } + } + ply { + pes { 4 } + ple { 18 } + ple { 17 } + ple { 19 } + ple { 21 } + } + ply { + pes { 4 } + ple { 20 } + ple { 19 } + ple { 22 } + ple { 23 } + } + ply { + pes { 4 } + ple { 24 } + ple { 25 } + ple { 27 } + ple { 26 } + } + ply { + pes { 4 } + ple { 30 } + ple { 29 } + ple { 26 } + ple { 28 } + } + ply { + pes { 4 } + ple { 34 } + ple { 33 } + ple { 31 } + ple { 32 } + } + ply { + pes { 4 } + ple { 38 } + ple { 35 } + ple { 36 } + ple { 37 } + } + ply { + pes { 4 } + ple { 34 } + ple { 32 } + ple { 35 } + ple { 38 } + } + ply { + pes { 3 } + ple { 41 } + ple { 42 } + ple { 43 } + } + ply { + pes { 3 } + ple { 40 } + ple { 41 } + ple { 43 } + } + ply { + pes { 3 } + ple { 39 } + ple { 40 } + ple { 43 } + } + ply { + pes { 4 } + ple { 44 } + ple { 45 } + ple { 37 } + ple { 46 } + } + ply { + pes { 4 } + ple { 34 } + ple { 48 } + ple { 47 } + ple { 33 } + } + ply { + pes { 4 } + ple { 38 } + ple { 50 } + ple { 48 } + ple { 34 } + } + ply { + pes { 4 } + ple { 37 } + ple { 49 } + ple { 50 } + ple { 38 } + } + ply { + pes { 4 } + ple { 45 } + ple { 51 } + ple { 49 } + ple { 37 } + } + ply { + pes { 4 } + ple { 46 } + ple { 52 } + ple { 53 } + ple { 54 } + } + ply { + pes { 4 } + ple { 44 } + ple { 55 } + ple { 56 } + ple { 57 } + } + ply { + pes { 5 } + ple { 17 } + ple { 18 } + ple { 58 } + ple { 59 } + ple { 60 } + } + ply { + pes { 5 } + ple { 63 } + ple { 62 } + ple { 61 } + ple { 6 } + ple { 5 } + } + ply { + pes { 5 } + ple { 66 } + ple { 65 } + ple { 64 } + ple { 12 } + ple { 11 } + } + ply { + pes { 5 } + ple { 69 } + ple { 68 } + ple { 67 } + ple { 25 } + ple { 24 } + } + ply { + pes { 3 } + ple { 26 } + ple { 27 } + ple { 70 } + } + ply { + pes { 3 } + ple { 70 } + ple { 28 } + ple { 26 } + } + ply { + pes { 3 } + ple { 29 } + ple { 71 } + ple { 26 } + } + ply { + pes { 3 } + ple { 28 } + ple { 72 } + ple { 30 } + } + ply { + pes { 3 } + ple { 71 } + ple { 73 } + ple { 26 } + } + ply { + pes { 3 } + ple { 28 } + ple { 74 } + ple { 72 } + } + ply { + pes { 3 } + ple { 75 } + ple { 21 } + ple { 19 } + } + ply { + pes { 3 } + ple { 19 } + ple { 20 } + ple { 75 } + } + ply { + pes { 3 } + ple { 19 } + ple { 76 } + ple { 77 } + } + ply { + pes { 3 } + ple { 19 } + ple { 77 } + ple { 22 } + } + ply { + pes { 3 } + ple { 23 } + ple { 78 } + ple { 20 } + } + ply { + pes { 3 } + ple { 79 } + ple { 20 } + ple { 78 } + } + ply { + pes { 3 } + ple { 40 } + ple { 41 } + ple { 43 } + } + } + shape { + vts { 6 } + pls { 1 } + bhi { } + tex { + tiles3.png + } + vtx { + -17.8 1 7.7 + 1 1 1 1 + 0.125 0.417969 + } + vtx { + -19 1 10 + 1 1 1 1 + 0.07812 0.507812 + } + vtx { + -21 1 13 + 1 1 1 1 + 0 0.625 + } + vtx { + -21 1 -3 + 1 1 1 1 + 0 0 + } + vtx { + -20.6 1 0.8 + 1 1 1 1 + 0.01562 0.148438 + } + vtx { + -19.8 1 4.6 + 1 1 1 1 + 0.04687 0.296875 + } + ply { + pes { 6 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + ple { 4 } + ple { 5 } + } + } + shape { + vts { 9 } + pls { 1 } + bhi { } + tex { + tiles3.png + } + vtx { + -21.0238 1 -18.9048 + 1 1 1 1 + 0.15625 0 + } + vtx { + -14.0238 1 -10.9048 + 1 1 1 1 + 0.42969 0.3125 + } + vtx { + -16.5238 1 -8.00476 + 1 1 1 1 + 0.33203 0.42578 + } + vtx { + -20.0238 1 -3.60476 + 1 1 1 1 + 0.19531 0.59766 + } + vtx { + -21.0238 1 -2.90476 + 1 1 1 1 + 0.15625 0.625 + } + vtx { + -21.0238 1 -4.30476 + 1 1 1 1 + 0.15625 0.57031 + } + vtx { + -21.0238 1 -5.10476 + 1 1 1 1 + 0.15625 0.53906 + } + vtx { + -21.0238 1 -8.80476 + 1 1 1 1 + 0.15625 0.39453 + } + vtx { + -21.0238 1 -9.90476 + 1 1 1 1 + 0.15625 0.35156 + } + ply { + pes { 9 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + ple { 4 } + ple { 5 } + ple { 6 } + ple { 7 } + ple { 8 } + } + } + properties { + collision + transform_once + wall + group_1 + } +} +object left_flipper { + -8.5 0 30.0167 + 0 0.05 0 + 1 1 1 + shape { + vts { 8 } + pls { 2 } + hid { } + vtx { + -0.5 1 0.875 + 1 1 1 1 + 0 0 + } + vtx { + 5.6 1 0.38 + 1 1 1 1 + 0 0 + } + vtx { + 5.6 -1 0.38 + 1 1 1 1 + 0 0 + } + vtx { + -0.5 -1 0.875 + 1 1 1 1 + 0 0 + } + vtx { + -0.5 1 -0.875 + 1 1 1 1 + 0 0 + } + vtx { + -0.5 -1 -0.875 + 1 1 1 1 + 0 0 + } + vtx { + 5.6 -1 -0.38 + 1 1 1 1 + 0 0 + } + vtx { + 5.6 1 -0.38 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + ply { + pes { 4 } + ple { 4 } + ple { 5 } + ple { 6 } + ple { 7 } + } + } + shape { + vts { 55 } + pls { 23 } + vtx { + -0.625 1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.625 1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.625 1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.625 1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.375 1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.375 1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 1 -0.371495 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 1 -0.371495 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.5537 1 -0.265353 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.5537 1 -0.265353 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.62227 1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.62227 1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.5537 1 0.265353 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.5537 1 0.265353 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 1 0.371495 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 1 0.371495 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.375 1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.375 1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.3125 1.125 -0.1875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 1.125 -0.5625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 1.125 -0.212283 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.34801 1.125 -0.106141 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 1.125 0.212283 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 1.125 0.5625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.1875 1.125 0.4375 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.3125 1.125 0.1875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.1875 1.125 -0.4375 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.41657 1.125 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.34801 1.125 0.106141 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.625 -1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.625 -1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.375 -1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 -1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 -1 -0.371495 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.5537 -1 -0.265353 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.62227 -1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.5537 -1 0.265353 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 5.14231 -1 0.371495 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 -1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.375 -1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.125 1.14 -0.5625 + 1 1 1 1 + 0 0 + } + vtx { + 5.14231 1.14 -0.212283 + 1 1 1 1 + 0 0 + } + vtx { + 5.34801 1.14 -0.106141 + 1 1 1 1 + 0 0 + } + vtx { + 5.41657 1.14 0 + 1 1 1 1 + 0 0 + } + vtx { + 5.34801 1.14 0.106141 + 1 1 1 1 + 0 0 + } + vtx { + 5.14231 1.14 0.212283 + 1 1 1 1 + 0 0 + } + vtx { + 0.125 1.14 0.5625 + 1 1 1 1 + 0 0 + } + vtx { + -0.1875 1.14 0.4375 + 1 1 1 1 + 0 0 + } + vtx { + -0.3125 1.14 0.1875 + 1 1 1 1 + 0 0 + } + vtx { + -0.3125 1.14 -0.1875 + 1 1 1 1 + 0 0 + } + vtx { + -0.1875 1.14 -0.4375 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 1 } + ple { 3 } + ple { 22 } + ple { 29 } + } + ply { + pes { 4 } + ple { 3 } + ple { 5 } + ple { 30 } + ple { 22 } + } + ply { + pes { 4 } + ple { 5 } + ple { 7 } + ple { 23 } + ple { 30 } + } + ply { + pes { 4 } + ple { 29 } + ple { 28 } + ple { 21 } + ple { 1 } + } + ply { + pes { 4 } + ple { 19 } + ple { 21 } + ple { 28 } + ple { 27 } + } + ply { + pes { 4 } + ple { 9 } + ple { 11 } + ple { 25 } + ple { 24 } + } + ply { + pes { 4 } + ple { 11 } + ple { 13 } + ple { 31 } + ple { 25 } + } + ply { + pes { 4 } + ple { 13 } + ple { 15 } + ple { 32 } + ple { 31 } + } + ply { + pes { 4 } + ple { 15 } + ple { 17 } + ple { 26 } + ple { 32 } + } + ply { + pes { 4 } + ple { 7 } + ple { 9 } + ple { 24 } + ple { 23 } + } + ply { + pes { 4 } + ple { 17 } + ple { 19 } + ple { 27 } + ple { 26 } + } + ply { + pes { 4 } + ple { 0 } + ple { 33 } + ple { 34 } + ple { 2 } + } + ply { + pes { 4 } + ple { 20 } + ple { 43 } + ple { 33 } + ple { 0 } + } + ply { + pes { 4 } + ple { 2 } + ple { 34 } + ple { 35 } + ple { 4 } + } + ply { + pes { 4 } + ple { 4 } + ple { 35 } + ple { 36 } + ple { 6 } + } + ply { + pes { 4 } + ple { 6 } + ple { 36 } + ple { 37 } + ple { 8 } + } + ply { + pes { 4 } + ple { 8 } + ple { 37 } + ple { 38 } + ple { 10 } + } + ply { + pes { 4 } + ple { 10 } + ple { 38 } + ple { 39 } + ple { 12 } + } + ply { + pes { 4 } + ple { 12 } + ple { 39 } + ple { 40 } + ple { 14 } + } + ply { + pes { 4 } + ple { 14 } + ple { 40 } + ple { 41 } + ple { 16 } + } + ply { + pes { 4 } + ple { 16 } + ple { 41 } + ple { 42 } + ple { 18 } + } + ply { + pes { 4 } + ple { 18 } + ple { 42 } + ple { 43 } + ple { 20 } + } + ply { + pes { 11 } + ple { 44 } + ple { 45 } + ple { 46 } + ple { 47 } + ple { 48 } + ple { 49 } + ple { 50 } + ple { 51 } + ple { 52 } + ple { 53 } + ple { 54 } + } + } + arm_behavior { + left + sound flip2b.ogg + } + properties { + collision + group_1 + } +} +object right_flipper { + 5.5 0 30 + 0 -0.05 0 + 1 1 1 + shape { + vts { 8 } + pls { 2 } + hid { } + vtx { + 0.6 1 0.88 + 1 1 1 1 + 0 0 + } + vtx { + 0.5 -1 0.875 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 1 0.38 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 -1 0.38 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 1 -0.38 + 1 1 1 1 + 0 0 + } + vtx { + 0.5 1 -0.875 + 1 1 1 1 + 0 0 + } + vtx { + 0.5 -1 -0.875 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 -1 -0.38 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + ply { + pes { 4 } + ple { 7 } + ple { 6 } + ple { 5 } + ple { 4 } + } + } + shape { + vts { 60 } + pls { 23 } + vtx { + 0.625 1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 -0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 -0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 -0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 -0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.62039 1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.62039 1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.3125 1.125 -0.1875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1.125 -0.5625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1.125 -0.24857 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.34622 1.125 -0.124285 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1.125 0.24857 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1.125 0.5625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.1875 1.125 0.4375 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.3125 1.125 0.1875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.1875 1.125 -0.4375 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.41476 1.125 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.34622 1.125 0.124285 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 -1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 -1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 -1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 -1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 -1 -0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 -1 -0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.62039 -1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 -1 0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 -1 0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 -1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 -1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1.12 -0.24857 + 1 1 1 1 + 0 0 + } + vtx { + -0.125 1.12 -0.5625 + 1 1 1 1 + 0 0 + } + vtx { + 0.1875 1.12 -0.4375 + 1 1 1 1 + 0 0 + } + vtx { + 0.3125 1.12 -0.1875 + 1 1 1 1 + 0 0 + } + vtx { + 0.3125 1.12 0.1875 + 1 1 1 1 + 0 0 + } + vtx { + 0.1875 1.12 0.4375 + 1 1 1 1 + 0 0 + } + vtx { + -0.125 1.12 0.5625 + 1 1 1 1 + 0 0 + } + vtx { + -5.14059 1.12 0.24857 + 1 1 1 1 + 0 0 + } + vtx { + -5.34622 1.12 0.124285 + 1 1 1 1 + 0 0 + } + vtx { + -5.41476 1.12 0 + 1 1 1 1 + 0 0 + } + vtx { + -5.34622 1.12 -0.124285 + 1 1 1 1 + 0 0 + } + vtx { + -4.375 1.125 -0.125 + 1 0 0 1 + 0 0 + } + vtx { + -4.1875 1 -0.4375 + 1 0 0 1 + 0 0 + } + vtx { + -5.07206 1 0 + 1 0 0 1 + 0 0 + } + vtx { + -5.00352 1 0.310713 + 1 0 0 1 + 0 0 + } + vtx { + -4.1875 1 0.4375 + 1 0 0 1 + 0 0 + } + ply { + pes { 4 } + ple { 29 } + ple { 22 } + ple { 3 } + ple { 1 } + } + ply { + pes { 4 } + ple { 22 } + ple { 30 } + ple { 5 } + ple { 3 } + } + ply { + pes { 4 } + ple { 30 } + ple { 23 } + ple { 7 } + ple { 5 } + } + ply { + pes { 4 } + ple { 1 } + ple { 21 } + ple { 28 } + ple { 29 } + } + ply { + pes { 4 } + ple { 27 } + ple { 28 } + ple { 21 } + ple { 19 } + } + ply { + pes { 4 } + ple { 24 } + ple { 25 } + ple { 11 } + ple { 9 } + } + ply { + pes { 4 } + ple { 25 } + ple { 31 } + ple { 13 } + ple { 11 } + } + ply { + pes { 4 } + ple { 31 } + ple { 32 } + ple { 15 } + ple { 13 } + } + ply { + pes { 4 } + ple { 32 } + ple { 26 } + ple { 17 } + ple { 15 } + } + ply { + pes { 4 } + ple { 23 } + ple { 24 } + ple { 9 } + ple { 7 } + } + ply { + pes { 4 } + ple { 26 } + ple { 27 } + ple { 19 } + ple { 17 } + } + ply { + pes { 4 } + ple { 2 } + ple { 34 } + ple { 33 } + ple { 0 } + } + ply { + pes { 4 } + ple { 0 } + ple { 33 } + ple { 43 } + ple { 20 } + } + ply { + pes { 4 } + ple { 4 } + ple { 35 } + ple { 34 } + ple { 2 } + } + ply { + pes { 4 } + ple { 6 } + ple { 36 } + ple { 35 } + ple { 4 } + } + ply { + pes { 4 } + ple { 8 } + ple { 37 } + ple { 36 } + ple { 6 } + } + ply { + pes { 4 } + ple { 10 } + ple { 38 } + ple { 37 } + ple { 8 } + } + ply { + pes { 4 } + ple { 12 } + ple { 39 } + ple { 38 } + ple { 10 } + } + ply { + pes { 4 } + ple { 14 } + ple { 40 } + ple { 39 } + ple { 12 } + } + ply { + pes { 4 } + ple { 16 } + ple { 41 } + ple { 40 } + ple { 14 } + } + ply { + pes { 4 } + ple { 18 } + ple { 42 } + ple { 41 } + ple { 16 } + } + ply { + pes { 4 } + ple { 20 } + ple { 43 } + ple { 42 } + ple { 18 } + } + ply { + pes { 11 } + ple { 44 } + ple { 45 } + ple { 46 } + ple { 47 } + ple { 48 } + ple { 49 } + ple { 50 } + ple { 51 } + ple { 52 } + ple { 53 } + ple { 54 } + } + } + arm_behavior { + right + sound flip2br.ogg + } + properties { + collision + group_1 + } +} +object top_right_flipper { + 16.3 0 -4.75217 + 0 -0.019 0 + 1 1 1 + shape { + vts { 8 } + pls { 2 } + hid { } + vtx { + 0.6 1 0.88 + 1 1 1 1 + 0 0 + } + vtx { + 0.5 -1 0.875 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 1 0.38 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 -1 0.38 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 1 -0.38 + 1 1 1 1 + 0 0 + } + vtx { + 0.5 1 -0.875 + 1 1 1 1 + 0 0 + } + vtx { + 0.5 -1 -0.875 + 1 1 1 1 + 0 0 + } + vtx { + -5.6 -1 -0.38 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + ply { + pes { 4 } + ple { 7 } + ple { 6 } + ple { 5 } + ple { 4 } + } + } + shape { + vts { 60 } + pls { 23 } + vtx { + 0.625 1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 -0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 -0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 -0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 -0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.62039 1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.62039 1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 1 0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1 0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.3125 1.125 -0.1875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1.125 -0.5625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1.125 -0.24857 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.34622 1.125 -0.124285 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1.125 0.24857 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 1.125 0.5625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.1875 1.125 0.4375 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.3125 1.125 0.1875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.1875 1.125 -0.4375 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.41476 1.125 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.34622 1.125 0.124285 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 -1 0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.625 -1 -0.25 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 -1 -0.625 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 -1 -0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 -1 -0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 -1 -0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.62039 -1 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.55185 -1 0.310713 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 -1 0.434998 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -0.125 -1 0.8125 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 0.375 -1 0.6875 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -5.14059 1.12 -0.24857 + 1 1 1 1 + 0 0 + } + vtx { + -0.125 1.12 -0.5625 + 1 1 1 1 + 0 0 + } + vtx { + 0.1875 1.12 -0.4375 + 1 1 1 1 + 0 0 + } + vtx { + 0.3125 1.12 -0.1875 + 1 1 1 1 + 0 0 + } + vtx { + 0.3125 1.12 0.1875 + 1 1 1 1 + 0 0 + } + vtx { + 0.1875 1.12 0.4375 + 1 1 1 1 + 0 0 + } + vtx { + -0.125 1.12 0.5625 + 1 1 1 1 + 0 0 + } + vtx { + -5.14059 1.12 0.24857 + 1 1 1 1 + 0 0 + } + vtx { + -5.34622 1.12 0.124285 + 1 1 1 1 + 0 0 + } + vtx { + -5.41476 1.12 0 + 1 1 1 1 + 0 0 + } + vtx { + -5.34622 1.12 -0.124285 + 1 1 1 1 + 0 0 + } + vtx { + -4.375 1.125 -0.125 + 1 0 0 1 + 0 0 + } + vtx { + -4.1875 1 -0.4375 + 1 0 0 1 + 0 0 + } + vtx { + -5.07206 1 0 + 1 0 0 1 + 0 0 + } + vtx { + -5.00352 1 0.310713 + 1 0 0 1 + 0 0 + } + vtx { + -4.1875 1 0.4375 + 1 0 0 1 + 0 0 + } + ply { + pes { 4 } + ple { 29 } + ple { 22 } + ple { 3 } + ple { 1 } + } + ply { + pes { 4 } + ple { 22 } + ple { 30 } + ple { 5 } + ple { 3 } + } + ply { + pes { 4 } + ple { 30 } + ple { 23 } + ple { 7 } + ple { 5 } + } + ply { + pes { 4 } + ple { 1 } + ple { 21 } + ple { 28 } + ple { 29 } + } + ply { + pes { 4 } + ple { 27 } + ple { 28 } + ple { 21 } + ple { 19 } + } + ply { + pes { 4 } + ple { 24 } + ple { 25 } + ple { 11 } + ple { 9 } + } + ply { + pes { 4 } + ple { 25 } + ple { 31 } + ple { 13 } + ple { 11 } + } + ply { + pes { 4 } + ple { 31 } + ple { 32 } + ple { 15 } + ple { 13 } + } + ply { + pes { 4 } + ple { 32 } + ple { 26 } + ple { 17 } + ple { 15 } + } + ply { + pes { 4 } + ple { 23 } + ple { 24 } + ple { 9 } + ple { 7 } + } + ply { + pes { 4 } + ple { 26 } + ple { 27 } + ple { 19 } + ple { 17 } + } + ply { + pes { 4 } + ple { 2 } + ple { 34 } + ple { 33 } + ple { 0 } + } + ply { + pes { 4 } + ple { 0 } + ple { 33 } + ple { 43 } + ple { 20 } + } + ply { + pes { 4 } + ple { 4 } + ple { 35 } + ple { 34 } + ple { 2 } + } + ply { + pes { 4 } + ple { 6 } + ple { 36 } + ple { 35 } + ple { 4 } + } + ply { + pes { 4 } + ple { 8 } + ple { 37 } + ple { 36 } + ple { 6 } + } + ply { + pes { 4 } + ple { 10 } + ple { 38 } + ple { 37 } + ple { 8 } + } + ply { + pes { 4 } + ple { 12 } + ple { 39 } + ple { 38 } + ple { 10 } + } + ply { + pes { 4 } + ple { 14 } + ple { 40 } + ple { 39 } + ple { 12 } + } + ply { + pes { 4 } + ple { 16 } + ple { 41 } + ple { 40 } + ple { 14 } + } + ply { + pes { 4 } + ple { 18 } + ple { 42 } + ple { 41 } + ple { 16 } + } + ply { + pes { 4 } + ple { 20 } + ple { 43 } + ple { 42 } + ple { 18 } + } + ply { + pes { 11 } + ple { 44 } + ple { 45 } + ple { 46 } + ple { 47 } + ple { 48 } + ple { 49 } + ple { 50 } + ple { 51 } + ple { 52 } + ple { 53 } + ple { 54 } + } + } + arm_behavior { + right + sound flip2br.ogg + } + properties { + collision + group_1 + } +} +object flat_bumper { + -12.45 0 19.95 + 0 -0.313 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + vtx { + -3 0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 3 0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 3 -0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -3 -0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + bumper_behavior { + 0.12 + sound bumpsoft.wav + light { + 0.9 0.9 0.1 + 0 3 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object flat_bumper { + 9.46667 0 19.8167 + 0 0.32 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + vtx { + -3 0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 3 0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + 3 -0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + vtx { + -3 -0.5 0 + 0.9 0.9 0.1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + bumper_behavior { + 0.12 + sound bumpsoft.wav + light { + 0.9 0.9 0.1 + 0 3 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor { + 0 0 0 + 0 0 0 + 1 1 1 + shape { + vts { 225 } + pls { 196 } + bhi { } + tex { + gnu.png + } + vtx { + 0 -1 0 + 0 0 0 1 + 0.5 0.5 + } + vtx { + 3 -1 0 + 0 0 0 1 + 0.571429 0.5 + } + vtx { + 6 -1 0 + 0 0 0 1 + 0.642857 0.5 + } + vtx { + 9 -1 0 + 0 0 0 1 + 0.714286 0.5 + } + vtx { + 12 -1 0 + 0 0 0 1 + 0.785714 0.5 + } + vtx { + 15 -1 0 + 0 0 0 1 + 0.857143 0.5 + } + vtx { + 18 -1 0 + 0 0 0 1 + 0.928571 0.5 + } + vtx { + 21 -1 0 + 0 0 0 1 + 1 0.5 + } + vtx { + -3 -1 0 + 0 0 0 1 + 0.428571 0.5 + } + vtx { + -6 -1 0 + 0 0 0 1 + 0.357143 0.5 + } + vtx { + -9 -1 0 + 0 0 0 1 + 0.285714 0.5 + } + vtx { + -12 -1 0 + 0 0 0 1 + 0.214286 0.5 + } + vtx { + -15 -1 0 + 0 0 0 1 + 0.142857 0.5 + } + vtx { + -18 -1 0 + 0 0 0 1 + 0.0714286 0.5 + } + vtx { + -21 -1 0 + 0 0 0 1 + 0 0.5 + } + vtx { + -21 -1 -6 + 0 0 0 1 + 0 0.428571 + } + vtx { + -18 -1 -6 + 0 0 0 1 + 0.0714286 0.428571 + } + vtx { + -15 -1 -6 + 0 0 0 1 + 0.142857 0.428571 + } + vtx { + -12 -1 -6 + 0 0 0 1 + 0.214286 0.428571 + } + vtx { + -9 -1 -6 + 0 0 0 1 + 0.285714 0.428571 + } + vtx { + -6 -1 -6 + 0 0 0 1 + 0.357143 0.428571 + } + vtx { + -3 -1 -6 + 0 0 0 1 + 0.428571 0.428571 + } + vtx { + 0 -1 -6 + 0 0 0 1 + 0.5 0.428571 + } + vtx { + 3 -1 -6 + 0 0 0 1 + 0.571429 0.428571 + } + vtx { + 6 -1 -6 + 0 0 0 1 + 0.642857 0.428571 + } + vtx { + 9 -1 -6 + 0 0 0 1 + 0.714286 0.428571 + } + vtx { + 12 -1 -6 + 0 0 0 1 + 0.785714 0.428571 + } + vtx { + 15 -1 -6 + 0 0 0 1 + 0.857143 0.428571 + } + vtx { + 18 -1 -6 + 0 0 0 1 + 0.928571 0.428571 + } + vtx { + 21 -1 -6 + 0 0 0 1 + 1 0.428571 + } + vtx { + -21 -1 -12 + 0 0 0 1 + 0 0.357143 + } + vtx { + -18 -1 -12 + 0 0 0 1 + 0.0714286 0.357143 + } + vtx { + -15 -1 -12 + 0 0 0 1 + 0.142857 0.357143 + } + vtx { + -12 -1 -12 + 0 0 0 1 + 0.214286 0.357143 + } + vtx { + -9 -1 -12 + 0 0 0 1 + 0.285714 0.357143 + } + vtx { + -6 -1 -12 + 0 0 0 1 + 0.357143 0.357143 + } + vtx { + -3 -1 -12 + 0 0 0 1 + 0.428571 0.357143 + } + vtx { + 0 -1 -12 + 0 0 0 1 + 0.5 0.357143 + } + vtx { + 3 -1 -12 + 0 0 0 1 + 0.571429 0.357143 + } + vtx { + 6 -1 -12 + 0 0 0 1 + 0.642857 0.357143 + } + vtx { + 9 -1 -12 + 0 0 0 1 + 0.714286 0.357143 + } + vtx { + 12 -1 -12 + 0 0 0 1 + 0.785714 0.357143 + } + vtx { + 15 -1 -12 + 0 0 0 1 + 0.857143 0.357143 + } + vtx { + 18 -1 -12 + 0 0 0 1 + 0.928571 0.357143 + } + vtx { + 21 -1 -12 + 0 0 0 1 + 1 0.357143 + } + vtx { + -21 -1 -18 + 0 0 0 1 + 0 0.285714 + } + vtx { + -18 -1 -18 + 0 0 0 1 + 0.0714286 0.285714 + } + vtx { + -15 -1 -18 + 0 0 0 1 + 0.142857 0.285714 + } + vtx { + -12 -1 -18 + 0 0 0 1 + 0.214286 0.285714 + } + vtx { + -9 -1 -18 + 0 0 0 1 + 0.285714 0.285714 + } + vtx { + -6 -1 -18 + 0 0 0 1 + 0.357143 0.285714 + } + vtx { + -3 -1 -18 + 0 0 0 1 + 0.428571 0.285714 + } + vtx { + 0 -1 -18 + 0 0 0 1 + 0.5 0.285714 + } + vtx { + 3 -1 -18 + 0 0 0 1 + 0.571429 0.285714 + } + vtx { + 6 -1 -18 + 0 0 0 1 + 0.642857 0.285714 + } + vtx { + 9 -1 -18 + 0 0 0 1 + 0.714286 0.285714 + } + vtx { + 12 -1 -18 + 0 0 0 1 + 0.785714 0.285714 + } + vtx { + 15 -1 -18 + 0 0 0 1 + 0.857143 0.285714 + } + vtx { + 18 -1 -18 + 0 0 0 1 + 0.928571 0.285714 + } + vtx { + 21 -1 -18 + 0 0 0 1 + 1 0.285714 + } + vtx { + -21 -1 -24 + 0 0 0 1 + 0 0.214286 + } + vtx { + -18 -1 -24 + 0 0 0 1 + 0.0714286 0.214286 + } + vtx { + -15 -1 -24 + 0 0 0 1 + 0.142857 0.214286 + } + vtx { + -12 -1 -24 + 0 0 0 1 + 0.214286 0.214286 + } + vtx { + -9 -1 -24 + 0 0 0 1 + 0.285714 0.214286 + } + vtx { + -6 -1 -24 + 0 0 0 1 + 0.357143 0.214286 + } + vtx { + -3 -1 -24 + 0 0 0 1 + 0.428571 0.214286 + } + vtx { + 0 -1 -24 + 0 0 0 1 + 0.5 0.214286 + } + vtx { + 3 -1 -24 + 0 0 0 1 + 0.571429 0.214286 + } + vtx { + 6 -1 -24 + 0 0 0 1 + 0.642857 0.214286 + } + vtx { + 9 -1 -24 + 0 0 0 1 + 0.714286 0.214286 + } + vtx { + 12 -1 -24 + 0 0 0 1 + 0.785714 0.214286 + } + vtx { + 15 -1 -24 + 0 0 0 1 + 0.857143 0.214286 + } + vtx { + 18 -1 -24 + 0 0 0 1 + 0.928571 0.214286 + } + vtx { + 21 -1 -24 + 0 0 0 1 + 1 0.214286 + } + vtx { + -21 -1 -30 + 0 0 0 1 + 0 0.142857 + } + vtx { + -18 -1 -30 + 0 0 0 1 + 0.0714286 0.142857 + } + vtx { + -15 -1 -30 + 0 0 0 1 + 0.142857 0.142857 + } + vtx { + -12 -1 -30 + 0 0 0 1 + 0.214286 0.142857 + } + vtx { + -9 -1 -30 + 0 0 0 1 + 0.285714 0.142857 + } + vtx { + -6 -1 -30 + 0 0 0 1 + 0.357143 0.142857 + } + vtx { + -3 -1 -30 + 0 0 0 1 + 0.428571 0.142857 + } + vtx { + 0 -1 -30 + 0 0 0 1 + 0.5 0.142857 + } + vtx { + 3 -1 -30 + 0 0 0 1 + 0.571429 0.142857 + } + vtx { + 6 -1 -30 + 0 0 0 1 + 0.642857 0.142857 + } + vtx { + 9 -1 -30 + 0 0 0 1 + 0.714286 0.142857 + } + vtx { + 12 -1 -30 + 0 0 0 1 + 0.785714 0.142857 + } + vtx { + 15 -1 -30 + 0 0 0 1 + 0.857143 0.142857 + } + vtx { + 18 -1 -30 + 0 0 0 1 + 0.928571 0.142857 + } + vtx { + 21 -1 -30 + 0 0 0 1 + 1 0.142857 + } + vtx { + -21 -1 -36 + 0 0 0 1 + 0 0.0714286 + } + vtx { + -18 -1 -36 + 0 0 0 1 + 0.0714286 0.0714286 + } + vtx { + -15 -1 -36 + 0 0 0 1 + 0.142857 0.0714286 + } + vtx { + -12 -1 -36 + 0 0 0 1 + 0.214286 0.0714286 + } + vtx { + -9 -1 -36 + 0 0 0 1 + 0.285714 0.0714286 + } + vtx { + -6 -1 -36 + 0 0 0 1 + 0.357143 0.0714286 + } + vtx { + -3 -1 -36 + 0 0 0 1 + 0.428571 0.0714286 + } + vtx { + 0 -1 -36 + 0 0 0 1 + 0.5 0.0714286 + } + vtx { + 3 -1 -36 + 0 0 0 1 + 0.571429 0.0714286 + } + vtx { + 6 -1 -36 + 0 0 0 1 + 0.642857 0.0714286 + } + vtx { + 9 -1 -36 + 0 0 0 1 + 0.714286 0.0714286 + } + vtx { + 12 -1 -36 + 0 0 0 1 + 0.785714 0.0714286 + } + vtx { + 15 -1 -36 + 0 0 0 1 + 0.857143 0.0714286 + } + vtx { + 18 -1 -36 + 0 0 0 1 + 0.928571 0.0714286 + } + vtx { + 21 -1 -36 + 0 0 0 1 + 1 0.0714286 + } + vtx { + -21 -1 -42 + 0 0 0 1 + 0 0 + } + vtx { + -18 -1 -42 + 0 0 0 1 + 0.0714286 0 + } + vtx { + -15 -1 -42 + 0 0 0 1 + 0.142857 0 + } + vtx { + -12 -1 -42 + 0 0 0 1 + 0.214286 0 + } + vtx { + -9 -1 -42 + 0 0 0 1 + 0.285714 0 + } + vtx { + -6 -1 -42 + 0 0 0 1 + 0.357143 0 + } + vtx { + -3 -1 -42 + 0 0 0 1 + 0.428571 0 + } + vtx { + 0 -1 -42 + 0 0 0 1 + 0.5 0 + } + vtx { + 3 -1 -42 + 0 0 0 1 + 0.571429 0 + } + vtx { + 6 -1 -42 + 0 0 0 1 + 0.642857 0 + } + vtx { + 9 -1 -42 + 0 0 0 1 + 0.714286 0 + } + vtx { + 12 -1 -42 + 0 0 0 1 + 0.785714 0 + } + vtx { + 15 -1 -42 + 0 0 0 1 + 0.857143 0 + } + vtx { + 18 -1 -42 + 0 0 0 1 + 0.928571 0 + } + vtx { + 21 -1 -42 + 0 0 0 1 + 1 0 + } + vtx { + 0 -1 6 + 0 0 0 1 + 0.5 0.571429 + } + vtx { + 3 -1 6 + 0 0 0 1 + 0.571429 0.571429 + } + vtx { + 6 -1 6 + 0 0 0 1 + 0.642857 0.571429 + } + vtx { + 9 -1 6 + 0 0 0 1 + 0.714286 0.571429 + } + vtx { + 12 -1 6 + 0 0 0 1 + 0.785714 0.571429 + } + vtx { + 15 -1 6 + 0 0 0 1 + 0.857143 0.571429 + } + vtx { + 18 -1 6 + 0 0 0 1 + 0.928571 0.571429 + } + vtx { + 21 -1 6 + 0 0 0 1 + 1 0.571429 + } + vtx { + -3 -1 6 + 0 0 0 1 + 0.428571 0.571429 + } + vtx { + -6 -1 6 + 0 0 0 1 + 0.357143 0.571429 + } + vtx { + -9 -1 6 + 0 0 0 1 + 0.285714 0.571429 + } + vtx { + -12 -1 6 + 0 0 0 1 + 0.214286 0.571429 + } + vtx { + -15 -1 6 + 0 0 0 1 + 0.142857 0.571429 + } + vtx { + -18 -1 6 + 0 0 0 1 + 0.0714286 0.571429 + } + vtx { + -21 -1 6 + 0 0 0 1 + 0 0.571429 + } + vtx { + 0 -1 12 + 0 0 0 1 + 0.5 0.642857 + } + vtx { + 3 -1 12 + 0 0 0 1 + 0.571429 0.642857 + } + vtx { + 6 -1 12 + 0 0 0 1 + 0.642857 0.642857 + } + vtx { + 9 -1 12 + 0 0 0 1 + 0.714286 0.642857 + } + vtx { + 12 -1 12 + 0 0 0 1 + 0.785714 0.642857 + } + vtx { + 15 -1 12 + 0 0 0 1 + 0.857143 0.642857 + } + vtx { + 18 -1 12 + 0 0 0 1 + 0.928571 0.642857 + } + vtx { + 21 -1 12 + 0 0 0 1 + 1 0.642857 + } + vtx { + -3 -1 12 + 0 0 0 1 + 0.428571 0.642857 + } + vtx { + -6 -1 12 + 0 0 0 1 + 0.357143 0.642857 + } + vtx { + -9 -1 12 + 0 0 0 1 + 0.285714 0.642857 + } + vtx { + -12 -1 12 + 0 0 0 1 + 0.214286 0.642857 + } + vtx { + -15 -1 12 + 0 0 0 1 + 0.142857 0.642857 + } + vtx { + -18 -1 12 + 0 0 0 1 + 0.0714286 0.642857 + } + vtx { + -21 -1 12 + 0 0 0 1 + 0 0.642857 + } + vtx { + 0 -1 18 + 0 0 0 1 + 0.5 0.714286 + } + vtx { + 3 -1 18 + 0 0 0 1 + 0.571429 0.714286 + } + vtx { + 6 -1 18 + 0 0 0 1 + 0.642857 0.714286 + } + vtx { + 9 -1 18 + 0 0 0 1 + 0.714286 0.714286 + } + vtx { + 12 -1 18 + 0 0 0 1 + 0.785714 0.714286 + } + vtx { + 15 -1 18 + 0 0 0 1 + 0.857143 0.714286 + } + vtx { + 18 -1 18 + 0 0 0 1 + 0.928571 0.714286 + } + vtx { + 21 -1 18 + 0 0 0 1 + 1 0.714286 + } + vtx { + -3 -1 18 + 0 0 0 1 + 0.428571 0.714286 + } + vtx { + -6 -1 18 + 0 0 0 1 + 0.357143 0.714286 + } + vtx { + -9 -1 18 + 0 0 0 1 + 0.285714 0.714286 + } + vtx { + -12 -1 18 + 0 0 0 1 + 0.214286 0.714286 + } + vtx { + -15 -1 18 + 0 0 0 1 + 0.142857 0.714286 + } + vtx { + -18 -1 18 + 0 0 0 1 + 0.0714286 0.714286 + } + vtx { + -21 -1 18 + 0 0 0 1 + 0 0.714286 + } + vtx { + 0 -1 24 + 0 0 0 1 + 0.5 0.785714 + } + vtx { + 3 -1 24 + 0 0 0 1 + 0.571429 0.785714 + } + vtx { + 6 -1 24 + 0 0 0 1 + 0.642857 0.785714 + } + vtx { + 9 -1 24 + 0 0 0 1 + 0.714286 0.785714 + } + vtx { + 12 -1 24 + 0 0 0 1 + 0.785714 0.785714 + } + vtx { + 15 -1 24 + 0 0 0 1 + 0.857143 0.785714 + } + vtx { + 18 -1 24 + 0 0 0 1 + 0.928571 0.785714 + } + vtx { + 21 -1 24 + 0 0 0 1 + 1 0.785714 + } + vtx { + -3 -1 24 + 0 0 0 1 + 0.428571 0.785714 + } + vtx { + -6 -1 24 + 0 0 0 1 + 0.357143 0.785714 + } + vtx { + -9 -1 24 + 0 0 0 1 + 0.285714 0.785714 + } + vtx { + -12 -1 24 + 0 0 0 1 + 0.214286 0.785714 + } + vtx { + -15 -1 24 + 0 0 0 1 + 0.142857 0.785714 + } + vtx { + -18 -1 24 + 0 0 0 1 + 0.0714286 0.785714 + } + vtx { + -21 -1 24 + 0 0 0 1 + 0 0.785714 + } + vtx { + 0 -1 30 + 0 0 0 1 + 0.5 0.857143 + } + vtx { + 3 -1 30 + 0 0 0 1 + 0.571429 0.857143 + } + vtx { + 6 -1 30 + 0 0 0 1 + 0.642857 0.857143 + } + vtx { + 9 -1 30 + 0 0 0 1 + 0.714286 0.857143 + } + vtx { + 12 -1 30 + 0 0 0 1 + 0.785714 0.857143 + } + vtx { + 15 -1 30 + 0 0 0 1 + 0.857143 0.857143 + } + vtx { + 18 -1 30 + 0 0 0 1 + 0.928571 0.857143 + } + vtx { + 21 -1 30 + 0 0 0 1 + 1 0.857143 + } + vtx { + -3 -1 30 + 0 0 0 1 + 0.428571 0.857143 + } + vtx { + -6 -1 30 + 0 0 0 1 + 0.357143 0.857143 + } + vtx { + -9 -1 30 + 0 0 0 1 + 0.285714 0.857143 + } + vtx { + -12 -1 30 + 0 0 0 1 + 0.214286 0.857143 + } + vtx { + -15 -1 30 + 0 0 0 1 + 0.142857 0.857143 + } + vtx { + -18 -1 30 + 0 0 0 1 + 0.0714286 0.857143 + } + vtx { + -21 -1 30 + 0 0 0 1 + 0 0.857143 + } + vtx { + 0 -1 36 + 0 0 0 1 + 0.5 0.928571 + } + vtx { + 3 -1 36 + 0 0 0 1 + 0.571429 0.928571 + } + vtx { + 6 -1 36 + 0 0 0 1 + 0.642857 0.928571 + } + vtx { + 9 -1 36 + 0 0 0 1 + 0.714286 0.928571 + } + vtx { + 12 -1 36 + 0 0 0 1 + 0.785714 0.928571 + } + vtx { + 15 -1 36 + 0 0 0 1 + 0.857143 0.928571 + } + vtx { + 18 -1 36 + 0 0 0 1 + 0.928571 0.928571 + } + vtx { + 21 -1 36 + 0 0 0 1 + 1 0.928571 + } + vtx { + -3 -1 36 + 0 0 0 1 + 0.428571 0.928571 + } + vtx { + -6 -1 36 + 0 0 0 1 + 0.357143 0.928571 + } + vtx { + -9 -1 36 + 0 0 0 1 + 0.285714 0.928571 + } + vtx { + -12 -1 36 + 0 0 0 1 + 0.214286 0.928571 + } + vtx { + -15 -1 36 + 0 0 0 1 + 0.142857 0.928571 + } + vtx { + -18 -1 36 + 0 0 0 1 + 0.0714286 0.928571 + } + vtx { + -21 -1 36 + 0 0 0 1 + 0 0.928571 + } + vtx { + 0 -1 42 + 0 0 0 1 + 0.5 1 + } + vtx { + 3 -1 42 + 0 0 0 1 + 0.571429 1 + } + vtx { + 6 -1 42 + 0 0 0 1 + 0.642857 1 + } + vtx { + 9 -1 42 + 0 0 0 1 + 0.714286 1 + } + vtx { + 12 -1 42 + 0 0 0 1 + 0.785714 1 + } + vtx { + 15 -1 42 + 0 0 0 1 + 0.857143 1 + } + vtx { + 18 -1 42 + 0 0 0 1 + 0.928571 1 + } + vtx { + 21 -1 42 + 0 0 0 1 + 1 1 + } + vtx { + -3 -1 42 + 0 0 0 1 + 0.428571 1 + } + vtx { + -6 -1 42 + 0 0 0 1 + 0.357143 1 + } + vtx { + -9 -1 42 + 0 0 0 1 + 0.285714 1 + } + vtx { + -12 -1 42 + 0 0 0 1 + 0.214286 1 + } + vtx { + -15 -1 42 + 0 0 0 1 + 0.142857 1 + } + vtx { + -18 -1 42 + 0 0 0 1 + 0.0714286 1 + } + vtx { + -21 -1 42 + 0 0 0 1 + 0 1 + } + ply { + pes { 4 } + ple { 13 } + ple { 14 } + ple { 15 } + ple { 16 } + } + ply { + pes { 4 } + ple { 12 } + ple { 13 } + ple { 16 } + ple { 17 } + } + ply { + pes { 4 } + ple { 11 } + ple { 12 } + ple { 17 } + ple { 18 } + } + ply { + pes { 4 } + ple { 10 } + ple { 11 } + ple { 18 } + ple { 19 } + } + ply { + pes { 4 } + ple { 9 } + ple { 10 } + ple { 19 } + ple { 20 } + } + ply { + pes { 4 } + ple { 8 } + ple { 9 } + ple { 20 } + ple { 21 } + } + ply { + pes { 4 } + ple { 0 } + ple { 8 } + ple { 21 } + ple { 22 } + } + ply { + pes { 4 } + ple { 1 } + ple { 0 } + ple { 22 } + ple { 23 } + } + ply { + pes { 4 } + ple { 2 } + ple { 1 } + ple { 23 } + ple { 24 } + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 24 } + ple { 25 } + } + ply { + pes { 4 } + ple { 4 } + ple { 3 } + ple { 25 } + ple { 26 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 26 } + ple { 27 } + } + ply { + pes { 4 } + ple { 6 } + ple { 5 } + ple { 27 } + ple { 28 } + } + ply { + pes { 4 } + ple { 7 } + ple { 6 } + ple { 28 } + ple { 29 } + } + ply { + pes { 4 } + ple { 15 } + ple { 30 } + ple { 31 } + ple { 16 } + } + ply { + pes { 4 } + ple { 16 } + ple { 31 } + ple { 32 } + ple { 17 } + } + ply { + pes { 4 } + ple { 17 } + ple { 32 } + ple { 33 } + ple { 18 } + } + ply { + pes { 4 } + ple { 18 } + ple { 33 } + ple { 34 } + ple { 19 } + } + ply { + pes { 4 } + ple { 19 } + ple { 34 } + ple { 35 } + ple { 20 } + } + ply { + pes { 4 } + ple { 20 } + ple { 35 } + ple { 36 } + ple { 21 } + } + ply { + pes { 4 } + ple { 21 } + ple { 36 } + ple { 37 } + ple { 22 } + } + ply { + pes { 4 } + ple { 22 } + ple { 37 } + ple { 38 } + ple { 23 } + } + ply { + pes { 4 } + ple { 23 } + ple { 38 } + ple { 39 } + ple { 24 } + } + ply { + pes { 4 } + ple { 24 } + ple { 39 } + ple { 40 } + ple { 25 } + } + ply { + pes { 4 } + ple { 25 } + ple { 40 } + ple { 41 } + ple { 26 } + } + ply { + pes { 4 } + ple { 26 } + ple { 41 } + ple { 42 } + ple { 27 } + } + ply { + pes { 4 } + ple { 27 } + ple { 42 } + ple { 43 } + ple { 28 } + } + ply { + pes { 4 } + ple { 28 } + ple { 43 } + ple { 44 } + ple { 29 } + } + ply { + pes { 4 } + ple { 30 } + ple { 45 } + ple { 46 } + ple { 31 } + } + ply { + pes { 4 } + ple { 31 } + ple { 46 } + ple { 47 } + ple { 32 } + } + ply { + pes { 4 } + ple { 32 } + ple { 47 } + ple { 48 } + ple { 33 } + } + ply { + pes { 4 } + ple { 33 } + ple { 48 } + ple { 49 } + ple { 34 } + } + ply { + pes { 4 } + ple { 34 } + ple { 49 } + ple { 50 } + ple { 35 } + } + ply { + pes { 4 } + ple { 35 } + ple { 50 } + ple { 51 } + ple { 36 } + } + ply { + pes { 4 } + ple { 36 } + ple { 51 } + ple { 52 } + ple { 37 } + } + ply { + pes { 4 } + ple { 37 } + ple { 52 } + ple { 53 } + ple { 38 } + } + ply { + pes { 4 } + ple { 38 } + ple { 53 } + ple { 54 } + ple { 39 } + } + ply { + pes { 4 } + ple { 39 } + ple { 54 } + ple { 55 } + ple { 40 } + } + ply { + pes { 4 } + ple { 40 } + ple { 55 } + ple { 56 } + ple { 41 } + } + ply { + pes { 4 } + ple { 41 } + ple { 56 } + ple { 57 } + ple { 42 } + } + ply { + pes { 4 } + ple { 42 } + ple { 57 } + ple { 58 } + ple { 43 } + } + ply { + pes { 4 } + ple { 43 } + ple { 58 } + ple { 59 } + ple { 44 } + } + ply { + pes { 4 } + ple { 45 } + ple { 60 } + ple { 61 } + ple { 46 } + } + ply { + pes { 4 } + ple { 46 } + ple { 61 } + ple { 62 } + ple { 47 } + } + ply { + pes { 4 } + ple { 47 } + ple { 62 } + ple { 63 } + ple { 48 } + } + ply { + pes { 4 } + ple { 48 } + ple { 63 } + ple { 64 } + ple { 49 } + } + ply { + pes { 4 } + ple { 49 } + ple { 64 } + ple { 65 } + ple { 50 } + } + ply { + pes { 4 } + ple { 50 } + ple { 65 } + ple { 66 } + ple { 51 } + } + ply { + pes { 4 } + ple { 51 } + ple { 66 } + ple { 67 } + ple { 52 } + } + ply { + pes { 4 } + ple { 52 } + ple { 67 } + ple { 68 } + ple { 53 } + } + ply { + pes { 4 } + ple { 53 } + ple { 68 } + ple { 69 } + ple { 54 } + } + ply { + pes { 4 } + ple { 54 } + ple { 69 } + ple { 70 } + ple { 55 } + } + ply { + pes { 4 } + ple { 55 } + ple { 70 } + ple { 71 } + ple { 56 } + } + ply { + pes { 4 } + ple { 56 } + ple { 71 } + ple { 72 } + ple { 57 } + } + ply { + pes { 4 } + ple { 57 } + ple { 72 } + ple { 73 } + ple { 58 } + } + ply { + pes { 4 } + ple { 58 } + ple { 73 } + ple { 74 } + ple { 59 } + } + ply { + pes { 4 } + ple { 60 } + ple { 75 } + ple { 76 } + ple { 61 } + } + ply { + pes { 4 } + ple { 61 } + ple { 76 } + ple { 77 } + ple { 62 } + } + ply { + pes { 4 } + ple { 62 } + ple { 77 } + ple { 78 } + ple { 63 } + } + ply { + pes { 4 } + ple { 63 } + ple { 78 } + ple { 79 } + ple { 64 } + } + ply { + pes { 4 } + ple { 64 } + ple { 79 } + ple { 80 } + ple { 65 } + } + ply { + pes { 4 } + ple { 65 } + ple { 80 } + ple { 81 } + ple { 66 } + } + ply { + pes { 4 } + ple { 66 } + ple { 81 } + ple { 82 } + ple { 67 } + } + ply { + pes { 4 } + ple { 67 } + ple { 82 } + ple { 83 } + ple { 68 } + } + ply { + pes { 4 } + ple { 68 } + ple { 83 } + ple { 84 } + ple { 69 } + } + ply { + pes { 4 } + ple { 69 } + ple { 84 } + ple { 85 } + ple { 70 } + } + ply { + pes { 4 } + ple { 70 } + ple { 85 } + ple { 86 } + ple { 71 } + } + ply { + pes { 4 } + ple { 71 } + ple { 86 } + ple { 87 } + ple { 72 } + } + ply { + pes { 4 } + ple { 72 } + ple { 87 } + ple { 88 } + ple { 73 } + } + ply { + pes { 4 } + ple { 73 } + ple { 88 } + ple { 89 } + ple { 74 } + } + ply { + pes { 4 } + ple { 75 } + ple { 90 } + ple { 91 } + ple { 76 } + } + ply { + pes { 4 } + ple { 76 } + ple { 91 } + ple { 92 } + ple { 77 } + } + ply { + pes { 4 } + ple { 77 } + ple { 92 } + ple { 93 } + ple { 78 } + } + ply { + pes { 4 } + ple { 78 } + ple { 93 } + ple { 94 } + ple { 79 } + } + ply { + pes { 4 } + ple { 79 } + ple { 94 } + ple { 95 } + ple { 80 } + } + ply { + pes { 4 } + ple { 80 } + ple { 95 } + ple { 96 } + ple { 81 } + } + ply { + pes { 4 } + ple { 81 } + ple { 96 } + ple { 97 } + ple { 82 } + } + ply { + pes { 4 } + ple { 82 } + ple { 97 } + ple { 98 } + ple { 83 } + } + ply { + pes { 4 } + ple { 83 } + ple { 98 } + ple { 99 } + ple { 84 } + } + ply { + pes { 4 } + ple { 84 } + ple { 99 } + ple { 100 } + ple { 85 } + } + ply { + pes { 4 } + ple { 85 } + ple { 100 } + ple { 101 } + ple { 86 } + } + ply { + pes { 4 } + ple { 86 } + ple { 101 } + ple { 102 } + ple { 87 } + } + ply { + pes { 4 } + ple { 87 } + ple { 102 } + ple { 103 } + ple { 88 } + } + ply { + pes { 4 } + ple { 88 } + ple { 103 } + ple { 104 } + ple { 89 } + } + ply { + pes { 4 } + ple { 90 } + ple { 105 } + ple { 106 } + ple { 91 } + } + ply { + pes { 4 } + ple { 91 } + ple { 106 } + ple { 107 } + ple { 92 } + } + ply { + pes { 4 } + ple { 92 } + ple { 107 } + ple { 108 } + ple { 93 } + } + ply { + pes { 4 } + ple { 93 } + ple { 108 } + ple { 109 } + ple { 94 } + } + ply { + pes { 4 } + ple { 94 } + ple { 109 } + ple { 110 } + ple { 95 } + } + ply { + pes { 4 } + ple { 95 } + ple { 110 } + ple { 111 } + ple { 96 } + } + ply { + pes { 4 } + ple { 96 } + ple { 111 } + ple { 112 } + ple { 97 } + } + ply { + pes { 4 } + ple { 97 } + ple { 112 } + ple { 113 } + ple { 98 } + } + ply { + pes { 4 } + ple { 98 } + ple { 113 } + ple { 114 } + ple { 99 } + } + ply { + pes { 4 } + ple { 99 } + ple { 114 } + ple { 115 } + ple { 100 } + } + ply { + pes { 4 } + ple { 100 } + ple { 115 } + ple { 116 } + ple { 101 } + } + ply { + pes { 4 } + ple { 101 } + ple { 116 } + ple { 117 } + ple { 102 } + } + ply { + pes { 4 } + ple { 102 } + ple { 117 } + ple { 118 } + ple { 103 } + } + ply { + pes { 4 } + ple { 103 } + ple { 118 } + ple { 119 } + ple { 104 } + } + ply { + pes { 4 } + ple { 1 } + ple { 121 } + ple { 120 } + ple { 0 } + } + ply { + pes { 4 } + ple { 0 } + ple { 120 } + ple { 128 } + ple { 8 } + } + ply { + pes { 4 } + ple { 2 } + ple { 122 } + ple { 121 } + ple { 1 } + } + ply { + pes { 4 } + ple { 3 } + ple { 123 } + ple { 122 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 124 } + ple { 123 } + ple { 3 } + } + ply { + pes { 4 } + ple { 5 } + ple { 125 } + ple { 124 } + ple { 4 } + } + ply { + pes { 4 } + ple { 6 } + ple { 126 } + ple { 125 } + ple { 5 } + } + ply { + pes { 4 } + ple { 7 } + ple { 127 } + ple { 126 } + ple { 6 } + } + ply { + pes { 4 } + ple { 8 } + ple { 128 } + ple { 129 } + ple { 9 } + } + ply { + pes { 4 } + ple { 9 } + ple { 129 } + ple { 130 } + ple { 10 } + } + ply { + pes { 4 } + ple { 10 } + ple { 130 } + ple { 131 } + ple { 11 } + } + ply { + pes { 4 } + ple { 11 } + ple { 131 } + ple { 132 } + ple { 12 } + } + ply { + pes { 4 } + ple { 12 } + ple { 132 } + ple { 133 } + ple { 13 } + } + ply { + pes { 4 } + ple { 13 } + ple { 133 } + ple { 134 } + ple { 14 } + } + ply { + pes { 4 } + ple { 121 } + ple { 136 } + ple { 135 } + ple { 120 } + } + ply { + pes { 4 } + ple { 120 } + ple { 135 } + ple { 143 } + ple { 128 } + } + ply { + pes { 4 } + ple { 122 } + ple { 137 } + ple { 136 } + ple { 121 } + } + ply { + pes { 4 } + ple { 123 } + ple { 138 } + ple { 137 } + ple { 122 } + } + ply { + pes { 4 } + ple { 124 } + ple { 139 } + ple { 138 } + ple { 123 } + } + ply { + pes { 4 } + ple { 125 } + ple { 140 } + ple { 139 } + ple { 124 } + } + ply { + pes { 4 } + ple { 126 } + ple { 141 } + ple { 140 } + ple { 125 } + } + ply { + pes { 4 } + ple { 127 } + ple { 142 } + ple { 141 } + ple { 126 } + } + ply { + pes { 4 } + ple { 128 } + ple { 143 } + ple { 144 } + ple { 129 } + } + ply { + pes { 4 } + ple { 129 } + ple { 144 } + ple { 145 } + ple { 130 } + } + ply { + pes { 4 } + ple { 130 } + ple { 145 } + ple { 146 } + ple { 131 } + } + ply { + pes { 4 } + ple { 131 } + ple { 146 } + ple { 147 } + ple { 132 } + } + ply { + pes { 4 } + ple { 132 } + ple { 147 } + ple { 148 } + ple { 133 } + } + ply { + pes { 4 } + ple { 133 } + ple { 148 } + ple { 149 } + ple { 134 } + } + ply { + pes { 4 } + ple { 136 } + ple { 151 } + ple { 150 } + ple { 135 } + } + ply { + pes { 4 } + ple { 135 } + ple { 150 } + ple { 158 } + ple { 143 } + } + ply { + pes { 4 } + ple { 137 } + ple { 152 } + ple { 151 } + ple { 136 } + } + ply { + pes { 4 } + ple { 138 } + ple { 153 } + ple { 152 } + ple { 137 } + } + ply { + pes { 4 } + ple { 139 } + ple { 154 } + ple { 153 } + ple { 138 } + } + ply { + pes { 4 } + ple { 140 } + ple { 155 } + ple { 154 } + ple { 139 } + } + ply { + pes { 4 } + ple { 141 } + ple { 156 } + ple { 155 } + ple { 140 } + } + ply { + pes { 4 } + ple { 142 } + ple { 157 } + ple { 156 } + ple { 141 } + } + ply { + pes { 4 } + ple { 143 } + ple { 158 } + ple { 159 } + ple { 144 } + } + ply { + pes { 4 } + ple { 144 } + ple { 159 } + ple { 160 } + ple { 145 } + } + ply { + pes { 4 } + ple { 145 } + ple { 160 } + ple { 161 } + ple { 146 } + } + ply { + pes { 4 } + ple { 146 } + ple { 161 } + ple { 162 } + ple { 147 } + } + ply { + pes { 4 } + ple { 147 } + ple { 162 } + ple { 163 } + ple { 148 } + } + ply { + pes { 4 } + ple { 148 } + ple { 163 } + ple { 164 } + ple { 149 } + } + ply { + pes { 4 } + ple { 151 } + ple { 166 } + ple { 165 } + ple { 150 } + } + ply { + pes { 4 } + ple { 150 } + ple { 165 } + ple { 173 } + ple { 158 } + } + ply { + pes { 4 } + ple { 152 } + ple { 167 } + ple { 166 } + ple { 151 } + } + ply { + pes { 4 } + ple { 153 } + ple { 168 } + ple { 167 } + ple { 152 } + } + ply { + pes { 4 } + ple { 154 } + ple { 169 } + ple { 168 } + ple { 153 } + } + ply { + pes { 4 } + ple { 155 } + ple { 170 } + ple { 169 } + ple { 154 } + } + ply { + pes { 4 } + ple { 156 } + ple { 171 } + ple { 170 } + ple { 155 } + } + ply { + pes { 4 } + ple { 157 } + ple { 172 } + ple { 171 } + ple { 156 } + } + ply { + pes { 4 } + ple { 158 } + ple { 173 } + ple { 174 } + ple { 159 } + } + ply { + pes { 4 } + ple { 159 } + ple { 174 } + ple { 175 } + ple { 160 } + } + ply { + pes { 4 } + ple { 160 } + ple { 175 } + ple { 176 } + ple { 161 } + } + ply { + pes { 4 } + ple { 161 } + ple { 176 } + ple { 177 } + ple { 162 } + } + ply { + pes { 4 } + ple { 162 } + ple { 177 } + ple { 178 } + ple { 163 } + } + ply { + pes { 4 } + ple { 163 } + ple { 178 } + ple { 179 } + ple { 164 } + } + ply { + pes { 4 } + ple { 166 } + ple { 181 } + ple { 180 } + ple { 165 } + } + ply { + pes { 4 } + ple { 165 } + ple { 180 } + ple { 188 } + ple { 173 } + } + ply { + pes { 4 } + ple { 167 } + ple { 182 } + ple { 181 } + ple { 166 } + } + ply { + pes { 4 } + ple { 168 } + ple { 183 } + ple { 182 } + ple { 167 } + } + ply { + pes { 4 } + ple { 169 } + ple { 184 } + ple { 183 } + ple { 168 } + } + ply { + pes { 4 } + ple { 170 } + ple { 185 } + ple { 184 } + ple { 169 } + } + ply { + pes { 4 } + ple { 171 } + ple { 186 } + ple { 185 } + ple { 170 } + } + ply { + pes { 4 } + ple { 172 } + ple { 187 } + ple { 186 } + ple { 171 } + } + ply { + pes { 4 } + ple { 173 } + ple { 188 } + ple { 189 } + ple { 174 } + } + ply { + pes { 4 } + ple { 174 } + ple { 189 } + ple { 190 } + ple { 175 } + } + ply { + pes { 4 } + ple { 175 } + ple { 190 } + ple { 191 } + ple { 176 } + } + ply { + pes { 4 } + ple { 176 } + ple { 191 } + ple { 192 } + ple { 177 } + } + ply { + pes { 4 } + ple { 177 } + ple { 192 } + ple { 193 } + ple { 178 } + } + ply { + pes { 4 } + ple { 178 } + ple { 193 } + ple { 194 } + ple { 179 } + } + ply { + pes { 4 } + ple { 181 } + ple { 196 } + ple { 195 } + ple { 180 } + } + ply { + pes { 4 } + ple { 180 } + ple { 195 } + ple { 203 } + ple { 188 } + } + ply { + pes { 4 } + ple { 182 } + ple { 197 } + ple { 196 } + ple { 181 } + } + ply { + pes { 4 } + ple { 183 } + ple { 198 } + ple { 197 } + ple { 182 } + } + ply { + pes { 4 } + ple { 184 } + ple { 199 } + ple { 198 } + ple { 183 } + } + ply { + pes { 4 } + ple { 185 } + ple { 200 } + ple { 199 } + ple { 184 } + } + ply { + pes { 4 } + ple { 186 } + ple { 201 } + ple { 200 } + ple { 185 } + } + ply { + pes { 4 } + ple { 187 } + ple { 202 } + ple { 201 } + ple { 186 } + } + ply { + pes { 4 } + ple { 188 } + ple { 203 } + ple { 204 } + ple { 189 } + } + ply { + pes { 4 } + ple { 189 } + ple { 204 } + ple { 205 } + ple { 190 } + } + ply { + pes { 4 } + ple { 190 } + ple { 205 } + ple { 206 } + ple { 191 } + } + ply { + pes { 4 } + ple { 191 } + ple { 206 } + ple { 207 } + ple { 192 } + } + ply { + pes { 4 } + ple { 192 } + ple { 207 } + ple { 208 } + ple { 193 } + } + ply { + pes { 4 } + ple { 193 } + ple { 208 } + ple { 209 } + ple { 194 } + } + ply { + pes { 4 } + ple { 196 } + ple { 211 } + ple { 210 } + ple { 195 } + } + ply { + pes { 4 } + ple { 195 } + ple { 210 } + ple { 218 } + ple { 203 } + } + ply { + pes { 4 } + ple { 197 } + ple { 212 } + ple { 211 } + ple { 196 } + } + ply { + pes { 4 } + ple { 198 } + ple { 213 } + ple { 212 } + ple { 197 } + } + ply { + pes { 4 } + ple { 199 } + ple { 214 } + ple { 213 } + ple { 198 } + } + ply { + pes { 4 } + ple { 200 } + ple { 215 } + ple { 214 } + ple { 199 } + } + ply { + pes { 4 } + ple { 201 } + ple { 216 } + ple { 215 } + ple { 200 } + } + ply { + pes { 4 } + ple { 202 } + ple { 217 } + ple { 216 } + ple { 201 } + } + ply { + pes { 4 } + ple { 203 } + ple { 218 } + ple { 219 } + ple { 204 } + } + ply { + pes { 4 } + ple { 204 } + ple { 219 } + ple { 220 } + ple { 205 } + } + ply { + pes { 4 } + ple { 205 } + ple { 220 } + ple { 221 } + ple { 206 } + } + ply { + pes { 4 } + ple { 206 } + ple { 221 } + ple { 222 } + ple { 207 } + } + ply { + pes { 4 } + ple { 207 } + ple { 222 } + ple { 223 } + ple { 208 } + } + ply { + pes { 4 } + ple { 208 } + ple { 223 } + ple { 224 } + ple { 209 } + } + } + shape { + vts { 225 } + pls { 196 } + bhi { } + tex { + gnu2b.png + } + vtx { + 0 -1 0 + 0 0 0 1 + 0.5 0.5 + } + vtx { + 3 -1 0 + 0 0 0 1 + 0.571429 0.5 + } + vtx { + 6 -1 0 + 0 0 0 1 + 0.642857 0.5 + } + vtx { + 9 -1 0 + 0 0 0 1 + 0.714286 0.5 + } + vtx { + 12 -1 0 + 0 0 0 1 + 0.785714 0.5 + } + vtx { + 15 -1 0 + 0 0 0 1 + 0.857143 0.5 + } + vtx { + 18 -1 0 + 0 0 0 1 + 0.928571 0.5 + } + vtx { + 21 -1 0 + 0 0 0 1 + 1 0.5 + } + vtx { + -3 -1 0 + 0 0 0 1 + 0.428571 0.5 + } + vtx { + -6 -1 0 + 0 0 0 1 + 0.357143 0.5 + } + vtx { + -9 -1 0 + 0 0 0 1 + 0.285714 0.5 + } + vtx { + -12 -1 0 + 0 0 0 1 + 0.214286 0.5 + } + vtx { + -15 -1 0 + 0 0 0 1 + 0.142857 0.5 + } + vtx { + -18 -1 0 + 0 0 0 1 + 0.0714286 0.5 + } + vtx { + -21 -1 0 + 0 0 0 1 + 0 0.5 + } + vtx { + -21 -1 -6 + 0 0 0 1 + 0 0.428571 + } + vtx { + -18 -1 -6 + 0 0 0 1 + 0.0714286 0.428571 + } + vtx { + -15 -1 -6 + 0 0 0 1 + 0.142857 0.428571 + } + vtx { + -12 -1 -6 + 0 0 0 1 + 0.214286 0.428571 + } + vtx { + -9 -1 -6 + 0 0 0 1 + 0.285714 0.428571 + } + vtx { + -6 -1 -6 + 0 0 0 1 + 0.357143 0.428571 + } + vtx { + -3 -1 -6 + 0 0 0 1 + 0.428571 0.428571 + } + vtx { + 0 -1 -6 + 0 0 0 1 + 0.5 0.428571 + } + vtx { + 3 -1 -6 + 0 0 0 1 + 0.571429 0.428571 + } + vtx { + 6 -1 -6 + 0 0 0 1 + 0.642857 0.428571 + } + vtx { + 9 -1 -6 + 0 0 0 1 + 0.714286 0.428571 + } + vtx { + 12 -1 -6 + 0 0 0 1 + 0.785714 0.428571 + } + vtx { + 15 -1 -6 + 0 0 0 1 + 0.857143 0.428571 + } + vtx { + 18 -1 -6 + 0 0 0 1 + 0.928571 0.428571 + } + vtx { + 21 -1 -6 + 0 0 0 1 + 1 0.428571 + } + vtx { + -21 -1 -12 + 0 0 0 1 + 0 0.357143 + } + vtx { + -18 -1 -12 + 0 0 0 1 + 0.0714286 0.357143 + } + vtx { + -15 -1 -12 + 0 0 0 1 + 0.142857 0.357143 + } + vtx { + -12 -1 -12 + 0 0 0 1 + 0.214286 0.357143 + } + vtx { + -9 -1 -12 + 0 0 0 1 + 0.285714 0.357143 + } + vtx { + -6 -1 -12 + 0 0 0 1 + 0.357143 0.357143 + } + vtx { + -3 -1 -12 + 0 0 0 1 + 0.428571 0.357143 + } + vtx { + 0 -1 -12 + 0 0 0 1 + 0.5 0.357143 + } + vtx { + 3 -1 -12 + 0 0 0 1 + 0.571429 0.357143 + } + vtx { + 6 -1 -12 + 0 0 0 1 + 0.642857 0.357143 + } + vtx { + 9 -1 -12 + 0 0 0 1 + 0.714286 0.357143 + } + vtx { + 12 -1 -12 + 0 0 0 1 + 0.785714 0.357143 + } + vtx { + 15 -1 -12 + 0 0 0 1 + 0.857143 0.357143 + } + vtx { + 18 -1 -12 + 0 0 0 1 + 0.928571 0.357143 + } + vtx { + 21 -1 -12 + 0 0 0 1 + 1 0.357143 + } + vtx { + -21 -1 -18 + 0 0 0 1 + 0 0.285714 + } + vtx { + -18 -1 -18 + 0 0 0 1 + 0.0714286 0.285714 + } + vtx { + -15 -1 -18 + 0 0 0 1 + 0.142857 0.285714 + } + vtx { + -12 -1 -18 + 0 0 0 1 + 0.214286 0.285714 + } + vtx { + -9 -1 -18 + 0 0 0 1 + 0.285714 0.285714 + } + vtx { + -6 -1 -18 + 0 0 0 1 + 0.357143 0.285714 + } + vtx { + -3 -1 -18 + 0 0 0 1 + 0.428571 0.285714 + } + vtx { + 0 -1 -18 + 0 0 0 1 + 0.5 0.285714 + } + vtx { + 3 -1 -18 + 0 0 0 1 + 0.571429 0.285714 + } + vtx { + 6 -1 -18 + 0 0 0 1 + 0.642857 0.285714 + } + vtx { + 9 -1 -18 + 0 0 0 1 + 0.714286 0.285714 + } + vtx { + 12 -1 -18 + 0 0 0 1 + 0.785714 0.285714 + } + vtx { + 15 -1 -18 + 0 0 0 1 + 0.857143 0.285714 + } + vtx { + 18 -1 -18 + 0 0 0 1 + 0.928571 0.285714 + } + vtx { + 21 -1 -18 + 0 0 0 1 + 1 0.285714 + } + vtx { + -21 -1 -24 + 0 0 0 1 + 0 0.214286 + } + vtx { + -18 -1 -24 + 0 0 0 1 + 0.0714286 0.214286 + } + vtx { + -15 -1 -24 + 0 0 0 1 + 0.142857 0.214286 + } + vtx { + -12 -1 -24 + 0 0 0 1 + 0.214286 0.214286 + } + vtx { + -9 -1 -24 + 0 0 0 1 + 0.285714 0.214286 + } + vtx { + -6 -1 -24 + 0 0 0 1 + 0.357143 0.214286 + } + vtx { + -3 -1 -24 + 0 0 0 1 + 0.428571 0.214286 + } + vtx { + 0 -1 -24 + 0 0 0 1 + 0.5 0.214286 + } + vtx { + 3 -1 -24 + 0 0 0 1 + 0.571429 0.214286 + } + vtx { + 6 -1 -24 + 0 0 0 1 + 0.642857 0.214286 + } + vtx { + 9 -1 -24 + 0 0 0 1 + 0.714286 0.214286 + } + vtx { + 12 -1 -24 + 0 0 0 1 + 0.785714 0.214286 + } + vtx { + 15 -1 -24 + 0 0 0 1 + 0.857143 0.214286 + } + vtx { + 18 -1 -24 + 0 0 0 1 + 0.928571 0.214286 + } + vtx { + 21 -1 -24 + 0 0 0 1 + 1 0.214286 + } + vtx { + -21 -1 -30 + 0 0 0 1 + 0 0.142857 + } + vtx { + -18 -1 -30 + 0 0 0 1 + 0.0714286 0.142857 + } + vtx { + -15 -1 -30 + 0 0 0 1 + 0.142857 0.142857 + } + vtx { + -12 -1 -30 + 0 0 0 1 + 0.214286 0.142857 + } + vtx { + -9 -1 -30 + 0 0 0 1 + 0.285714 0.142857 + } + vtx { + -6 -1 -30 + 0 0 0 1 + 0.357143 0.142857 + } + vtx { + -3 -1 -30 + 0 0 0 1 + 0.428571 0.142857 + } + vtx { + 0 -1 -30 + 0 0 0 1 + 0.5 0.142857 + } + vtx { + 3 -1 -30 + 0 0 0 1 + 0.571429 0.142857 + } + vtx { + 6 -1 -30 + 0 0 0 1 + 0.642857 0.142857 + } + vtx { + 9 -1 -30 + 0 0 0 1 + 0.714286 0.142857 + } + vtx { + 12 -1 -30 + 0 0 0 1 + 0.785714 0.142857 + } + vtx { + 15 -1 -30 + 0 0 0 1 + 0.857143 0.142857 + } + vtx { + 18 -1 -30 + 0 0 0 1 + 0.928571 0.142857 + } + vtx { + 21 -1 -30 + 0 0 0 1 + 1 0.142857 + } + vtx { + -21 -1 -36 + 0 0 0 1 + 0 0.0714286 + } + vtx { + -18 -1 -36 + 0 0 0 1 + 0.0714286 0.0714286 + } + vtx { + -15 -1 -36 + 0 0 0 1 + 0.142857 0.0714286 + } + vtx { + -12 -1 -36 + 0 0 0 1 + 0.214286 0.0714286 + } + vtx { + -9 -1 -36 + 0 0 0 1 + 0.285714 0.0714286 + } + vtx { + -6 -1 -36 + 0 0 0 1 + 0.357143 0.0714286 + } + vtx { + -3 -1 -36 + 0 0 0 1 + 0.428571 0.0714286 + } + vtx { + 0 -1 -36 + 0 0 0 1 + 0.5 0.0714286 + } + vtx { + 3 -1 -36 + 0 0 0 1 + 0.571429 0.0714286 + } + vtx { + 6 -1 -36 + 0 0 0 1 + 0.642857 0.0714286 + } + vtx { + 9 -1 -36 + 0 0 0 1 + 0.714286 0.0714286 + } + vtx { + 12 -1 -36 + 0 0 0 1 + 0.785714 0.0714286 + } + vtx { + 15 -1 -36 + 0 0 0 1 + 0.857143 0.0714286 + } + vtx { + 18 -1 -36 + 0 0 0 1 + 0.928571 0.0714286 + } + vtx { + 21 -1 -36 + 0 0 0 1 + 1 0.0714286 + } + vtx { + -21 -1 -42 + 0 0 0 1 + 0 0 + } + vtx { + -18 -1 -42 + 0 0 0 1 + 0.0714286 0 + } + vtx { + -15 -1 -42 + 0 0 0 1 + 0.142857 0 + } + vtx { + -12 -1 -42 + 0 0 0 1 + 0.214286 0 + } + vtx { + -9 -1 -42 + 0 0 0 1 + 0.285714 0 + } + vtx { + -6 -1 -42 + 0 0 0 1 + 0.357143 0 + } + vtx { + -3 -1 -42 + 0 0 0 1 + 0.428571 0 + } + vtx { + 0 -1 -42 + 0 0 0 1 + 0.5 0 + } + vtx { + 3 -1 -42 + 0 0 0 1 + 0.571429 0 + } + vtx { + 6 -1 -42 + 0 0 0 1 + 0.642857 0 + } + vtx { + 9 -1 -42 + 0 0 0 1 + 0.714286 0 + } + vtx { + 12 -1 -42 + 0 0 0 1 + 0.785714 0 + } + vtx { + 15 -1 -42 + 0 0 0 1 + 0.857143 0 + } + vtx { + 18 -1 -42 + 0 0 0 1 + 0.928571 0 + } + vtx { + 21 -1 -42 + 0 0 0 1 + 1 0 + } + vtx { + 0 -1 6 + 0 0 0 1 + 0.5 0.571429 + } + vtx { + 3 -1 6 + 0 0 0 1 + 0.571429 0.571429 + } + vtx { + 6 -1 6 + 0 0 0 1 + 0.642857 0.571429 + } + vtx { + 9 -1 6 + 0 0 0 1 + 0.714286 0.571429 + } + vtx { + 12 -1 6 + 0 0 0 1 + 0.785714 0.571429 + } + vtx { + 15 -1 6 + 0 0 0 1 + 0.857143 0.571429 + } + vtx { + 18 -1 6 + 0 0 0 1 + 0.928571 0.571429 + } + vtx { + 21 -1 6 + 0 0 0 1 + 1 0.571429 + } + vtx { + -3 -1 6 + 0 0 0 1 + 0.428571 0.571429 + } + vtx { + -6 -1 6 + 0 0 0 1 + 0.357143 0.571429 + } + vtx { + -9 -1 6 + 0 0 0 1 + 0.285714 0.571429 + } + vtx { + -12 -1 6 + 0 0 0 1 + 0.214286 0.571429 + } + vtx { + -15 -1 6 + 0 0 0 1 + 0.142857 0.571429 + } + vtx { + -18 -1 6 + 0 0 0 1 + 0.0714286 0.571429 + } + vtx { + -21 -1 6 + 0 0 0 1 + 0 0.571429 + } + vtx { + 0 -1 12 + 0 0 0 1 + 0.5 0.642857 + } + vtx { + 3 -1 12 + 0 0 0 1 + 0.571429 0.642857 + } + vtx { + 6 -1 12 + 0 0 0 1 + 0.642857 0.642857 + } + vtx { + 9 -1 12 + 0 0 0 1 + 0.714286 0.642857 + } + vtx { + 12 -1 12 + 0 0 0 1 + 0.785714 0.642857 + } + vtx { + 15 -1 12 + 0 0 0 1 + 0.857143 0.642857 + } + vtx { + 18 -1 12 + 0 0 0 1 + 0.928571 0.642857 + } + vtx { + 21 -1 12 + 0 0 0 1 + 1 0.642857 + } + vtx { + -3 -1 12 + 0 0 0 1 + 0.428571 0.642857 + } + vtx { + -6 -1 12 + 0 0 0 1 + 0.357143 0.642857 + } + vtx { + -9 -1 12 + 0 0 0 1 + 0.285714 0.642857 + } + vtx { + -12 -1 12 + 0 0 0 1 + 0.214286 0.642857 + } + vtx { + -15 -1 12 + 0 0 0 1 + 0.142857 0.642857 + } + vtx { + -18 -1 12 + 0 0 0 1 + 0.0714286 0.642857 + } + vtx { + -21 -1 12 + 0 0 0 1 + 0 0.642857 + } + vtx { + 0 -1 18 + 0 0 0 1 + 0.5 0.714286 + } + vtx { + 3 -1 18 + 0 0 0 1 + 0.571429 0.714286 + } + vtx { + 6 -1 18 + 0 0 0 1 + 0.642857 0.714286 + } + vtx { + 9 -1 18 + 0 0 0 1 + 0.714286 0.714286 + } + vtx { + 12 -1 18 + 0 0 0 1 + 0.785714 0.714286 + } + vtx { + 15 -1 18 + 0 0 0 1 + 0.857143 0.714286 + } + vtx { + 18 -1 18 + 0 0 0 1 + 0.928571 0.714286 + } + vtx { + 21 -1 18 + 0 0 0 1 + 1 0.714286 + } + vtx { + -3 -1 18 + 0 0 0 1 + 0.428571 0.714286 + } + vtx { + -6 -1 18 + 0 0 0 1 + 0.357143 0.714286 + } + vtx { + -9 -1 18 + 0 0 0 1 + 0.285714 0.714286 + } + vtx { + -12 -1 18 + 0 0 0 1 + 0.214286 0.714286 + } + vtx { + -15 -1 18 + 0 0 0 1 + 0.142857 0.714286 + } + vtx { + -18 -1 18 + 0 0 0 1 + 0.0714286 0.714286 + } + vtx { + -21 -1 18 + 0 0 0 1 + 0 0.714286 + } + vtx { + 0 -1 24 + 0 0 0 1 + 0.5 0.785714 + } + vtx { + 3 -1 24 + 0 0 0 1 + 0.571429 0.785714 + } + vtx { + 6 -1 24 + 0 0 0 1 + 0.642857 0.785714 + } + vtx { + 9 -1 24 + 0 0 0 1 + 0.714286 0.785714 + } + vtx { + 12 -1 24 + 0 0 0 1 + 0.785714 0.785714 + } + vtx { + 15 -1 24 + 0 0 0 1 + 0.857143 0.785714 + } + vtx { + 18 -1 24 + 0 0 0 1 + 0.928571 0.785714 + } + vtx { + 21 -1 24 + 0 0 0 1 + 1 0.785714 + } + vtx { + -3 -1 24 + 0 0 0 1 + 0.428571 0.785714 + } + vtx { + -6 -1 24 + 0 0 0 1 + 0.357143 0.785714 + } + vtx { + -9 -1 24 + 0 0 0 1 + 0.285714 0.785714 + } + vtx { + -12 -1 24 + 0 0 0 1 + 0.214286 0.785714 + } + vtx { + -15 -1 24 + 0 0 0 1 + 0.142857 0.785714 + } + vtx { + -18 -1 24 + 0 0 0 1 + 0.0714286 0.785714 + } + vtx { + -21 -1 24 + 0 0 0 1 + 0 0.785714 + } + vtx { + 0 -1 30 + 0 0 0 1 + 0.5 0.857143 + } + vtx { + 3 -1 30 + 0 0 0 1 + 0.571429 0.857143 + } + vtx { + 6 -1 30 + 0 0 0 1 + 0.642857 0.857143 + } + vtx { + 9 -1 30 + 0 0 0 1 + 0.714286 0.857143 + } + vtx { + 12 -1 30 + 0 0 0 1 + 0.785714 0.857143 + } + vtx { + 15 -1 30 + 0 0 0 1 + 0.857143 0.857143 + } + vtx { + 18 -1 30 + 0 0 0 1 + 0.928571 0.857143 + } + vtx { + 21 -1 30 + 0 0 0 1 + 1 0.857143 + } + vtx { + -3 -1 30 + 0 0 0 1 + 0.428571 0.857143 + } + vtx { + -6 -1 30 + 0 0 0 1 + 0.357143 0.857143 + } + vtx { + -9 -1 30 + 0 0 0 1 + 0.285714 0.857143 + } + vtx { + -12 -1 30 + 0 0 0 1 + 0.214286 0.857143 + } + vtx { + -15 -1 30 + 0 0 0 1 + 0.142857 0.857143 + } + vtx { + -18 -1 30 + 0 0 0 1 + 0.0714286 0.857143 + } + vtx { + -21 -1 30 + 0 0 0 1 + 0 0.857143 + } + vtx { + 0 -1 36 + 0 0 0 1 + 0.5 0.928571 + } + vtx { + 3 -1 36 + 0 0 0 1 + 0.571429 0.928571 + } + vtx { + 6 -1 36 + 0 0 0 1 + 0.642857 0.928571 + } + vtx { + 9 -1 36 + 0 0 0 1 + 0.714286 0.928571 + } + vtx { + 12 -1 36 + 0 0 0 1 + 0.785714 0.928571 + } + vtx { + 15 -1 36 + 0 0 0 1 + 0.857143 0.928571 + } + vtx { + 18 -1 36 + 0 0 0 1 + 0.928571 0.928571 + } + vtx { + 21 -1 36 + 0 0 0 1 + 1 0.928571 + } + vtx { + -3 -1 36 + 0 0 0 1 + 0.428571 0.928571 + } + vtx { + -6 -1 36 + 0 0 0 1 + 0.357143 0.928571 + } + vtx { + -9 -1 36 + 0 0 0 1 + 0.285714 0.928571 + } + vtx { + -12 -1 36 + 0 0 0 1 + 0.214286 0.928571 + } + vtx { + -15 -1 36 + 0 0 0 1 + 0.142857 0.928571 + } + vtx { + -18 -1 36 + 0 0 0 1 + 0.0714286 0.928571 + } + vtx { + -21 -1 36 + 0 0 0 1 + 0 0.928571 + } + vtx { + 0 -1 42 + 0 0 0 1 + 0.5 1 + } + vtx { + 3 -1 42 + 0 0 0 1 + 0.571429 1 + } + vtx { + 6 -1 42 + 0 0 0 1 + 0.642857 1 + } + vtx { + 9 -1 42 + 0 0 0 1 + 0.714286 1 + } + vtx { + 12 -1 42 + 0 0 0 1 + 0.785714 1 + } + vtx { + 15 -1 42 + 0 0 0 1 + 0.857143 1 + } + vtx { + 18 -1 42 + 0 0 0 1 + 0.928571 1 + } + vtx { + 21 -1 42 + 0 0 0 1 + 1 1 + } + vtx { + -3 -1 42 + 0 0 0 1 + 0.428571 1 + } + vtx { + -6 -1 42 + 0 0 0 1 + 0.357143 1 + } + vtx { + -9 -1 42 + 0 0 0 1 + 0.285714 1 + } + vtx { + -12 -1 42 + 0 0 0 1 + 0.214286 1 + } + vtx { + -15 -1 42 + 0 0 0 1 + 0.142857 1 + } + vtx { + -18 -1 42 + 0 0 0 1 + 0.0714286 1 + } + vtx { + -21 -1 42 + 0 0 0 1 + 0 1 + } + ply { + pes { 4 } + ple { 13 } + ple { 14 } + ple { 15 } + ple { 16 } + } + ply { + pes { 4 } + ple { 12 } + ple { 13 } + ple { 16 } + ple { 17 } + } + ply { + pes { 4 } + ple { 11 } + ple { 12 } + ple { 17 } + ple { 18 } + } + ply { + pes { 4 } + ple { 10 } + ple { 11 } + ple { 18 } + ple { 19 } + } + ply { + pes { 4 } + ple { 9 } + ple { 10 } + ple { 19 } + ple { 20 } + } + ply { + pes { 4 } + ple { 8 } + ple { 9 } + ple { 20 } + ple { 21 } + } + ply { + pes { 4 } + ple { 0 } + ple { 8 } + ple { 21 } + ple { 22 } + } + ply { + pes { 4 } + ple { 1 } + ple { 0 } + ple { 22 } + ple { 23 } + } + ply { + pes { 4 } + ple { 2 } + ple { 1 } + ple { 23 } + ple { 24 } + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 24 } + ple { 25 } + } + ply { + pes { 4 } + ple { 4 } + ple { 3 } + ple { 25 } + ple { 26 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 26 } + ple { 27 } + } + ply { + pes { 4 } + ple { 6 } + ple { 5 } + ple { 27 } + ple { 28 } + } + ply { + pes { 4 } + ple { 7 } + ple { 6 } + ple { 28 } + ple { 29 } + } + ply { + pes { 4 } + ple { 15 } + ple { 30 } + ple { 31 } + ple { 16 } + } + ply { + pes { 4 } + ple { 16 } + ple { 31 } + ple { 32 } + ple { 17 } + } + ply { + pes { 4 } + ple { 17 } + ple { 32 } + ple { 33 } + ple { 18 } + } + ply { + pes { 4 } + ple { 18 } + ple { 33 } + ple { 34 } + ple { 19 } + } + ply { + pes { 4 } + ple { 19 } + ple { 34 } + ple { 35 } + ple { 20 } + } + ply { + pes { 4 } + ple { 20 } + ple { 35 } + ple { 36 } + ple { 21 } + } + ply { + pes { 4 } + ple { 21 } + ple { 36 } + ple { 37 } + ple { 22 } + } + ply { + pes { 4 } + ple { 22 } + ple { 37 } + ple { 38 } + ple { 23 } + } + ply { + pes { 4 } + ple { 23 } + ple { 38 } + ple { 39 } + ple { 24 } + } + ply { + pes { 4 } + ple { 24 } + ple { 39 } + ple { 40 } + ple { 25 } + } + ply { + pes { 4 } + ple { 25 } + ple { 40 } + ple { 41 } + ple { 26 } + } + ply { + pes { 4 } + ple { 26 } + ple { 41 } + ple { 42 } + ple { 27 } + } + ply { + pes { 4 } + ple { 27 } + ple { 42 } + ple { 43 } + ple { 28 } + } + ply { + pes { 4 } + ple { 28 } + ple { 43 } + ple { 44 } + ple { 29 } + } + ply { + pes { 4 } + ple { 30 } + ple { 45 } + ple { 46 } + ple { 31 } + } + ply { + pes { 4 } + ple { 31 } + ple { 46 } + ple { 47 } + ple { 32 } + } + ply { + pes { 4 } + ple { 32 } + ple { 47 } + ple { 48 } + ple { 33 } + } + ply { + pes { 4 } + ple { 33 } + ple { 48 } + ple { 49 } + ple { 34 } + } + ply { + pes { 4 } + ple { 34 } + ple { 49 } + ple { 50 } + ple { 35 } + } + ply { + pes { 4 } + ple { 35 } + ple { 50 } + ple { 51 } + ple { 36 } + } + ply { + pes { 4 } + ple { 36 } + ple { 51 } + ple { 52 } + ple { 37 } + } + ply { + pes { 4 } + ple { 37 } + ple { 52 } + ple { 53 } + ple { 38 } + } + ply { + pes { 4 } + ple { 38 } + ple { 53 } + ple { 54 } + ple { 39 } + } + ply { + pes { 4 } + ple { 39 } + ple { 54 } + ple { 55 } + ple { 40 } + } + ply { + pes { 4 } + ple { 40 } + ple { 55 } + ple { 56 } + ple { 41 } + } + ply { + pes { 4 } + ple { 41 } + ple { 56 } + ple { 57 } + ple { 42 } + } + ply { + pes { 4 } + ple { 42 } + ple { 57 } + ple { 58 } + ple { 43 } + } + ply { + pes { 4 } + ple { 43 } + ple { 58 } + ple { 59 } + ple { 44 } + } + ply { + pes { 4 } + ple { 45 } + ple { 60 } + ple { 61 } + ple { 46 } + } + ply { + pes { 4 } + ple { 46 } + ple { 61 } + ple { 62 } + ple { 47 } + } + ply { + pes { 4 } + ple { 47 } + ple { 62 } + ple { 63 } + ple { 48 } + } + ply { + pes { 4 } + ple { 48 } + ple { 63 } + ple { 64 } + ple { 49 } + } + ply { + pes { 4 } + ple { 49 } + ple { 64 } + ple { 65 } + ple { 50 } + } + ply { + pes { 4 } + ple { 50 } + ple { 65 } + ple { 66 } + ple { 51 } + } + ply { + pes { 4 } + ple { 51 } + ple { 66 } + ple { 67 } + ple { 52 } + } + ply { + pes { 4 } + ple { 52 } + ple { 67 } + ple { 68 } + ple { 53 } + } + ply { + pes { 4 } + ple { 53 } + ple { 68 } + ple { 69 } + ple { 54 } + } + ply { + pes { 4 } + ple { 54 } + ple { 69 } + ple { 70 } + ple { 55 } + } + ply { + pes { 4 } + ple { 55 } + ple { 70 } + ple { 71 } + ple { 56 } + } + ply { + pes { 4 } + ple { 56 } + ple { 71 } + ple { 72 } + ple { 57 } + } + ply { + pes { 4 } + ple { 57 } + ple { 72 } + ple { 73 } + ple { 58 } + } + ply { + pes { 4 } + ple { 58 } + ple { 73 } + ple { 74 } + ple { 59 } + } + ply { + pes { 4 } + ple { 60 } + ple { 75 } + ple { 76 } + ple { 61 } + } + ply { + pes { 4 } + ple { 61 } + ple { 76 } + ple { 77 } + ple { 62 } + } + ply { + pes { 4 } + ple { 62 } + ple { 77 } + ple { 78 } + ple { 63 } + } + ply { + pes { 4 } + ple { 63 } + ple { 78 } + ple { 79 } + ple { 64 } + } + ply { + pes { 4 } + ple { 64 } + ple { 79 } + ple { 80 } + ple { 65 } + } + ply { + pes { 4 } + ple { 65 } + ple { 80 } + ple { 81 } + ple { 66 } + } + ply { + pes { 4 } + ple { 66 } + ple { 81 } + ple { 82 } + ple { 67 } + } + ply { + pes { 4 } + ple { 67 } + ple { 82 } + ple { 83 } + ple { 68 } + } + ply { + pes { 4 } + ple { 68 } + ple { 83 } + ple { 84 } + ple { 69 } + } + ply { + pes { 4 } + ple { 69 } + ple { 84 } + ple { 85 } + ple { 70 } + } + ply { + pes { 4 } + ple { 70 } + ple { 85 } + ple { 86 } + ple { 71 } + } + ply { + pes { 4 } + ple { 71 } + ple { 86 } + ple { 87 } + ple { 72 } + } + ply { + pes { 4 } + ple { 72 } + ple { 87 } + ple { 88 } + ple { 73 } + } + ply { + pes { 4 } + ple { 73 } + ple { 88 } + ple { 89 } + ple { 74 } + } + ply { + pes { 4 } + ple { 75 } + ple { 90 } + ple { 91 } + ple { 76 } + } + ply { + pes { 4 } + ple { 76 } + ple { 91 } + ple { 92 } + ple { 77 } + } + ply { + pes { 4 } + ple { 77 } + ple { 92 } + ple { 93 } + ple { 78 } + } + ply { + pes { 4 } + ple { 78 } + ple { 93 } + ple { 94 } + ple { 79 } + } + ply { + pes { 4 } + ple { 79 } + ple { 94 } + ple { 95 } + ple { 80 } + } + ply { + pes { 4 } + ple { 80 } + ple { 95 } + ple { 96 } + ple { 81 } + } + ply { + pes { 4 } + ple { 81 } + ple { 96 } + ple { 97 } + ple { 82 } + } + ply { + pes { 4 } + ple { 82 } + ple { 97 } + ple { 98 } + ple { 83 } + } + ply { + pes { 4 } + ple { 83 } + ple { 98 } + ple { 99 } + ple { 84 } + } + ply { + pes { 4 } + ple { 84 } + ple { 99 } + ple { 100 } + ple { 85 } + } + ply { + pes { 4 } + ple { 85 } + ple { 100 } + ple { 101 } + ple { 86 } + } + ply { + pes { 4 } + ple { 86 } + ple { 101 } + ple { 102 } + ple { 87 } + } + ply { + pes { 4 } + ple { 87 } + ple { 102 } + ple { 103 } + ple { 88 } + } + ply { + pes { 4 } + ple { 88 } + ple { 103 } + ple { 104 } + ple { 89 } + } + ply { + pes { 4 } + ple { 90 } + ple { 105 } + ple { 106 } + ple { 91 } + } + ply { + pes { 4 } + ple { 91 } + ple { 106 } + ple { 107 } + ple { 92 } + } + ply { + pes { 4 } + ple { 92 } + ple { 107 } + ple { 108 } + ple { 93 } + } + ply { + pes { 4 } + ple { 93 } + ple { 108 } + ple { 109 } + ple { 94 } + } + ply { + pes { 4 } + ple { 94 } + ple { 109 } + ple { 110 } + ple { 95 } + } + ply { + pes { 4 } + ple { 95 } + ple { 110 } + ple { 111 } + ple { 96 } + } + ply { + pes { 4 } + ple { 96 } + ple { 111 } + ple { 112 } + ple { 97 } + } + ply { + pes { 4 } + ple { 97 } + ple { 112 } + ple { 113 } + ple { 98 } + } + ply { + pes { 4 } + ple { 98 } + ple { 113 } + ple { 114 } + ple { 99 } + } + ply { + pes { 4 } + ple { 99 } + ple { 114 } + ple { 115 } + ple { 100 } + } + ply { + pes { 4 } + ple { 100 } + ple { 115 } + ple { 116 } + ple { 101 } + } + ply { + pes { 4 } + ple { 101 } + ple { 116 } + ple { 117 } + ple { 102 } + } + ply { + pes { 4 } + ple { 102 } + ple { 117 } + ple { 118 } + ple { 103 } + } + ply { + pes { 4 } + ple { 103 } + ple { 118 } + ple { 119 } + ple { 104 } + } + ply { + pes { 4 } + ple { 1 } + ple { 121 } + ple { 120 } + ple { 0 } + } + ply { + pes { 4 } + ple { 0 } + ple { 120 } + ple { 128 } + ple { 8 } + } + ply { + pes { 4 } + ple { 2 } + ple { 122 } + ple { 121 } + ple { 1 } + } + ply { + pes { 4 } + ple { 3 } + ple { 123 } + ple { 122 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 124 } + ple { 123 } + ple { 3 } + } + ply { + pes { 4 } + ple { 5 } + ple { 125 } + ple { 124 } + ple { 4 } + } + ply { + pes { 4 } + ple { 6 } + ple { 126 } + ple { 125 } + ple { 5 } + } + ply { + pes { 4 } + ple { 7 } + ple { 127 } + ple { 126 } + ple { 6 } + } + ply { + pes { 4 } + ple { 8 } + ple { 128 } + ple { 129 } + ple { 9 } + } + ply { + pes { 4 } + ple { 9 } + ple { 129 } + ple { 130 } + ple { 10 } + } + ply { + pes { 4 } + ple { 10 } + ple { 130 } + ple { 131 } + ple { 11 } + } + ply { + pes { 4 } + ple { 11 } + ple { 131 } + ple { 132 } + ple { 12 } + } + ply { + pes { 4 } + ple { 12 } + ple { 132 } + ple { 133 } + ple { 13 } + } + ply { + pes { 4 } + ple { 13 } + ple { 133 } + ple { 134 } + ple { 14 } + } + ply { + pes { 4 } + ple { 121 } + ple { 136 } + ple { 135 } + ple { 120 } + } + ply { + pes { 4 } + ple { 120 } + ple { 135 } + ple { 143 } + ple { 128 } + } + ply { + pes { 4 } + ple { 122 } + ple { 137 } + ple { 136 } + ple { 121 } + } + ply { + pes { 4 } + ple { 123 } + ple { 138 } + ple { 137 } + ple { 122 } + } + ply { + pes { 4 } + ple { 124 } + ple { 139 } + ple { 138 } + ple { 123 } + } + ply { + pes { 4 } + ple { 125 } + ple { 140 } + ple { 139 } + ple { 124 } + } + ply { + pes { 4 } + ple { 126 } + ple { 141 } + ple { 140 } + ple { 125 } + } + ply { + pes { 4 } + ple { 127 } + ple { 142 } + ple { 141 } + ple { 126 } + } + ply { + pes { 4 } + ple { 128 } + ple { 143 } + ple { 144 } + ple { 129 } + } + ply { + pes { 4 } + ple { 129 } + ple { 144 } + ple { 145 } + ple { 130 } + } + ply { + pes { 4 } + ple { 130 } + ple { 145 } + ple { 146 } + ple { 131 } + } + ply { + pes { 4 } + ple { 131 } + ple { 146 } + ple { 147 } + ple { 132 } + } + ply { + pes { 4 } + ple { 132 } + ple { 147 } + ple { 148 } + ple { 133 } + } + ply { + pes { 4 } + ple { 133 } + ple { 148 } + ple { 149 } + ple { 134 } + } + ply { + pes { 4 } + ple { 136 } + ple { 151 } + ple { 150 } + ple { 135 } + } + ply { + pes { 4 } + ple { 135 } + ple { 150 } + ple { 158 } + ple { 143 } + } + ply { + pes { 4 } + ple { 137 } + ple { 152 } + ple { 151 } + ple { 136 } + } + ply { + pes { 4 } + ple { 138 } + ple { 153 } + ple { 152 } + ple { 137 } + } + ply { + pes { 4 } + ple { 139 } + ple { 154 } + ple { 153 } + ple { 138 } + } + ply { + pes { 4 } + ple { 140 } + ple { 155 } + ple { 154 } + ple { 139 } + } + ply { + pes { 4 } + ple { 141 } + ple { 156 } + ple { 155 } + ple { 140 } + } + ply { + pes { 4 } + ple { 142 } + ple { 157 } + ple { 156 } + ple { 141 } + } + ply { + pes { 4 } + ple { 143 } + ple { 158 } + ple { 159 } + ple { 144 } + } + ply { + pes { 4 } + ple { 144 } + ple { 159 } + ple { 160 } + ple { 145 } + } + ply { + pes { 4 } + ple { 145 } + ple { 160 } + ple { 161 } + ple { 146 } + } + ply { + pes { 4 } + ple { 146 } + ple { 161 } + ple { 162 } + ple { 147 } + } + ply { + pes { 4 } + ple { 147 } + ple { 162 } + ple { 163 } + ple { 148 } + } + ply { + pes { 4 } + ple { 148 } + ple { 163 } + ple { 164 } + ple { 149 } + } + ply { + pes { 4 } + ple { 151 } + ple { 166 } + ple { 165 } + ple { 150 } + } + ply { + pes { 4 } + ple { 150 } + ple { 165 } + ple { 173 } + ple { 158 } + } + ply { + pes { 4 } + ple { 152 } + ple { 167 } + ple { 166 } + ple { 151 } + } + ply { + pes { 4 } + ple { 153 } + ple { 168 } + ple { 167 } + ple { 152 } + } + ply { + pes { 4 } + ple { 154 } + ple { 169 } + ple { 168 } + ple { 153 } + } + ply { + pes { 4 } + ple { 155 } + ple { 170 } + ple { 169 } + ple { 154 } + } + ply { + pes { 4 } + ple { 156 } + ple { 171 } + ple { 170 } + ple { 155 } + } + ply { + pes { 4 } + ple { 157 } + ple { 172 } + ple { 171 } + ple { 156 } + } + ply { + pes { 4 } + ple { 158 } + ple { 173 } + ple { 174 } + ple { 159 } + } + ply { + pes { 4 } + ple { 159 } + ple { 174 } + ple { 175 } + ple { 160 } + } + ply { + pes { 4 } + ple { 160 } + ple { 175 } + ple { 176 } + ple { 161 } + } + ply { + pes { 4 } + ple { 161 } + ple { 176 } + ple { 177 } + ple { 162 } + } + ply { + pes { 4 } + ple { 162 } + ple { 177 } + ple { 178 } + ple { 163 } + } + ply { + pes { 4 } + ple { 163 } + ple { 178 } + ple { 179 } + ple { 164 } + } + ply { + pes { 4 } + ple { 166 } + ple { 181 } + ple { 180 } + ple { 165 } + } + ply { + pes { 4 } + ple { 165 } + ple { 180 } + ple { 188 } + ple { 173 } + } + ply { + pes { 4 } + ple { 167 } + ple { 182 } + ple { 181 } + ple { 166 } + } + ply { + pes { 4 } + ple { 168 } + ple { 183 } + ple { 182 } + ple { 167 } + } + ply { + pes { 4 } + ple { 169 } + ple { 184 } + ple { 183 } + ple { 168 } + } + ply { + pes { 4 } + ple { 170 } + ple { 185 } + ple { 184 } + ple { 169 } + } + ply { + pes { 4 } + ple { 171 } + ple { 186 } + ple { 185 } + ple { 170 } + } + ply { + pes { 4 } + ple { 172 } + ple { 187 } + ple { 186 } + ple { 171 } + } + ply { + pes { 4 } + ple { 173 } + ple { 188 } + ple { 189 } + ple { 174 } + } + ply { + pes { 4 } + ple { 174 } + ple { 189 } + ple { 190 } + ple { 175 } + } + ply { + pes { 4 } + ple { 175 } + ple { 190 } + ple { 191 } + ple { 176 } + } + ply { + pes { 4 } + ple { 176 } + ple { 191 } + ple { 192 } + ple { 177 } + } + ply { + pes { 4 } + ple { 177 } + ple { 192 } + ple { 193 } + ple { 178 } + } + ply { + pes { 4 } + ple { 178 } + ple { 193 } + ple { 194 } + ple { 179 } + } + ply { + pes { 4 } + ple { 181 } + ple { 196 } + ple { 195 } + ple { 180 } + } + ply { + pes { 4 } + ple { 180 } + ple { 195 } + ple { 203 } + ple { 188 } + } + ply { + pes { 4 } + ple { 182 } + ple { 197 } + ple { 196 } + ple { 181 } + } + ply { + pes { 4 } + ple { 183 } + ple { 198 } + ple { 197 } + ple { 182 } + } + ply { + pes { 4 } + ple { 184 } + ple { 199 } + ple { 198 } + ple { 183 } + } + ply { + pes { 4 } + ple { 185 } + ple { 200 } + ple { 199 } + ple { 184 } + } + ply { + pes { 4 } + ple { 186 } + ple { 201 } + ple { 200 } + ple { 185 } + } + ply { + pes { 4 } + ple { 187 } + ple { 202 } + ple { 201 } + ple { 186 } + } + ply { + pes { 4 } + ple { 188 } + ple { 203 } + ple { 204 } + ple { 189 } + } + ply { + pes { 4 } + ple { 189 } + ple { 204 } + ple { 205 } + ple { 190 } + } + ply { + pes { 4 } + ple { 190 } + ple { 205 } + ple { 206 } + ple { 191 } + } + ply { + pes { 4 } + ple { 191 } + ple { 206 } + ple { 207 } + ple { 192 } + } + ply { + pes { 4 } + ple { 192 } + ple { 207 } + ple { 208 } + ple { 193 } + } + ply { + pes { 4 } + ple { 193 } + ple { 208 } + ple { 209 } + ple { 194 } + } + ply { + pes { 4 } + ple { 196 } + ple { 211 } + ple { 210 } + ple { 195 } + } + ply { + pes { 4 } + ple { 195 } + ple { 210 } + ple { 218 } + ple { 203 } + } + ply { + pes { 4 } + ple { 197 } + ple { 212 } + ple { 211 } + ple { 196 } + } + ply { + pes { 4 } + ple { 198 } + ple { 213 } + ple { 212 } + ple { 197 } + } + ply { + pes { 4 } + ple { 199 } + ple { 214 } + ple { 213 } + ple { 198 } + } + ply { + pes { 4 } + ple { 200 } + ple { 215 } + ple { 214 } + ple { 199 } + } + ply { + pes { 4 } + ple { 201 } + ple { 216 } + ple { 215 } + ple { 200 } + } + ply { + pes { 4 } + ple { 202 } + ple { 217 } + ple { 216 } + ple { 201 } + } + ply { + pes { 4 } + ple { 203 } + ple { 218 } + ple { 219 } + ple { 204 } + } + ply { + pes { 4 } + ple { 204 } + ple { 219 } + ple { 220 } + ple { 205 } + } + ply { + pes { 4 } + ple { 205 } + ple { 220 } + ple { 221 } + ple { 206 } + } + ply { + pes { 4 } + ple { 206 } + ple { 221 } + ple { 222 } + ple { 207 } + } + ply { + pes { 4 } + ple { 207 } + ple { 222 } + ple { 223 } + ple { 208 } + } + ply { + pes { 4 } + ple { 208 } + ple { 223 } + ple { 224 } + ple { 209 } + } + } + state_behavior { + state_item { + original_floor null -1 -1 -1 + no_move + no_light + no_sound + music music.ogg + no_user_property + no_shape_property + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + multiball_floor null -1 -1 -1 + no_move + no_light + sound multiball.wav + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object plunger { + 19.55 0 31.5 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + shape { + vts { 10 } + pls { 5 } + vtx { + -0.632264 0 0.35 + 1 1 1 1 + 0 0 + } + vtx { + -0.442584 0.402696 0.35 + 1 1 1 1 + 0 0 + } + vtx { + -0.0632263 0.637602 0.35 + 1 1 1 1 + 0 0 + } + vtx { + 0.316132 0.50337 0.35 + 1 1 1 1 + 0 0 + } + vtx { + 0.569037 0.033558 0.35 + 1 1 1 1 + 0 0 + } + vtx { + -0.64065 0 7.98 + 1 1 1 1 + 0 0 + } + vtx { + -0.450971 0.402696 7.98 + 1 1 1 1 + 0 0 + } + vtx { + -0.0716131 0.637602 7.98 + 1 1 1 1 + 0 0 + } + vtx { + 0.307745 0.50337 7.98 + 1 1 1 1 + 0 0 + } + vtx { + 0.560651 0.033558 7.98 + 1 1 1 1 + 0 0 + } + ply { + pes { 5 } + ple { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + ply { + pes { 4 } + ple { 1 } + ple { 6 } + ple { 5 } + ple { 0 } + } + ply { + pes { 4 } + ple { 2 } + ple { 7 } + ple { 6 } + ple { 1 } + } + ply { + pes { 4 } + ple { 3 } + ple { 8 } + ple { 7 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 9 } + ple { 8 } + ple { 3 } + } + } + plunger_behavior { + sound plunger.wav + } + properties { + collision + group_1 + } +} +object right_stopper { + 9.4174 0 -36.3043 + 0 -1.66895 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + vtx { + -1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.5 1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + state_behavior { + state_item { + null null 1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 0 50 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 0 1 0 + 0 3 0 + } + } + properties { + collision + transform_once + wall_one_way + group_1 + } +} +object mid_stopper { + 19.0174 0 -7.00435 + 0 -1.58595 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + vtx { + -1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.5 1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + state_behavior { + state_item { + null mid_stopper_breached 1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 0 50 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 0 + 0 3 0 + } + } + properties { + collision + transform_once + wall_one_way + group_1 + } +} +object left_stopper { + -5.86667 0 -38 + 0 -0.334 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + vtx { + -3 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 3 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 3 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -3 1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + state_behavior { + state_item { + null null 1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 0 50 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 0 + 0 3 0 + } + } + properties { + collision + transform_once + wall_one_way + group_1 + } +} +object floor_top_gnu_g { + -1.96667 0 -33.4 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 0.75 + 1 1 1 1 + 0 0 + } + vtx { + -0.75 0 0.75 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + gnu_g_off gnu_g -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_g_on gnu_g -1 -1 -1 + no_move + no_light + sound gnu_letter.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_all null -1 3 35 + no_move + no_light + sound gnu_all.ogg + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor_top_gnu_n { + 2.03333 0 -33.4 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 0.75 + 1 1 1 1 + 0 0 + } + vtx { + -0.75 0 0.75 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + gnu_n_off gnu_n -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_n_on gnu_n -1 -1 -1 + no_move + no_light + sound gnu_letter.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor_top_gnu_u { + 5.93333 0 -33.4 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 0.75 + 1 1 1 1 + 0 0 + } + vtx { + -0.75 0 0.75 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + gnu_u_off gnu_u -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_u_on gnu_u -1 -1 -1 + no_move + no_light + sound gnu_letter.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object bumper_one_arm { + -2.71481 0 -24.6527 + 0 0 0 + 1 1 1 + shape { + vts { 56 } + pls { 24 } + vtx { + 1.88023 0.416667 -0.000520615 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.7242 0.416667 0.755385 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.84915 0.696667 0.810362 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 2.01667 0.696667 0 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.36026 0.416667 1.29018 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.45844 0.696667 1.38369 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.685432 0.416667 1.75003 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.733958 0.696667 1.87666 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0172989 0.416667 1.86508 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0166667 0.696667 2 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.740895 0.416667 1.68643 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.797312 0.696667 1.80848 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.27431 0.416667 1.30013 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.36997 0.696667 1.39435 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.71913 0.416667 0.671869 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.84752 0.696667 0.72083 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.84563 0.416667 -0.000520615 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.98333 0.696667 0 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.67061 0.416667 -0.782193 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.79543 0.696667 -0.837985 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.28424 0.416667 -1.33821 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.38063 0.696667 -1.43406 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.642511 0.416667 -1.73614 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.691689 0.696667 -1.86065 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0172989 0.416667 -1.86612 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0166667 0.696667 -2 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.794486 0.416667 -1.71324 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.851036 0.696667 -1.8361 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.35033 0.416667 -1.34815 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.44778 0.696667 -1.44472 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.76205 0.416667 -0.657975 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.88979 0.696667 -0.704818 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 0.413333 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 0.413333 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 -1 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 -1 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 0.413333 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 -1 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 0.413333 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 0.413333 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 -1 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 -1 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 0.413333 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 -1 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 0.413333 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 0.413333 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 -1 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 -1 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 0.413333 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 -1 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 0.413333 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 0.413333 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 -1 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 -1 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 0.413333 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 -1 1 + 0.5 0.5 0.5 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + ply { + pes { 4 } + ple { 1 } + ple { 4 } + ple { 5 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 6 } + ple { 7 } + ple { 5 } + } + ply { + pes { 4 } + ple { 6 } + ple { 8 } + ple { 9 } + ple { 7 } + } + ply { + pes { 4 } + ple { 8 } + ple { 10 } + ple { 11 } + ple { 9 } + } + ply { + pes { 4 } + ple { 10 } + ple { 12 } + ple { 13 } + ple { 11 } + } + ply { + pes { 4 } + ple { 12 } + ple { 14 } + ple { 15 } + ple { 13 } + } + ply { + pes { 4 } + ple { 14 } + ple { 16 } + ple { 17 } + ple { 15 } + } + ply { + pes { 4 } + ple { 16 } + ple { 18 } + ple { 19 } + ple { 17 } + } + ply { + pes { 4 } + ple { 18 } + ple { 20 } + ple { 21 } + ple { 19 } + } + ply { + pes { 4 } + ple { 20 } + ple { 22 } + ple { 23 } + ple { 21 } + } + ply { + pes { 4 } + ple { 22 } + ple { 24 } + ple { 25 } + ple { 23 } + } + ply { + pes { 4 } + ple { 24 } + ple { 26 } + ple { 27 } + ple { 25 } + } + ply { + pes { 4 } + ple { 26 } + ple { 28 } + ple { 29 } + ple { 27 } + } + ply { + pes { 4 } + ple { 28 } + ple { 30 } + ple { 31 } + ple { 29 } + } + ply { + pes { 4 } + ple { 31 } + ple { 30 } + ple { 0 } + ple { 3 } + } + ply { + pes { 4 } + ple { 33 } + ple { 32 } + ple { 34 } + ple { 35 } + } + ply { + pes { 4 } + ple { 32 } + ple { 36 } + ple { 37 } + ple { 34 } + } + ply { + pes { 4 } + ple { 39 } + ple { 38 } + ple { 40 } + ple { 41 } + } + ply { + pes { 4 } + ple { 38 } + ple { 42 } + ple { 43 } + ple { 40 } + } + ply { + pes { 4 } + ple { 45 } + ple { 44 } + ple { 46 } + ple { 47 } + } + ply { + pes { 4 } + ple { 44 } + ple { 48 } + ple { 49 } + ple { 46 } + } + ply { + pes { 4 } + ple { 51 } + ple { 50 } + ple { 52 } + ple { 53 } + } + ply { + pes { 4 } + ple { 50 } + ple { 54 } + ple { 55 } + ple { 52 } + } + } + state_behavior { + state_item { + null null -1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + bump null -1 0 25 + move + 0 + 0 -0.3 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + group_1 + } +} +object bumper_one { + -2.71353 0 -24.6669 + 0 0 0 + 1 1 1 + shape { + vts { 24 } + pls { 12 } + vtx { + 0 1 -1.6 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + 1.6 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 1 1.6 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + -1.6 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 -1 -1.6 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 -1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 -1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + 1.6 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 -1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 -1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 -1 1.6 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 -1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 -1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + -1.6 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 -1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 -1 -1.4 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 12 } + ple { 13 } + ple { 1 } + } + ply { + pes { 4 } + ple { 11 } + ple { 23 } + ple { 12 } + ple { 0 } + } + ply { + pes { 4 } + ple { 1 } + ple { 13 } + ple { 14 } + ple { 2 } + } + ply { + pes { 4 } + ple { 2 } + ple { 14 } + ple { 15 } + ple { 3 } + } + ply { + pes { 4 } + ple { 3 } + ple { 15 } + ple { 16 } + ple { 4 } + } + ply { + pes { 4 } + ple { 4 } + ple { 16 } + ple { 17 } + ple { 5 } + } + ply { + pes { 4 } + ple { 5 } + ple { 17 } + ple { 18 } + ple { 6 } + } + ply { + pes { 4 } + ple { 6 } + ple { 18 } + ple { 19 } + ple { 7 } + } + ply { + pes { 4 } + ple { 7 } + ple { 19 } + ple { 20 } + ple { 8 } + } + ply { + pes { 4 } + ple { 8 } + ple { 20 } + ple { 21 } + ple { 9 } + } + ply { + pes { 4 } + ple { 9 } + ple { 21 } + ple { 22 } + ple { 10 } + } + ply { + pes { 4 } + ple { 10 } + ple { 22 } + ple { 23 } + ple { 11 } + } + } + shape { + vts { 16 } + pls { 17 } + tex { + tiles.png + } + vtx { + 0.5 1.75 -1.125 + 1 1 1 1 + 0.40625 0.8125 + } + vtx { + 1.5 1 -1.5 + 1 1 1 1 + 0.5 0.75 + } + vtx { + 1.125 1.75 -0.5 + 1 1 1 1 + 0.4375 0.84375 + } + vtx { + 2.125 1 0 + 1 1 1 1 + 0.5 0.875 + } + vtx { + 1.125 1.75 0.5 + 1 1 1 1 + 0.4375 0.90625 + } + vtx { + 1.5 1 1.5 + 1 1 1 1 + 0.5 1 + } + vtx { + 0.5 1.75 1.125 + 1 1 1 1 + 0.40625 0.9375 + } + vtx { + 0 1 2.125 + 1 1 1 1 + 0.375 1 + } + vtx { + -0.5 1.75 1.125 + 1 1 1 1 + 0.34375 0.9375 + } + vtx { + -1.5 1 1.5 + 1 1 1 1 + 0.25 1 + } + vtx { + -1.125 1.75 0.5 + 1 1 1 1 + 0.3125 0.90625 + } + vtx { + -2.125 1 0 + 1 1 1 1 + 0.25 0.875 + } + vtx { + -1.125 1.75 -0.5 + 1 1 1 1 + 0.3125 0.84375 + } + vtx { + -1.5 1 -1.5 + 1 1 1 1 + 0.25 0.75 + } + vtx { + -0.5 1.75 -1.125 + 1 1 1 1 + 0.34375 0.8125 + } + vtx { + 0 1 -2.125 + 1 1 1 1 + 0.375 0.75 + } + ply { + pes { 3 } + ple { 0 } + ple { 15 } + ple { 1 } + } + ply { + pes { 3 } + ple { 2 } + ple { 0 } + ple { 1 } + } + ply { + pes { 3 } + ple { 2 } + ple { 1 } + ple { 3 } + } + ply { + pes { 3 } + ple { 4 } + ple { 2 } + ple { 3 } + } + ply { + pes { 3 } + ple { 4 } + ple { 3 } + ple { 5 } + } + ply { + pes { 3 } + ple { 4 } + ple { 5 } + ple { 6 } + } + ply { + pes { 3 } + ple { 6 } + ple { 5 } + ple { 7 } + } + ply { + pes { 3 } + ple { 6 } + ple { 7 } + ple { 8 } + } + ply { + pes { 3 } + ple { 8 } + ple { 7 } + ple { 9 } + } + ply { + pes { 3 } + ple { 8 } + ple { 9 } + ple { 10 } + } + ply { + pes { 3 } + ple { 10 } + ple { 9 } + ple { 11 } + } + ply { + pes { 3 } + ple { 10 } + ple { 11 } + ple { 12 } + } + ply { + pes { 3 } + ple { 12 } + ple { 11 } + ple { 13 } + } + ply { + pes { 3 } + ple { 12 } + ple { 13 } + ple { 14 } + } + ply { + pes { 3 } + ple { 14 } + ple { 13 } + ple { 15 } + } + ply { + pes { 3 } + ple { 0 } + ple { 14 } + ple { 15 } + } + ply { + pes { 8 } + ple { 0 } + ple { 2 } + ple { 4 } + ple { 6 } + ple { 8 } + ple { 10 } + ple { 12 } + ple { 14 } + } + } + bumper_behavior { + 0.5 + sound bump.ogg + light { + 0.9 0.9 0.1 + 0 3 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object bumper_two_arm { + 3.46437 0 -18.3463 + 0 0 0 + 1 1 1 + shape { + vts { 56 } + pls { 24 } + vtx { + 1.88023 0.416667 -0.000520615 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.7242 0.416667 0.755385 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.84915 0.696667 0.810362 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 2.01667 0.696667 0 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.36026 0.416667 1.29018 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.45844 0.696667 1.38369 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.685432 0.416667 1.75003 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.733958 0.696667 1.87666 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0172989 0.416667 1.86508 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0166667 0.696667 2 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.740895 0.416667 1.68643 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.797312 0.696667 1.80848 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.27431 0.416667 1.30013 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.36997 0.696667 1.39435 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.71913 0.416667 0.671869 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.84752 0.696667 0.72083 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.84563 0.416667 -0.000520615 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.98333 0.696667 0 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.67061 0.416667 -0.782193 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.79543 0.696667 -0.837985 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.28424 0.416667 -1.33821 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.38063 0.696667 -1.43406 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.642511 0.416667 -1.73614 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.691689 0.696667 -1.86065 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0172989 0.416667 -1.86612 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0166667 0.696667 -2 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.794486 0.416667 -1.71324 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.851036 0.696667 -1.8361 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.35033 0.416667 -1.34815 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.44778 0.696667 -1.44472 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.76205 0.416667 -0.657975 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.88979 0.696667 -0.704818 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 0.413333 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 0.413333 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 -1 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 -1 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 0.413333 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 -1 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 0.413333 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 0.413333 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 -1 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 -1 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 0.413333 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 -1 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 0.413333 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 0.413333 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 -1 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 -1 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 0.413333 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 -1 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 0.413333 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 0.413333 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 -1 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 -1 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 0.413333 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 -1 1 + 0.5 0.5 0.5 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + ply { + pes { 4 } + ple { 1 } + ple { 4 } + ple { 5 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 6 } + ple { 7 } + ple { 5 } + } + ply { + pes { 4 } + ple { 6 } + ple { 8 } + ple { 9 } + ple { 7 } + } + ply { + pes { 4 } + ple { 8 } + ple { 10 } + ple { 11 } + ple { 9 } + } + ply { + pes { 4 } + ple { 10 } + ple { 12 } + ple { 13 } + ple { 11 } + } + ply { + pes { 4 } + ple { 12 } + ple { 14 } + ple { 15 } + ple { 13 } + } + ply { + pes { 4 } + ple { 14 } + ple { 16 } + ple { 17 } + ple { 15 } + } + ply { + pes { 4 } + ple { 16 } + ple { 18 } + ple { 19 } + ple { 17 } + } + ply { + pes { 4 } + ple { 18 } + ple { 20 } + ple { 21 } + ple { 19 } + } + ply { + pes { 4 } + ple { 20 } + ple { 22 } + ple { 23 } + ple { 21 } + } + ply { + pes { 4 } + ple { 22 } + ple { 24 } + ple { 25 } + ple { 23 } + } + ply { + pes { 4 } + ple { 24 } + ple { 26 } + ple { 27 } + ple { 25 } + } + ply { + pes { 4 } + ple { 26 } + ple { 28 } + ple { 29 } + ple { 27 } + } + ply { + pes { 4 } + ple { 28 } + ple { 30 } + ple { 31 } + ple { 29 } + } + ply { + pes { 4 } + ple { 31 } + ple { 30 } + ple { 0 } + ple { 3 } + } + ply { + pes { 4 } + ple { 33 } + ple { 32 } + ple { 34 } + ple { 35 } + } + ply { + pes { 4 } + ple { 32 } + ple { 36 } + ple { 37 } + ple { 34 } + } + ply { + pes { 4 } + ple { 39 } + ple { 38 } + ple { 40 } + ple { 41 } + } + ply { + pes { 4 } + ple { 38 } + ple { 42 } + ple { 43 } + ple { 40 } + } + ply { + pes { 4 } + ple { 45 } + ple { 44 } + ple { 46 } + ple { 47 } + } + ply { + pes { 4 } + ple { 44 } + ple { 48 } + ple { 49 } + ple { 46 } + } + ply { + pes { 4 } + ple { 51 } + ple { 50 } + ple { 52 } + ple { 53 } + } + ply { + pes { 4 } + ple { 50 } + ple { 54 } + ple { 55 } + ple { 52 } + } + } + state_behavior { + state_item { + null null -1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + bump null -1 0 25 + move + 0 + 0 -0.3 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + group_1 + } +} +object bumper_two { + 3.46795 0 -18.359 + 0 0 0 + 1 1 1 + shape { + vts { 24 } + pls { 12 } + vtx { + 0 1 -1.6 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + 1.6 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 1 1.6 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + -1.6 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 -1 -1.6 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 -1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 -1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + 1.6 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 -1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 -1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 -1 1.6 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 -1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 -1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + -1.6 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 -1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 -1 -1.4 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 12 } + ple { 13 } + ple { 1 } + } + ply { + pes { 4 } + ple { 11 } + ple { 23 } + ple { 12 } + ple { 0 } + } + ply { + pes { 4 } + ple { 1 } + ple { 13 } + ple { 14 } + ple { 2 } + } + ply { + pes { 4 } + ple { 2 } + ple { 14 } + ple { 15 } + ple { 3 } + } + ply { + pes { 4 } + ple { 3 } + ple { 15 } + ple { 16 } + ple { 4 } + } + ply { + pes { 4 } + ple { 4 } + ple { 16 } + ple { 17 } + ple { 5 } + } + ply { + pes { 4 } + ple { 5 } + ple { 17 } + ple { 18 } + ple { 6 } + } + ply { + pes { 4 } + ple { 6 } + ple { 18 } + ple { 19 } + ple { 7 } + } + ply { + pes { 4 } + ple { 7 } + ple { 19 } + ple { 20 } + ple { 8 } + } + ply { + pes { 4 } + ple { 8 } + ple { 20 } + ple { 21 } + ple { 9 } + } + ply { + pes { 4 } + ple { 9 } + ple { 21 } + ple { 22 } + ple { 10 } + } + ply { + pes { 4 } + ple { 10 } + ple { 22 } + ple { 23 } + ple { 11 } + } + } + shape { + vts { 16 } + pls { 17 } + tex { + tiles.png + } + vtx { + 0.5 1.75 -1.125 + 1 1 1 1 + 0.15625 0.8125 + } + vtx { + 1.5 1 -1.5 + 1 1 1 1 + 0.25 0.75 + } + vtx { + 1.125 1.75 -0.5 + 1 1 1 1 + 0.1875 0.84375 + } + vtx { + 2.125 1 0 + 1 1 1 1 + 0.25 0.875 + } + vtx { + 1.125 1.75 0.5 + 1 1 1 1 + 0.1875 0.90625 + } + vtx { + 1.5 1 1.5 + 1 1 1 1 + 0.25 1 + } + vtx { + 0.5 1.75 1.125 + 1 1 1 1 + 0.15625 0.9375 + } + vtx { + 0 1 2.125 + 1 1 1 1 + 0.125 1 + } + vtx { + -0.5 1.75 1.125 + 1 1 1 1 + 0.09375 0.9375 + } + vtx { + -1.5 1 1.5 + 1 1 1 1 + 0 1 + } + vtx { + -1.125 1.75 0.5 + 1 1 1 1 + 0.0625 0.90625 + } + vtx { + -2.125 1 0 + 1 1 1 1 + 0 0.875 + } + vtx { + -1.125 1.75 -0.5 + 1 1 1 1 + 0.0625 0.84375 + } + vtx { + -1.5 1 -1.5 + 1 1 1 1 + 0 0.75 + } + vtx { + -0.5 1.75 -1.125 + 1 1 1 1 + 0.09375 0.8125 + } + vtx { + 0 1 -2.125 + 1 1 1 1 + 0.125 0.75 + } + ply { + pes { 3 } + ple { 0 } + ple { 15 } + ple { 1 } + } + ply { + pes { 3 } + ple { 2 } + ple { 0 } + ple { 1 } + } + ply { + pes { 3 } + ple { 2 } + ple { 1 } + ple { 3 } + } + ply { + pes { 3 } + ple { 4 } + ple { 2 } + ple { 3 } + } + ply { + pes { 3 } + ple { 4 } + ple { 3 } + ple { 5 } + } + ply { + pes { 3 } + ple { 4 } + ple { 5 } + ple { 6 } + } + ply { + pes { 3 } + ple { 6 } + ple { 5 } + ple { 7 } + } + ply { + pes { 3 } + ple { 6 } + ple { 7 } + ple { 8 } + } + ply { + pes { 3 } + ple { 8 } + ple { 7 } + ple { 9 } + } + ply { + pes { 3 } + ple { 8 } + ple { 9 } + ple { 10 } + } + ply { + pes { 3 } + ple { 10 } + ple { 9 } + ple { 11 } + } + ply { + pes { 3 } + ple { 10 } + ple { 11 } + ple { 12 } + } + ply { + pes { 3 } + ple { 12 } + ple { 11 } + ple { 13 } + } + ply { + pes { 3 } + ple { 12 } + ple { 13 } + ple { 14 } + } + ply { + pes { 3 } + ple { 14 } + ple { 13 } + ple { 15 } + } + ply { + pes { 3 } + ple { 0 } + ple { 14 } + ple { 15 } + } + ply { + pes { 8 } + ple { 0 } + ple { 2 } + ple { 4 } + ple { 6 } + ple { 8 } + ple { 10 } + ple { 12 } + ple { 14 } + } + } + bumper_behavior { + 0.5 + sound bump.ogg + light { + 1 1 0 + 0 3 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object bumper_three_arm { + 7.66667 0 -26.5334 + 0 0 0 + 1 1 1 + shape { + vts { 56 } + pls { 24 } + vtx { + 1.88023 0.416667 -0.000520615 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.7242 0.416667 0.755385 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.84915 0.696667 0.810362 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 2.01667 0.696667 0 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.36026 0.416667 1.29018 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.45844 0.696667 1.38369 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.685432 0.416667 1.75003 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.733958 0.696667 1.87666 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0172989 0.416667 1.86508 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0166667 0.696667 2 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.740895 0.416667 1.68643 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.797312 0.696667 1.80848 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.27431 0.416667 1.30013 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.36997 0.696667 1.39435 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.71913 0.416667 0.671869 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.84752 0.696667 0.72083 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.84563 0.416667 -0.000520615 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.98333 0.696667 0 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.67061 0.416667 -0.782193 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.79543 0.696667 -0.837985 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.28424 0.416667 -1.33821 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.38063 0.696667 -1.43406 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.642511 0.416667 -1.73614 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -0.691689 0.696667 -1.86065 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0172989 0.416667 -1.86612 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.0166667 0.696667 -2 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.794486 0.416667 -1.71324 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 0.851036 0.696667 -1.8361 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.35033 0.416667 -1.34815 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.44778 0.696667 -1.44472 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.76205 0.416667 -0.657975 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.88979 0.696667 -0.704818 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 0.413333 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 0.413333 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 -1 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 -1 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 0.413333 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 -1 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 0.413333 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 0.413333 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 -1 -1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 -1 -1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 0.413333 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 -1 -1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 0.413333 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 0.413333 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.25 -1 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1.125 -1 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 0.413333 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + -1 -1 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 0.413333 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 0.413333 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.25 -1 1.25 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1 -1 1.125 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 0.413333 1 + 0.5 0.5 0.5 1 + 0 0 + } + vtx { + 1.125 -1 1 + 0.5 0.5 0.5 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + ply { + pes { 4 } + ple { 1 } + ple { 4 } + ple { 5 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 6 } + ple { 7 } + ple { 5 } + } + ply { + pes { 4 } + ple { 6 } + ple { 8 } + ple { 9 } + ple { 7 } + } + ply { + pes { 4 } + ple { 8 } + ple { 10 } + ple { 11 } + ple { 9 } + } + ply { + pes { 4 } + ple { 10 } + ple { 12 } + ple { 13 } + ple { 11 } + } + ply { + pes { 4 } + ple { 12 } + ple { 14 } + ple { 15 } + ple { 13 } + } + ply { + pes { 4 } + ple { 14 } + ple { 16 } + ple { 17 } + ple { 15 } + } + ply { + pes { 4 } + ple { 16 } + ple { 18 } + ple { 19 } + ple { 17 } + } + ply { + pes { 4 } + ple { 18 } + ple { 20 } + ple { 21 } + ple { 19 } + } + ply { + pes { 4 } + ple { 20 } + ple { 22 } + ple { 23 } + ple { 21 } + } + ply { + pes { 4 } + ple { 22 } + ple { 24 } + ple { 25 } + ple { 23 } + } + ply { + pes { 4 } + ple { 24 } + ple { 26 } + ple { 27 } + ple { 25 } + } + ply { + pes { 4 } + ple { 26 } + ple { 28 } + ple { 29 } + ple { 27 } + } + ply { + pes { 4 } + ple { 28 } + ple { 30 } + ple { 31 } + ple { 29 } + } + ply { + pes { 4 } + ple { 31 } + ple { 30 } + ple { 0 } + ple { 3 } + } + ply { + pes { 4 } + ple { 33 } + ple { 32 } + ple { 34 } + ple { 35 } + } + ply { + pes { 4 } + ple { 32 } + ple { 36 } + ple { 37 } + ple { 34 } + } + ply { + pes { 4 } + ple { 39 } + ple { 38 } + ple { 40 } + ple { 41 } + } + ply { + pes { 4 } + ple { 38 } + ple { 42 } + ple { 43 } + ple { 40 } + } + ply { + pes { 4 } + ple { 45 } + ple { 44 } + ple { 46 } + ple { 47 } + } + ply { + pes { 4 } + ple { 44 } + ple { 48 } + ple { 49 } + ple { 46 } + } + ply { + pes { 4 } + ple { 51 } + ple { 50 } + ple { 52 } + ple { 53 } + } + ply { + pes { 4 } + ple { 50 } + ple { 54 } + ple { 55 } + ple { 52 } + } + } + state_behavior { + state_item { + null null -1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + bump null -1 0 25 + move + 0 + 0 -0.3 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + group_1 + } +} +object bumper_three { + 7.66795 0 -26.559 + 0 0 0 + 1 1 1 + shape { + vts { 24 } + pls { 12 } + vtx { + 0 1 -1.6 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + 1.6 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 1 1.6 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + -1.6 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 -1 -1.6 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 -1 -1.4 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 -1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + 1.6 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.4 -1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + 0.8 -1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + 0 -1 1.6 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 -1 1.4 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 -1 0.8 + 1 1 1 1 + 0 0 + } + vtx { + -1.6 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.4 -1 -0.8 + 1 1 1 1 + 0 0 + } + vtx { + -0.8 -1 -1.4 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 12 } + ple { 13 } + ple { 1 } + } + ply { + pes { 4 } + ple { 11 } + ple { 23 } + ple { 12 } + ple { 0 } + } + ply { + pes { 4 } + ple { 1 } + ple { 13 } + ple { 14 } + ple { 2 } + } + ply { + pes { 4 } + ple { 2 } + ple { 14 } + ple { 15 } + ple { 3 } + } + ply { + pes { 4 } + ple { 3 } + ple { 15 } + ple { 16 } + ple { 4 } + } + ply { + pes { 4 } + ple { 4 } + ple { 16 } + ple { 17 } + ple { 5 } + } + ply { + pes { 4 } + ple { 5 } + ple { 17 } + ple { 18 } + ple { 6 } + } + ply { + pes { 4 } + ple { 6 } + ple { 18 } + ple { 19 } + ple { 7 } + } + ply { + pes { 4 } + ple { 7 } + ple { 19 } + ple { 20 } + ple { 8 } + } + ply { + pes { 4 } + ple { 8 } + ple { 20 } + ple { 21 } + ple { 9 } + } + ply { + pes { 4 } + ple { 9 } + ple { 21 } + ple { 22 } + ple { 10 } + } + ply { + pes { 4 } + ple { 10 } + ple { 22 } + ple { 23 } + ple { 11 } + } + } + shape { + vts { 16 } + pls { 17 } + tex { + tiles.png + } + vtx { + 0.5 1.75 -1.125 + 1 1 1 1 + 0.65625 0.8125 + } + vtx { + 1.5 1 -1.5 + 1 1 1 1 + 0.75 0.75 + } + vtx { + 1.125 1.75 -0.5 + 1 1 1 1 + 0.6875 0.84375 + } + vtx { + 2.125 1 0 + 1 1 1 1 + 0.75 0.875 + } + vtx { + 1.125 1.75 0.5 + 1 1 1 1 + 0.6875 0.90625 + } + vtx { + 1.5 1 1.5 + 1 1 1 1 + 0.75 1 + } + vtx { + 0.5 1.75 1.125 + 1 1 1 1 + 0.65625 0.9375 + } + vtx { + 0 1 2.125 + 1 1 1 1 + 0.625 1 + } + vtx { + -0.5 1.75 1.125 + 1 1 1 1 + 0.59375 0.9375 + } + vtx { + -1.5 1 1.5 + 1 1 1 1 + 0.5 1 + } + vtx { + -1.125 1.75 0.5 + 1 1 1 1 + 0.5625 0.90625 + } + vtx { + -2.125 1 0 + 1 1 1 1 + 0.5 0.875 + } + vtx { + -1.125 1.75 -0.5 + 1 1 1 1 + 0.5625 0.84375 + } + vtx { + -1.5 1 -1.5 + 1 1 1 1 + 0.5 0.75 + } + vtx { + -0.5 1.75 -1.125 + 1 1 1 1 + 0.59375 0.8125 + } + vtx { + 0 1 -2.125 + 1 1 1 1 + 0.625 0.75 + } + ply { + pes { 3 } + ple { 0 } + ple { 15 } + ple { 1 } + } + ply { + pes { 3 } + ple { 2 } + ple { 0 } + ple { 1 } + } + ply { + pes { 3 } + ple { 2 } + ple { 1 } + ple { 3 } + } + ply { + pes { 3 } + ple { 4 } + ple { 2 } + ple { 3 } + } + ply { + pes { 3 } + ple { 4 } + ple { 3 } + ple { 5 } + } + ply { + pes { 3 } + ple { 4 } + ple { 5 } + ple { 6 } + } + ply { + pes { 3 } + ple { 6 } + ple { 5 } + ple { 7 } + } + ply { + pes { 3 } + ple { 6 } + ple { 7 } + ple { 8 } + } + ply { + pes { 3 } + ple { 8 } + ple { 7 } + ple { 9 } + } + ply { + pes { 3 } + ple { 8 } + ple { 9 } + ple { 10 } + } + ply { + pes { 3 } + ple { 10 } + ple { 9 } + ple { 11 } + } + ply { + pes { 3 } + ple { 10 } + ple { 11 } + ple { 12 } + } + ply { + pes { 3 } + ple { 12 } + ple { 11 } + ple { 13 } + } + ply { + pes { 3 } + ple { 12 } + ple { 13 } + ple { 14 } + } + ply { + pes { 3 } + ple { 14 } + ple { 13 } + ple { 15 } + } + ply { + pes { 3 } + ple { 0 } + ple { 14 } + ple { 15 } + } + ply { + pes { 8 } + ple { 0 } + ple { 2 } + ple { 4 } + ple { 6 } + ple { 8 } + ple { 10 } + ple { 12 } + ple { 14 } + } + } + bumper_behavior { + 0.5 + sound bump.ogg + light { + 0.9 0.9 0.1 + 0 3 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor_bottom_free_f { + -19.7778 0 22.8667 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 0.75 + 1 1 1 1 + 0 0 + } + vtx { + -0.75 0 0.75 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0.625 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.625 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.75 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.75 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0.5 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.5 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.625 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.625 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + free_f_off free_f -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_f_on free_f -1 -1 -1 + no_move + no_light + sound free_letter.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_all null -1 3 35 + no_move + no_light + sound free_all.ogg + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor_bottom_free_r { + -16.0778 0 22.8222 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 0.75 + 1 1 1 1 + 0 0 + } + vtx { + -0.75 0 0.75 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.625 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.625 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.75 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.75 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.5 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.5 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.625 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.625 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + free_r_off free_r -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_r_on free_r -1 -1 -1 + no_move + no_light + sound free_letter.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor_bottom_free_e { + 13.3222 0 22.9 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 0.75 + 1 1 1 1 + 0 0 + } + vtx { + -0.75 0 0.75 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.625 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.625 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.75 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.75 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.5 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.5 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.625 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.625 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + free_e_off free_e -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_e_on free_e -1 -1 -1 + no_move + no_light + sound free_letter.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor_bottom_free_ee { + 16.8222 0 22.9 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 -0.75 + 1 1 1 1 + 0 0 + } + vtx { + 0.75 0 0.75 + 1 1 1 1 + 0 0 + } + vtx { + -0.75 0 0.75 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.625 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.625 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.75 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.75 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.5 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.5 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.625 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.625 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + free_ee_off free_ee -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_ee_on free_ee -1 -1 -1 + no_move + no_light + sound free_letter.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + free_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object left_shoot { + -19.7053 0 28.9158 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + -1 -1 -2 + 1 1 1 1 + 0.875 0.5 + } + vtx { + 1 -1 -2 + 1 1 1 1 + 1 0.5 + } + vtx { + 1 -1 0 + 1 1 1 1 + 1 0.625 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0.875 0.625 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + -1 -1 -2 + 1 1 1 1 + 0.875 0.625 + } + vtx { + 1 -1 -2 + 1 1 1 1 + 1 0.625 + } + vtx { + 1 -1 0 + 1 1 1 1 + 1 0.75 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0.875 0.75 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + null null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_all null 2 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 50 + no_move + light + sound shoot.ogg + no_music + user_property 2048 + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object right_shoot { + 16.5 0 29 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + -1 -1 -2 + 1 1 1 1 + 0.875 0.5 + } + vtx { + 1 -1 -2 + 1 1 1 1 + 1 0.5 + } + vtx { + 1 -1 0 + 1 1 1 1 + 1 0.625 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0.875 0.625 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + -1 -1 -2 + 1 1 1 1 + 0.875 0.625 + } + vtx { + 1 -1 -2 + 1 1 1 1 + 1 0.625 + } + vtx { + 1 -1 0 + 1 1 1 1 + 1 0.75 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0.875 0.75 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + null null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gnu_all null 2 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 50 + no_move + light + sound shoot.ogg + no_music + user_property 2048 + no_shape_property + no_texcoord + shape 8 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + transform_once + group_1 + } +} +object floor_mid_copy_c { + -18.7293 0 -1.65972 + 0 -0.145889 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + copy_c_off copy_c -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copy_c_on copy_c -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_mid_copy_o { + -17.1573 0 -3.64133 + 0 -0.14476 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + copy_o_off copy_o -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copy_o_on copy_o -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_mid_copy_p { + -15.5533 0 -5.66669 + 0 -0.142745 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + copy_p_off copy_p -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copy_p_on copy_p -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_mid_copy_y { + -13.9503 0 -7.66076 + 0 -0.143777 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.5 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.375 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.5 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.375 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + copy_y_off copy_y -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copy_y_on copy_y -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_mid_left_l { + 6.73184 0 0.983932 + 0 0.145595 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.625 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.5 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.625 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.5 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + left_l_off left_l -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + left_l_on left_l -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_mid_left_e { + 8.32684 0 2.99359 + 0 0.147065 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.75 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.625 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.75 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.625 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + left_e_off left_e -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + left_e_on left_e -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_mid_left_f { + 9.73238 0 4.91069 + 0 0.146005 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.875 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.875 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + left_f_off left_f -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + left_f_on left_f -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_mid_left_t { + 11.3052 0 6.92715 + 0 0.147116 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.875 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 1 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 1 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.875 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.875 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 1 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 1 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.875 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + left_t_off left_t -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + left_t_on left_t -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + copyleft_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object knockdown_above_left_t { + 13.0623 0 5.6219 + 0 0.15037 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_left_t 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_left_t_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_left_t { + 13.0623 -2 5.6219 + 0 0.15037 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_left_t 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_left_t_going_up knockup_left_t -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_left_f { + 11.6018 0 3.45812 + 0 0.146 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_left_f 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_left_f_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_left_f { + 11.6018 -2 3.45812 + 0 0.146 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_left_f 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_left_f_going_up knockup_left_f -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_left_e { + 10.2129 0 1.56923 + 0 0.146 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_left_e 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_left_e_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_left_e { + 10.2129 -2 1.56923 + 0 0.146 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_left_e 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_left_e_going_up knockup_left_e -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_left_l { + 8.60176 0 -0.486326 + 0 0.146 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_left_l 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_left_l_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_left_l { + 8.60176 -2 -0.486326 + 0 0.146 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_left_l 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_left_l_going_up knockup_left_l -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_copy_c { + -20.7469 0 -3.12043 + 0 -0.149172 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_copy_c 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_copy_c_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_copy_c { + -20.7469 -2 -3.12043 + 0 -0.149172 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_copy_c 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_copy_c_going_up knockup_copy_c -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + sound reset_knockdowns.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_copy_o { + -19.1038 0 -5.18077 + 0 -0.139 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_copy_o 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_copy_o_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_copy_o { + -19.1038 -2 -5.18077 + 0 -0.139 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_copy_o 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_copy_o_going_up knockup_copy_o -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_copy_p { + -17.4244 0 -7.31312 + 0 -0.143412 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_copy_p 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_copy_p_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_copy_p { + -17.4244 -2 -7.31312 + 0 -0.143412 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_copy_p 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_copy_p_going_up knockup_copy_p -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_copy_y { + -15.9538 0 -9.19267 + 0 -0.144952 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockdown_copy_y 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_copy_y_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_copy_y { + -15.9538 -2 -9.19267 + 0 -0.144952 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_copyleft_reset knockup_copy_y 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_copy_y_going_up knockup_copy_y -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object floor_right_arrow_1 { + 19.7222 0 26 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.26588 -1 -3.16975 + 1 1 1 1 + 0.75 0.75 + } + vtx { + 1.26588 -1 -3.16975 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 1 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 1 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + arrow_1_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_1_blink null -1 2 5 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 5 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_1_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_right_arrow_2 { + 19.7222 0 20.4 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.26588 -1 -3.16975 + 1 1 1 1 + 0.75 0.75 + } + vtx { + 1.26588 -1 -3.16975 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 1 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 1 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + arrow_2_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_2_blink null -1 2 5 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 5 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_2_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_right_arrow_3 { + 19.8222 0 14.7 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.26588 -1 -3.16975 + 1 1 1 1 + 0.75 0.75 + } + vtx { + 1.26588 -1 -3.16975 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 1 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 1 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + arrow_3_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_3_blink null -1 2 5 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 5 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_3_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_right_arrow_4 { + 19.8222 0 9.3 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.26588 -1 -3.16975 + 1 1 1 1 + 0.75 0.75 + } + vtx { + 1.26588 -1 -3.16975 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 1 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 1 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + arrow_4_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_4_blink null -1 2 5 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 5 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_4_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_right_arrow_5 { + 19.8222 0 3.7 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.26588 -1 -3.16975 + 1 1 1 1 + 0.75 0.75 + } + vtx { + 1.26588 -1 -3.16975 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 1 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 1 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + arrow_5_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_5_blink null -1 2 5 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 5 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_5_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_right_arrow_6 { + 19.8222 0 -1.8 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1.26588 -1 -3.16975 + 1 1 1 1 + 0.75 0.75 + } + vtx { + 1.26588 -1 -3.16975 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 1 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 1 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + arrow_6_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_6_blink null -1 2 5 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 5 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + arrow_6_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_bottom_0123_0 { + 3.10833 0 26.2 + 0 0.053 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.125 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.125 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + 0123_0_off 0123_0 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_0_on 0123_0 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_0_announce null -1 -1 -1 + no_move + no_light + sound freedom0.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_bottom_0123_1 { + 4.63333 0 21.775 + 0 0.052125 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.125 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.25 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.25 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.125 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + 0123_1_off 0123_1 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_1_on 0123_1 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_1_announce null -1 -1 -1 + no_move + no_light + sound freedom1.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_bottom_0123_2 { + 6.35833 0 17.475 + 0 0.05725 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.25 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.375 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.375 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.25 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + 0123_2_off 0123_2 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_2_on 0123_2 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_2_announce null -1 -1 -1 + no_move + no_light + sound freedom2.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_bottom_0123_3 { + 8.19583 0 13.075 + 0 0.061875 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.5 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.375 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.375 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.5 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.5 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.375 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + 0123_3_off 0123_3 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_3_on 0123_3 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + 0123_3_announce null -1 -1 -1 + no_move + no_light + sound freedom3.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_top_left_arrow_1 { + -14.6805 0 -36.9889 + 0 0.928111 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_1_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_1_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_1_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_1_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_left_arrow_2 { + -10.2512 0 -36.9548 + 0 1.08909 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_2_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_2_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_2_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_2_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_left_arrow_3 { + -8.24715 0 -32.9489 + 0 0.25355 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_3_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_3_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_3_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_3_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_left_arrow_4 { + -10.4752 0 -28.8237 + 0 0.430667 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_4_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_4_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_4_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_4_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_left_arrow_5 { + -15.1591 0 -29.1493 + 0 0.581648 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_5_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_5_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_5_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_5_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_left_arrow_6 { + -17.3767 0 -33.2493 + 0 0.754648 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_6_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_6_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_6_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_6_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_right_arrow_1 { + 11.4222 0 -16.2 + 0 0.00800003 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_7_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_7_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_7_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_7_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_right_arrow_2 { + 7.67003 0 -14.0565 + 0 0.849 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_8_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_8_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_8_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_8_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_right_arrow_3 { + 6.80046 0 -9.7 + 0 0.687 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_9_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_9_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_9_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_9_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_right_arrow_4 { + 10.4352 0 -6.74783 + 0 0.528043 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_10_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_10_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_10_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_10_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_right_arrow_5 { + 14.5222 0 -8.3 + 0 0.360435 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_11_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_11_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_11_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_11_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object floor_top_right_arrow_6 { + 15.3222 0 -13.4 + 0 0.182435 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -3.2 -1 -3.2 + 1 1 1 1 + 0 0.25 + } + vtx { + 3.2 -1 -3.2 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 3.2 -1 3.2 + 1 1 1 1 + 0.375 0.5 + } + vtx { + -3.2 -1 3.2 + 1 1 1 1 + 0 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + lock_arrow_12_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_12_blink null -1 2 50 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 1 50 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock_arrow_12_on null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + lock_arrow_12_crazyblink null -1 5 15 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + transform_once + group_1 + } +} +object light001 { + -2.0429 0 -24.9757 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 1.05 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1.05 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_001_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_001_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_001_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_001_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light002 { + 3.5571 0 -18.2757 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 1.05 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1.05 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_002_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_002_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_002_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_002_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light003 { + 7.6571 0 -26.7757 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 1.05 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1.05 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_003_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_003_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_003_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_003_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light004 { + -8.50123 0 30.0243 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 1.05 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1.05 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_004_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_004_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_004_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_004_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light005 { + 5.49877 0 30.0243 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 1.05 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1.05 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_005_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_005_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_005_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_005_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light006 { + -1.90123 0 11.9243 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_006_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_006_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_006_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_006_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light007 { + 19.4238 0 35.6576 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_007_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_007_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_007_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_007_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light008 { + -13.3762 0 21.4576 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_008_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_008_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_008_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_008_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light009 { + 10.6238 0 20.8576 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_009_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_009_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_009_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_009_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light010 { + -12.3853 0 -41.3515 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_010_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_010_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_010_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_010_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light011 { + 14.9066 0 8.50796 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_011_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_011_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_011_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_011_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light012 { + -19.7267 0 8.00796 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_012_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_012_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_012_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_012_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light013 { + -18.2934 0 -11.092 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_013_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_013_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_013_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_013_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object light014 { + 14.5066 0 1.54129 + 0 0.0570588 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + vtx { + -0.027494 -0.1 0.420718 + 1 1 0 0 + 0 0 + } + vtx { + -0.016324 -0.1 0.412476 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + } + state_behavior { + state_item { + light_011_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_014_on null -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_014_blink null -1 3 200 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 2 200 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + light_014_crazyblink null -1 5 15 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + no_shape + } + state_item { + null null -1 4 15 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + group_1 + } +} +object lock1 { + -12.8 0 -33 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.17167 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.17167 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + releaselock null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + sensitize_lock1 lock1 2 -1 -1 + no_move + light + no_sound + no_music + user_property 1 + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 -1 -1 + no_move + no_light + sound lock.ogg + no_music + user_property 1 + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + transform_once + group_1 + } +} +object lock2 { + 11.3667 0 -11.4833 + 0 0 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 1 0 + 1 1 1 1 + 0 0 + } + vtx { + 1 -1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1 -1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + releaselock null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + lock1 lock2 2 -1 -1 + no_move + light + no_sound + no_music + user_property 1 + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 -1 -1 + no_move + no_light + sound lock.ogg + no_music + user_property 1 + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + transform_once + group_1 + } +} +object bottom_stopper { + -1.6826 0 37.5956 + 0 -2.00395 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + vtx { + -1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.5 1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + state_behavior { + state_item { + null bottom_stopper_breached 1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 0 50 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + transform_once + wall_one_way + group_1 + } +} +object side_stopper { + 17.8424 0 10.4956 + 0 -2.24553 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + vtx { + -2.67757 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 2.67757 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + 2.67757 1 0 + 1 1 1 1 + 0 0 + } + vtx { + -2.67757 1 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + state_behavior { + state_item { + null side_stopper_breached 1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 0 50 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + transform_once + wall_one_way + group_1 + } +} +object left_lane_stopper { + -16.255 0 16.6301 + 0 -2.00095 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -1.5 0 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 0 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.5 0.5 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + state_behavior { + state_item { + null left_lane_stopper_breached 1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 0 50 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + transform_once + wall_one_way + group_1 + } +} +object right_lane_stopper { + 13.214 0 16.7335 + 0 -1.99981 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + hid { } + vtx { + -1.5 0 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 0 0 + 1 1 1 1 + 0 0 + } + vtx { + 1.5 0.5 0 + 1 1 1 1 + 0 0 + } + vtx { + -1.5 0.5 0 + 1 1 1 1 + 0 0 + } + ply { + pes { 4 } + ple { 3 } + ple { 2 } + ple { 1 } + ple { 0 } + } + } + state_behavior { + state_item { + null right_lane_stopper_breached 1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + null null -1 0 50 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + transform_once + wall_one_way + group_1 + } +} +object left_bumper_roof { + 0 0 0 + 0 0 0 + 1 1 1 + shape { + vts { 5 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -15 1 16.125 + 1 1 1 0 + 0 0.5 + } + vtx { + -14 1 16.12 + 1 1 1 0 + 0.03906 0.5 + } + vtx { + -10.45 1 23.9 + 1 1 1 0 + 0.24219 0.82812 + } + vtx { + -11 1 24.8 + 1 1 1 0 + 0.19922 0.87109 + } + vtx { + -15 1 22.8 + 1 1 1 0 + 0 0.78516 + } + ply { + pes { 5 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + ple { 4 } + } + } + properties { + group_1 + } +} +object right_bumper_roof { + -0.479337 0 0 + 0 0 0 + 1 1 1 + shape { + vts { 5 } + pls { 1 } + tex { + tiles2.png + } + vtx { + 12.5 1 22.6 + 1 1 1 1 + 0.511719 0.78125 + } + vtx { + 8.36 1 24.75 + 1 1 1 1 + 0.3125 0.867188 + } + vtx { + 7.97 1 23.9 + 1 1 1 1 + 0.273438 0.828125 + } + vtx { + 11.5 1 16.1 + 1 1 1 1 + 0.472656 0.503906 + } + vtx { + 12.5 1 16.1 + 1 1 1 1 + 0.511787 0.503906 + } + ply { + pes { 5 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + ple { 4 } + } + } + properties { + group_1 + } +} +object floor_bottom_v123_1 { + -6.75374 0 26.2 + 0 -0.0456207 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.625 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.5 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.5 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.625 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.625 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.5 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + v123_1_off v123_1 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_1_on v123_1 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_1_announce null -1 -1 -1 + no_move + no_light + sound gplv1.ogg + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_bottom_v123_2 { + -8.33985 0 21.8918 + 0 -0.0506336 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.75 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.625 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.625 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.75 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.75 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.625 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + v123_2_off v123_2 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_2_on v123_2 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_2_announce null -1 -1 -1 + no_move + no_light + sound gplv2.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_bottom_v123_3 { + -10.0497 0 17.4693 + 0 -0.0520603 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.125 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.875 0.125 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 0.25 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.75 0 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.875 0 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.875 0.125 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.75 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + v123_3_off v123_3 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_3_on 0123_2 -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_3_announce null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_bottom_v123_freeball { + -12.1497 0 12.7026 + 0 -0.0520603 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -2 -1 -2 + 1 1 1 1 + 0.777344 0.6875 + } + vtx { + 2 -1 -2 + 1 1 1 1 + 0.980469 0.6875 + } + vtx { + 2 -1 2 + 1 1 1 1 + 0.980469 0.886719 + } + vtx { + -2 -1 2 + 1 1 1 1 + 0.777344 0.886719 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -2 -1 -2 + 1 1 1 1 + 0.765625 0.457031 + } + vtx { + 2 -1 -2 + 1 1 1 1 + 0.972656 0.457031 + } + vtx { + 2 -1 2 + 1 1 1 1 + 0.972656 0.664062 + } + vtx { + -2 -1 2 + 1 1 1 1 + 0.765625 0.664062 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + v123_freeball_off v123_freeball -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_freeball_on 0123_freeball -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + v123_freeball_announce null -1 -1 -1 + no_move + no_light + sound freeball.ogg + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_top_gpl_g { + 10.4207 0 -30.3597 + 0 0.115611 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.5 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.375 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.375 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.5 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.375 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + gpl_g_off gpl_g -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gpl_g_on gpl_g -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gpl_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_top_gpl_p { + 12.4427 0 -28.5413 + 0 0.11324 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.625 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.5 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.5 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.625 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.5 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + gpl_p_off gpl_p -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gpl_p_on gpl_p -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gpl_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object floor_top_gpl_l { + 14.4967 0 -26.8167 + 0 0.112755 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.375 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.375 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.75 0.5 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.625 0.5 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles2.png + } + vtx { + -1.25 -1 -1.25 + 1 1 1 1 + 0.625 0.25 + } + vtx { + 1.25 -1 -1.25 + 1 1 1 1 + 0.75 0.25 + } + vtx { + 1.25 -1 1.25 + 1 1 1 1 + 0.75 0.375 + } + vtx { + -1.25 -1 1.25 + 1 1 1 1 + 0.625 0.375 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + gpl_l_off gpl_l -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gpl_l_on gpl_l -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + gpl_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + } + properties { + transform_once + group_1 + } +} +object knockdown_above_gpl_g { + 12.142 0 -32.2871 + 0 0.119717 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_gpl_reset knockdown_gpl_g 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_gpl_g_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_gpl_g { + 12.142 -2 -32.2871 + 0 0.119717 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_gpl_reset knockup_gpl_g 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_gpl_g_going_up knockup_gpl_g -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_gpl_p { + 14.174 0 -30.5141 + 0 0.111 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_gpl_reset knockdown_gpl_p 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_gpl_p_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_gpl_p { + 14.174 -2 -30.5141 + 0 0.111 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_gpl_reset knockup_gpl_p 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_gpl_p_going_up knockup_gpl_p -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + sound reset_knockdowns.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_above_gpl_l { + 16.0756 0 -28.8131 + 0 0.10881 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_gpl_reset knockdown_gpl_l 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockdown_gpl_l_going_down null -1 -1 -1 + move + 20 + 0 -2 0 + 0 0 0 + light + sound knockdown.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + light { + 1 1 1 + 0 3 0 + } + } + properties { + collision + wall + group_1 + } +} +object knockdown_below_gpl_l { + 16.0756 -2 -28.8131 + 0 0.10881 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -1 1 1 + 1 1 1 1 + 0.875 0.875 + } + vtx { + 1 1 1 + 1 1 1 1 + 1 0.875 + } + vtx { + 1 -1 1 + 1 1 1 1 + 1 1 + } + vtx { + -1 -1 1 + 1 1 1 1 + 0.875 1 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 8 } + pls { 6 } + vtx { + 1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 0.5 + 1 1 0 0 + 0 0 + } + vtx { + 1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 1 1 + 1 1 0 0 + 0 0 + } + vtx { + 1 -1 1 + 1 1 0 0 + 0 0 + } + vtx { + -1 -1 1 + 1 1 0 0 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 3 } + ple { 2 } + } + ply { + pes { 4 } + ple { 4 } + ple { 0 } + ple { 2 } + ple { 6 } + } + ply { + pes { 4 } + ple { 5 } + ple { 4 } + ple { 6 } + ple { 7 } + } + ply { + pes { 4 } + ple { 1 } + ple { 5 } + ple { 7 } + ple { 3 } + } + ply { + pes { 4 } + ple { 0 } + ple { 4 } + ple { 5 } + ple { 1 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 7 } + ple { 6 } + } + } + state_behavior { + state_item { + knockdown_gpl_reset knockup_gpl_l 1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + knockup_gpl_l_going_up knockup_gpl_l -1 -1 -1 + move + 20 + 0 2 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} +object freeball_target { + 12.5059 0 -1.16222 + 0 0.146845 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + 8.2 1 4.1 + 0 0.5 0 0 + 0.875 0.75 + } + vtx { + 10.2 1 4.1 + 0 0.5 0 0 + 1 0.75 + } + vtx { + 10.2 -1 4.1 + 0 0.5 0 0 + 1 0.875 + } + vtx { + 8.2 -1 4.1 + 0 0.5 0 0 + 0.875 0.875 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + 8.2 1 4.1 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 10.2 1 4.1 + 1 1 1 1 + 1 0.75 + } + vtx { + 10.2 -1 4.1 + 1 1 1 1 + 1 0.875 + } + vtx { + 8.2 -1 4.1 + 1 1 1 1 + 0.875 0.875 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + freeball_target_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + freeball_target_on freeball_target 0 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + light { + 0 0 1 + 0 3 0 + } + } + properties { + collision + group_1 + } +} +object freedom_target { + -21.7941 0 -44.4575 + 0 -0.015155 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + 8.2 1 4.1 + 0 0.5 0 0 + 0.875 0.75 + } + vtx { + 10.2 1 4.1 + 0 0.5 0 0 + 1 0.75 + } + vtx { + 10.2 -1 4.1 + 0 0.5 0 0 + 1 0.875 + } + vtx { + 8.2 -1 4.1 + 0 0.5 0 0 + 0.875 0.875 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + lit { } + tex { + tiles.png + } + vtx { + 8.2 1 4.1 + 1 1 1 1 + 0.875 0.75 + } + vtx { + 10.2 1 4.1 + 1 1 1 1 + 1 0.75 + } + vtx { + 10.2 -1 4.1 + 1 1 1 1 + 1 0.875 + } + vtx { + 8.2 -1 4.1 + 1 1 1 1 + 0.875 0.875 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + freedom_target_off null -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + freedom_target_on freedom_target 0 -1 -1 + no_move + light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + light { + 0 0 1 + 0 3 0 + } + } + properties { + collision + group_1 + } +} +object floor_bottom_freedom { + -3.02489 0 34.0275 + 0 0.000373566 0 + 1 1 1 + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -0.75 -1 -0.75 + 1 1 1 1 + 0.75 0.125 + } + vtx { + 3.96543 -1 -0.735961 + 1 1 1 1 + 1 0.125 + } + vtx { + 3.94586 -1 1.44734 + 1 1 1 1 + 1 0.25 + } + vtx { + -0.746298 -1 1.47495 + 1 1 1 1 + 0.75 0.25 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + shape { + vts { 4 } + pls { 1 } + tex { + tiles.png + } + vtx { + -0.75 -1 -0.75 + 1 1 1 1 + 0.75 0.001 + } + vtx { + 3.99975 -1 -0.749567 + 1 1 1 1 + 1 0.001 + } + vtx { + 3.99093 -1 1.45747 + 1 1 1 1 + 1 0.125 + } + vtx { + -0.748345 -1 1.45832 + 1 1 1 1 + 0.75 0.125 + } + ply { + pes { 4 } + tpt { } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + } + } + state_behavior { + state_item { + freedom_off freedom -1 -1 -1 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + freedom_on freedom -1 -1 -1 + no_move + light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + freedom_all null -1 3 35 + no_move + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + shape 8 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + } + state_item { + null null -1 0 35 + no_move + no_light + no_sound + no_music + no_user_property + shape_property 64 + no_texcoord + shape 8 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + } + light { + 1 1 0 + 0 3 0 + } + } + properties { + transform_once + group_1 + } +} +object module { + 0 0 0 + 0 0 0 + 1 1 1 + module { + libModuleGnu.la + } + properties { + group_1 + } +} +object freedom_stopper { + 0.111111 -3.1 -1.38889 + 0 0 0 + 1 1 1 + shape { + vts { 64 } + pls { 33 } + vtx { + -1.58333 2 34.6606 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.30143 2 34.6345 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.03036 2 34.5574 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.780532 2 34.4322 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.561562 2 34.2637 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.381862 2 34.0584 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.248327 2 33.8241 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.166101 2 33.5699 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.138334 2 33.3056 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.166101 2 33.0412 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.248327 2 32.787 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.381862 2 32.5528 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.561562 2 32.3474 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.780532 2 32.1789 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.03036 2 32.0537 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.30143 2 31.9766 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.58333 2 31.9506 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.86524 2 31.9766 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.13631 2 32.0537 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.38614 2 32.1789 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.6051 2 32.3474 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.7848 2 32.5528 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.91834 2 32.787 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.00057 2 33.0412 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.02833 2 33.3056 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.00057 2 33.5699 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.91834 2 33.8241 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.7848 2 34.0584 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.6051 2 34.2637 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.38614 2 34.4322 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.13631 2 34.5574 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.86524 2 34.6345 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.58333 0 34.6606 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.30143 0 34.6345 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.03036 0 34.5574 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.780532 0 34.4322 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.561562 0 34.2637 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.381862 0 34.0584 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.248327 0 33.8241 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.166101 0 33.5699 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.138334 0 33.3056 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.166101 0 33.0412 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.248327 0 32.787 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.381862 0 32.5528 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.561562 0 32.3474 + 0 0.6 0 1 + 0 0 + } + vtx { + -0.780532 0 32.1789 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.03036 0 32.0537 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.30143 0 31.9766 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.58333 0 31.9506 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.86524 0 31.9766 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.13631 0 32.0537 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.38614 0 32.1789 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.6051 0 32.3474 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.7848 0 32.5528 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.91834 0 32.787 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.00057 0 33.0412 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.02833 0 33.3056 + 0 0.6 0 1 + 0 0 + } + vtx { + -3.00057 0 33.5699 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.91834 0 33.8241 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.7848 0 34.0584 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.6051 0 34.2637 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.38614 0 34.4322 + 0 0.6 0 1 + 0 0 + } + vtx { + -2.13631 0 34.5574 + 0 0.6 0 1 + 0 0 + } + vtx { + -1.86524 0 34.6345 + 0 0.6 0 1 + 0 0 + } + ply { + pes { 4 } + ple { 0 } + ple { 1 } + ple { 33 } + ple { 32 } + } + ply { + pes { 4 } + ple { 1 } + ple { 2 } + ple { 34 } + ple { 33 } + } + ply { + pes { 4 } + ple { 2 } + ple { 3 } + ple { 35 } + ple { 34 } + } + ply { + pes { 4 } + ple { 3 } + ple { 4 } + ple { 36 } + ple { 35 } + } + ply { + pes { 4 } + ple { 4 } + ple { 5 } + ple { 37 } + ple { 36 } + } + ply { + pes { 4 } + ple { 5 } + ple { 6 } + ple { 38 } + ple { 37 } + } + ply { + pes { 4 } + ple { 6 } + ple { 7 } + ple { 39 } + ple { 38 } + } + ply { + pes { 4 } + ple { 7 } + ple { 8 } + ple { 40 } + ple { 39 } + } + ply { + pes { 4 } + ple { 8 } + ple { 9 } + ple { 41 } + ple { 40 } + } + ply { + pes { 4 } + ple { 9 } + ple { 10 } + ple { 42 } + ple { 41 } + } + ply { + pes { 4 } + ple { 10 } + ple { 11 } + ple { 43 } + ple { 42 } + } + ply { + pes { 4 } + ple { 11 } + ple { 12 } + ple { 44 } + ple { 43 } + } + ply { + pes { 4 } + ple { 12 } + ple { 13 } + ple { 45 } + ple { 44 } + } + ply { + pes { 4 } + ple { 13 } + ple { 14 } + ple { 46 } + ple { 45 } + } + ply { + pes { 4 } + ple { 14 } + ple { 15 } + ple { 47 } + ple { 46 } + } + ply { + pes { 4 } + ple { 15 } + ple { 16 } + ple { 48 } + ple { 47 } + } + ply { + pes { 4 } + ple { 16 } + ple { 17 } + ple { 49 } + ple { 48 } + } + ply { + pes { 4 } + ple { 17 } + ple { 18 } + ple { 50 } + ple { 49 } + } + ply { + pes { 4 } + ple { 18 } + ple { 19 } + ple { 51 } + ple { 50 } + } + ply { + pes { 4 } + ple { 19 } + ple { 20 } + ple { 52 } + ple { 51 } + } + ply { + pes { 4 } + ple { 20 } + ple { 21 } + ple { 53 } + ple { 52 } + } + ply { + pes { 4 } + ple { 21 } + ple { 22 } + ple { 54 } + ple { 53 } + } + ply { + pes { 4 } + ple { 22 } + ple { 23 } + ple { 55 } + ple { 54 } + } + ply { + pes { 4 } + ple { 23 } + ple { 24 } + ple { 56 } + ple { 55 } + } + ply { + pes { 4 } + ple { 24 } + ple { 25 } + ple { 57 } + ple { 56 } + } + ply { + pes { 4 } + ple { 25 } + ple { 26 } + ple { 58 } + ple { 57 } + } + ply { + pes { 4 } + ple { 26 } + ple { 27 } + ple { 59 } + ple { 58 } + } + ply { + pes { 4 } + ple { 27 } + ple { 28 } + ple { 60 } + ple { 59 } + } + ply { + pes { 4 } + ple { 28 } + ple { 29 } + ple { 61 } + ple { 60 } + } + ply { + pes { 4 } + ple { 29 } + ple { 30 } + ple { 62 } + ple { 61 } + } + ply { + pes { 4 } + ple { 30 } + ple { 31 } + ple { 63 } + ple { 62 } + } + ply { + pes { 4 } + ple { 31 } + ple { 0 } + ple { 32 } + ple { 63 } + } + ply { + pes { 32 } + ple { 32 } + ple { 33 } + ple { 34 } + ple { 35 } + ple { 36 } + ple { 37 } + ple { 38 } + ple { 39 } + ple { 40 } + ple { 41 } + ple { 42 } + ple { 43 } + ple { 44 } + ple { 45 } + ple { 46 } + ple { 47 } + ple { 48 } + ple { 49 } + ple { 50 } + ple { 51 } + ple { 52 } + ple { 53 } + ple { 54 } + ple { 55 } + ple { 56 } + ple { 57 } + ple { 58 } + ple { 59 } + ple { 60 } + ple { 61 } + ple { 62 } + ple { 63 } + } + } + shape { + vts { 32 } + pls { 1 } + vtx { + -1.86524 2 34.6345 + 0 1 0 1 + 0 0 + } + vtx { + -2.13631 2 34.5574 + 0 1 0 1 + 0 0 + } + vtx { + -2.38614 2 34.4322 + 0 1 0 1 + 0 0 + } + vtx { + -2.6051 2 34.2637 + 0 1 0 1 + 0 0 + } + vtx { + -2.7848 2 34.0584 + 0 1 0 1 + 0 0 + } + vtx { + -2.91834 2 33.8241 + 0 1 0 1 + 0 0 + } + vtx { + -3.00057 2 33.5699 + 0 1 0 1 + 0 0 + } + vtx { + -3.02833 2 33.3056 + 0 1 0 1 + 0 0 + } + vtx { + -3.00057 2 33.0412 + 0 1 0 1 + 0 0 + } + vtx { + -2.91834 2 32.787 + 0 1 0 1 + 0 0 + } + vtx { + -2.7848 2 32.5528 + 0 1 0 1 + 0 0 + } + vtx { + -2.6051 2 32.3474 + 0 1 0 1 + 0 0 + } + vtx { + -2.38614 2 32.1789 + 0 1 0 1 + 0 0 + } + vtx { + -2.13631 2 32.0537 + 0 1 0 1 + 0 0 + } + vtx { + -1.86524 2 31.9766 + 0 1 0 1 + 0 0 + } + vtx { + -1.58333 2 31.9506 + 0 1 0 1 + 0 0 + } + vtx { + -1.30143 2 31.9766 + 0 1 0 1 + 0 0 + } + vtx { + -1.03036 2 32.0537 + 0 1 0 1 + 0 0 + } + vtx { + -0.780532 2 32.1789 + 0 1 0 1 + 0 0 + } + vtx { + -0.561562 2 32.3474 + 0 1 0 1 + 0 0 + } + vtx { + -0.381862 2 32.5528 + 0 1 0 1 + 0 0 + } + vtx { + -0.248327 2 32.787 + 0 1 0 1 + 0 0 + } + vtx { + -0.166101 2 33.0412 + 0 1 0 1 + 0 0 + } + vtx { + -0.138334 2 33.3056 + 0 1 0 1 + 0 0 + } + vtx { + -0.166101 2 33.5699 + 0 1 0 1 + 0 0 + } + vtx { + -0.248327 2 33.8241 + 0 1 0 1 + 0 0 + } + vtx { + -0.381862 2 34.0584 + 0 1 0 1 + 0 0 + } + vtx { + -0.561562 2 34.2637 + 0 1 0 1 + 0 0 + } + vtx { + -0.780532 2 34.4322 + 0 1 0 1 + 0 0 + } + vtx { + -1.03036 2 34.5574 + 0 1 0 1 + 0 0 + } + vtx { + -1.30143 2 34.6345 + 0 1 0 1 + 0 0 + } + vtx { + -1.58333 2 34.6606 + 0 1 0 1 + 0 0 + } + ply { + pes { 32 } + ple { 0 } + ple { 1 } + ple { 2 } + ple { 3 } + ple { 4 } + ple { 5 } + ple { 6 } + ple { 7 } + ple { 8 } + ple { 9 } + ple { 10 } + ple { 11 } + ple { 12 } + ple { 13 } + ple { 14 } + ple { 15 } + ple { 16 } + ple { 17 } + ple { 18 } + ple { 19 } + ple { 20 } + ple { 21 } + ple { 22 } + ple { 23 } + ple { 24 } + ple { 25 } + ple { 26 } + ple { 27 } + ple { 28 } + ple { 29 } + ple { 30 } + ple { 31 } + } + } + state_behavior { + state_item { + freedom_stopper_reset null -1 -1 -1 + move + 0 + 0 0 0 + 0 0 0 + no_light + no_sound + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + state_item { + raise_freedom_stopper freedom_stopper -1 -1 -1 + move + 400 + 0 3 0 + 0 0 0 + no_light + sound raise-stopper.ogg + no_music + no_user_property + no_shape_property + no_texcoord + no_shape + } + } + properties { + collision + wall + group_1 + } +} diff --git a/data/gnu/plunger.wav b/data/gnu/plunger.wav new file mode 100644 index 00000000..0bb8d7d2 Binary files /dev/null and b/data/gnu/plunger.wav differ diff --git a/data/gnu/raise-stopper.ogg b/data/gnu/raise-stopper.ogg new file mode 100644 index 00000000..f8202da7 Binary files /dev/null and b/data/gnu/raise-stopper.ogg differ diff --git a/data/gnu/reset_knockdowns.ogg b/data/gnu/reset_knockdowns.ogg new file mode 100644 index 00000000..6157f9a6 Binary files /dev/null and b/data/gnu/reset_knockdowns.ogg differ diff --git a/data/gnu/shoot.ogg b/data/gnu/shoot.ogg new file mode 100644 index 00000000..397500f4 Binary files /dev/null and b/data/gnu/shoot.ogg differ diff --git a/data/gnu/tiles.png b/data/gnu/tiles.png new file mode 100755 index 00000000..c0878d7b Binary files /dev/null and b/data/gnu/tiles.png differ diff --git a/data/gnu/tiles2.png b/data/gnu/tiles2.png new file mode 100644 index 00000000..97103f6a Binary files /dev/null and b/data/gnu/tiles2.png differ diff --git a/data/gnu/tiles3.png b/data/gnu/tiles3.png new file mode 100644 index 00000000..1c7467e7 Binary files /dev/null and b/data/gnu/tiles3.png differ diff --git a/debian/changelog b/debian/changelog index 0e9cd17c..4cd90c6b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pinball (0.0.20130227rzr1-0~rzr1) quantal; urgency=low + + * Imported gnu table : http://pastefile.com/uploads/gnu.tar.gz + + -- Philippe Coval Wed, 27 Feb 2013 22:35:08 +0100 + pinball (0.0.20110404rzr2-0ubuntu0~rzr1) maverick; urgency=low * WIP: http://rzr.online.fr/q/snapshot#pinball diff --git a/debian/control b/debian/control index df41b266..37e1c8ed 100644 --- a/debian/control +++ b/debian/control @@ -30,21 +30,17 @@ Description: Data files for the Emilia Pinball Emulator . This package contains various data files used by the pinball emulator. -Package: pinball-snapshot + +Package: pinball-data-extra Architecture: all Section: sound -Depends: pinball (= ${source:Version}) -Suggests: rzr -Priority: extra -Description: unreleased snapshot version - TODO: Remove on issue and upgrade pinball - http://rzr.online.fr/q/snapshot#pinball Feedback welcome +Depends: pinball-snapshot (= ${source:Version}) -Package: pinball-data-extra +Package: pinball-snapshot Architecture: all Section: sound -Depends: pinball-snapshot (= ${source:Version}) +Depends: pinball (= ${source:Version}), ${misc:Depends} Suggests: rzr Priority: extra Description: unreleased snapshot version