badguys.py 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Flexlay - A Generic 2D Game Editor
  2. # Copyright (C) 2014 Ingo Ruhnke <grumbel@gmail.com>
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. badguy_sprites = [
  17. ["pneumatic-platform", "images/engine/editor/pneumaticplatform.png"],
  18. ["bicycle-platform", "images/engine/editor/bicycleplatform.png"],
  19. ["flying-platform", "images/objects/flying_platform/flying_platform.sprite"],
  20. ["hurting_platform", "images/objects/sawblade/sawblade.sprite"],
  21. ["angrystone", "images/creatures/angrystone/angrystone.sprite"],
  22. ["bouncingsnowball", "images/creatures/bouncing_snowball/left-0.png"],
  23. ["captainsnowball", "images/creatures/snowball/cpt-left-0.png"],
  24. ["crystallo", "images/creatures/crystallo/crystallo.sprite"],
  25. ["fish", "images/creatures/fish/left-0.png"],
  26. ["flyingsnowball", "images/creatures/flying_snowball/left-0.png"],
  27. ["ghosttree", "images/creatures/flame/ghostflame.sprite"],
  28. ["goldbomb", "images/creatures/gold_bomb/gold_bomb.sprite"],
  29. ["haywire", "images/creatures/haywire/haywire.sprite"],
  30. ["icecrusher", "images/creatures/icecrusher/icecrusher.sprite"],
  31. ["iceflame", "images/creatures/flame/iceflame.sprite"],
  32. ["igel", "images/creatures/igel/igel.sprite"],
  33. ["ispy", "images/objects/ispy/ispy.sprite"],
  34. ["jumpy", "images/creatures/snowjumpy/left-middle.png"],
  35. ["kugelblitz", "images/creatures/kugelblitz/flying-0.png"],
  36. ["lantern", "images/objects/lantern/lantern.sprite"],
  37. ["livefire", "images/creatures/livefire/livefire.sprite"],
  38. ["livefire_asleep", "images/creatures/livefire/livefire.sprite"],
  39. ["livefire_dormant", "images/creatures/livefire/livefire.sprite"],
  40. ["magicblock", "images/objects/magicblock/magicblock.sprite"],
  41. ["mole", "images/creatures/mole/mole.sprite"],
  42. ["mrbomb", "images/creatures/mr_bomb/left.png"],
  43. ["mriceblock", "images/creatures/mr_iceblock/left-0.png"],
  44. ["mrtree", "images/creatures/mr_tree/walk-left-1.png"],
  45. ["owl", "images/creatures/owl/owl.sprite"],
  46. ["particles-ghosts", "images/engine/editor/ghostparticles.png"],
  47. ["poisonivy", "images/creatures/poison_ivy/left-0.png"],
  48. ["rustytrampoline", "images/objects/rusty-trampoline/rusty-trampoline.sprite"],
  49. ["short_fuse", "images/creatures/short_fuse/short_fuse.sprite"],
  50. ["skullyhop", "images/creatures/skullyhop/skullyhop.sprite"],
  51. ["smartball", "images/creatures/snowball/left-1.png"],
  52. ["smartblock", "images/creatures/mr_iceblock/smart_block/smart_block.sprite"],
  53. ["snail", "images/creatures/snail/snail.sprite"],
  54. ["snowball", "images/creatures/snowball/sport-left-1.png"],
  55. ["snowman", "images/creatures/snowman/snowman.sprite"],
  56. ["spidermite", "images/creatures/spidermite/spidermite.sprite"],
  57. ["spiky", "images/creatures/spiky/left-0.png"],
  58. ["spotlight", "images/objects/spotlight/spotlight_center.sprite"],
  59. ["sspiky", "images/creatures/spiky/sleeping-left.png"],
  60. ["stalactite", "images/creatures/stalactite/falling.png"],
  61. ["stalactite_yeti", "images/engine/editor/stalactite_yeti.png"],
  62. ["stumpy", "images/creatures/mr_tree/stumpy.sprite"],
  63. ["thunderstorm", "images/engine/editor/thunderstorm.png"],
  64. ["toad", "images/creatures/toad/toad.sprite"],
  65. ["totem", "images/creatures/totem/totem.sprite"],
  66. ["walkingleaf", "images/creatures/walkingleaf/walkingleaf.sprite"],
  67. ["walkingtree", "images/creatures/walkingleaf/walkingleaf.sprite"],
  68. ["yeti", "images/creatures/yeti/yeti.png"],
  69. ["yeti_stalactite", "images/engine/editor/stalactite_yeti.png"],
  70. ["zeekling", "images/creatures/zeekling/left-0.png"],
  71. ]
  72. # EOF #