--- /dev/null
+// $Id$
+//
+// SuperTux - Smart Snowball
+// Copyright (C) 2008 Wolfgang Becker <uafr@gmx.de>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#include <config.h>
+
+#include "smartball.hpp"
+
+SmartBall::SmartBall(const lisp::Lisp& reader)
+ : WalkingBadguy(reader, "images/creatures/snowball/smart-snowball.sprite", "left", "right")
+{
+ walk_speed = 80;
+ max_drop_height = 16;
+}
+
+SmartBall::SmartBall(const Vector& pos, Direction d)
+ : WalkingBadguy(pos, d, "images/creatures/snowball/smart-snowball.sprite", "left", "right")
+{
+ walk_speed = 80;
+ max_drop_height = 16;
+}
+
+bool
+SmartBall::collision_squished(GameObject& object)
+{
+ sprite->set_action(dir == LEFT ? "squished-left" : "squished-right");
+ kill_squished(object);
+ return true;
+}
+
+IMPLEMENT_FACTORY(SmartBall, "smartball")
--- /dev/null
+// $Id$
+//
+// SuperTux - Smart Snowball
+// Copyright (C) 2008 Wolfgang Becker <uafr@gmx.de>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef __SMARTBALL_H__
+#define __SMARTBALL_H__
+
+#include "walking_badguy.hpp"
+
+/*
+ * Easy to kill badguy that does not jump down from it's ledge.
+ */
+class SmartBall : public WalkingBadguy
+{
+public:
+ SmartBall(const lisp::Lisp& reader);
+ SmartBall(const Vector& pos, Direction d);
+
+ virtual SmartBall* clone() const { return new SmartBall(*this); }
+
+protected:
+ bool collision_squished(GameObject& object);
+
+};
+
+#endif