Skip to content

Commit 0306118

Browse files
committed
Moved badguy sprites from .csv to badguys.py
1 parent 775de6a commit 0306118

File tree

2 files changed

+77
-53
lines changed

2 files changed

+77
-53
lines changed

data/supertux/objects.csv

Lines changed: 0 additions & 53 deletions
This file was deleted.

supertux/badguys.py

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Flexlay - A Generic 2D Game Editor
2+
# Copyright (C) 2014 Ingo Ruhnke <[email protected]>
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+
17+
18+
badguy_sprites = [
19+
["pneumatic-platform", "images/engine/editor/pneumaticplatform.png"],
20+
["bicycle-platform", "images/engine/editor/bicycleplatform.png"],
21+
["flying-platform", "images/objects/flying_platform/flying_platform.sprite"],
22+
["hurting_platform", "images/objects/sawblade/sawblade.sprite"],
23+
["angrystone", "images/creatures/angrystone/angrystone.sprite"],
24+
["bouncingsnowball", "images/creatures/bouncing_snowball/left-0.png"],
25+
["captainsnowball", "images/creatures/snowball/cpt-left-0.png"],
26+
["climbable", "images/engine/editor/climbable.png"],
27+
["crystallo", "images/creatures/crystallo/crystallo.sprite"],
28+
["fish", "images/creatures/fish/left-0.png"],
29+
["flame", "images/creatures/flame/flame-0.png"],
30+
["flyingsnowball", "images/creatures/flying_snowball/left-0.png"],
31+
["ghosttree", "images/creatures/flame/ghostflame.sprite"],
32+
["goldbomb", "images/creatures/gold_bomb/gold_bomb.sprite"],
33+
["haywire", "images/creatures/haywire/haywire.sprite"],
34+
["icecrusher", "images/creatures/icecrusher/icecrusher.sprite"],
35+
["iceflame", "images/creatures/flame/iceflame.sprite"],
36+
["igel", "images/creatures/igel/igel.sprite"],
37+
["ispy", "images/objects/ispy/ispy.sprite"],
38+
["jumpy", "images/creatures/snowjumpy/left-middle.png"],
39+
["kugelblitz", "images/creatures/kugelblitz/flying-0.png"],
40+
["lantern", "images/objects/lantern/lantern.sprite"],
41+
["livefire", "images/creatures/livefire/livefire.sprite"],
42+
["livefire_asleep", "images/creatures/livefire/livefire.sprite"],
43+
["livefire_dormant", "images/creatures/livefire/livefire.sprite"],
44+
["magicblock", "images/objects/magicblock/magicblock.sprite"],
45+
["mole", "images/creatures/mole/mole.sprite"],
46+
["mrbomb", "images/creatures/mr_bomb/left.png"],
47+
["mriceblock", "images/creatures/mr_iceblock/left-0.png"],
48+
["mrtree", "images/creatures/mr_tree/walk-left-1.png"],
49+
["owl", "images/creatures/owl/owl.sprite"],
50+
["particles-ghosts", "images/engine/editor/ghostparticles.png"],
51+
["poisonivy", "images/creatures/poison_ivy/left-0.png"],
52+
["rustytrampoline", "images/objects/rusty-trampoline/rusty-trampoline.sprite"],
53+
["short_fuse", "images/creatures/short_fuse/short_fuse.sprite"],
54+
["skullyhop", "images/creatures/skullyhop/skullyhop.sprite"],
55+
["smartball", "images/creatures/snowball/left-1.png"],
56+
["smartblock", "images/creatures/mr_iceblock/smart_block/smart_block.sprite"],
57+
["snail", "images/creatures/snail/snail.sprite"],
58+
["snowball", "images/creatures/snowball/sport-left-1.png"],
59+
["snowman", "images/creatures/snowman/snowman.sprite"],
60+
["spidermite", "images/creatures/spidermite/spidermite.sprite"],
61+
["spiky", "images/creatures/spiky/left-0.png"],
62+
["spotlight", "images/objects/spotlight/spotlight_center.sprite"],
63+
["sspiky", "images/creatures/spiky/sleeping-left.png"],
64+
["stalactite", "images/creatures/stalactite/falling.png"],
65+
["stalactite_yeti", "images/engine/editor/stalactite_yeti.png"],
66+
["stumpy", "images/creatures/mr_tree/stumpy.sprite"],
67+
["thunderstorm", "images/engine/editor/thunderstorm.png"],
68+
["toad", "images/creatures/toad/toad.sprite"],
69+
["totem", "images/creatures/totem/totem.sprite"],
70+
["walkingleaf", "images/creatures/walkingleaf/walkingleaf.sprite"],
71+
["walkingtree", "images/creatures/walkingleaf/walkingleaf.sprite"],
72+
["yeti", "images/creatures/yeti/yeti.png"],
73+
["yeti_stalactite", "images/engine/editor/stalactite_yeti.png"],
74+
["zeekling", "images/creatures/zeekling/left-0.png"],
75+
]
76+
77+
# EOF #

0 commit comments

Comments
 (0)