Skip to content

Commit 4572241

Browse files
committed
Testing out a different kind of character sprite, the green hooded skeleton
1 parent 5df9835 commit 4572241

File tree

4 files changed

+99
-45
lines changed

4 files changed

+99
-45
lines changed

res/drawable/0x72_DungeonTilesetII_v1_3

+4-1
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,7 @@ lizard_m_hit_anim 256 237 16 19 1
160160
# Added by r.c. - to represent the Zig iguana.
161161
ziggy_m_idle_anim 127 417 16 19 4
162162
ziggy_m_run_anim 191 417 16 19 4
163-
ziggy_m_hit_anim 255 414 16 19 1
163+
ziggy_m_hit_anim 255 414 16 19 1
164+
# Green hoodie skeleton
165+
green_skel_idle 370 396 18 25 4
166+
green_skel_run 370 424 18 25 4
1.72 KB
Loading

zsrc/game.zig

+3
Original file line numberDiff line numberDiff line change
@@ -752,6 +752,9 @@ fn initEnemies(enemiesCount: c_int) void {
752752
} else if (rand < 0.8) {
753753
startId = res.SPRITE_MUDDY;
754754
endId = res.SPRITE_SWAMPY;
755+
} else if (rand < 0.9) {
756+
startId = res.SPRITE_GREEN_HOOD_SKEL;
757+
endId = res.SPRITE_GREEN_HOOD_SKEL;
755758
} else {
756759
startId = res.SPRITE_MASKED_ORC;
757760
endId = res.SPRITE_NECROMANCER;

zsrc/res.zig

+92-44
Original file line numberDiff line numberDiff line change
@@ -96,50 +96,96 @@ pub const RES_KNIGHT_M = 142; //145 (male night)
9696
pub const RES_WIZZARD_M = 151;
9797
pub const RES_LIZARD_M = 157;
9898
pub const RES_ZIGGY_M = 160;
99-
pub const RES_FLOOR_SPIKE_DISABLED = 166;
100-
pub const RES_FLOOR_SPIKE_ENABLED = 167;
101-
pub const RES_FLOOR_SPIKE_OUT_ANI = 168;
102-
pub const RES_FLOOR_SPIKE_IN_ANI = 169;
103-
pub const RES_FLOOR_EXIT = 170;
104-
pub const RES_HALO_EXPLOSION1 = 163;
105-
pub const RES_HALO_EXPLOSION2 = 164;
106-
pub const RES_FIREBALL = 165;
107-
pub const RES_HP_MED = 171;
108-
pub const RES_SwordFx = 172;
109-
pub const RES_CLAWFX = 173;
110-
pub const RES_Shine = 174;
111-
pub const RES_Thunder = 175;
112-
pub const RES_BLOOD_BOUND = 176;
113-
pub const RES_ARROW = 177;
114-
pub const RES_EXPOLSTION2 = 178;
115-
pub const RES_CLAWFX2 = 179;
116-
pub const RES_AXE = 180;
117-
pub const RES_CROSS_HIT = 181;
118-
pub const RES_BLOOD1 = 182;
119-
pub const RES_BLOOD4 = 185;
120-
pub const RES_SOLIDFX = 186;
121-
pub const RES_SOLID_GREENFX = 187;
122-
pub const RES_ICEPICK = 188;
123-
pub const RES_ICESHATTER = 189;
124-
pub const RES_ICE = 190;
125-
pub const RES_HOLY_SWORD = 191;
126-
pub const RES_FIRE_SWORD = 192;
127-
pub const RES_ICE_SWORD = 193;
128-
pub const RES_GRASS_SWORD = 194;
129-
pub const RES_IRON_SWORD = 195;
130-
pub const RES_HOLY_SHIELD = 196;
131-
pub const RES_GOLDEN_CROSS_HIT = 197;
132-
pub const RES_SLIDER = 198;
133-
pub const RES_BAR_BLUE = 199;
134-
pub const RES_TITLE = 200;
135-
pub const RES_PURPLE_BALL = 201;
136-
pub const RES_PURPLE_EXP = 202;
137-
pub const RES_PURPLE_STAFF = 203;
138-
pub const RES_THUNDER_STAFF = 204;
139-
pub const RES_THUNDER_YELLOW = 205;
140-
pub const RES_ATTACK_UP = 206;
141-
pub const RES_POWERFUL_BOW = 207;
142-
pub const RES_PURPLE_FIRE_BALL = 208;
99+
pub const RES_GREEN_HOOD_SKEL = 163;
100+
pub const RES_HALO_EXPLOSION1 = 165;
101+
pub const RES_HALO_EXPLOSION2 = 166;
102+
pub const RES_FIREBALL = 167;
103+
pub const RES_FLOOR_SPIKE_DISABLED = 168;
104+
pub const RES_FLOOR_SPIKE_ENABLED = 169;
105+
pub const RES_FLOOR_SPIKE_OUT_ANI = 170;
106+
pub const RES_FLOOR_SPIKE_IN_ANI = 171;
107+
pub const RES_FLOOR_EXIT = 172;
108+
pub const RES_HP_MED = 173;
109+
pub const RES_SwordFx = 174;
110+
pub const RES_CLAWFX = 175;
111+
pub const RES_Shine = 176;
112+
pub const RES_Thunder = 177;
113+
pub const RES_BLOOD_BOUND = 178;
114+
pub const RES_ARROW = 179;
115+
pub const RES_EXPOLSTION2 = 180;
116+
pub const RES_CLAWFX2 = 181;
117+
pub const RES_AXE = 182;
118+
pub const RES_CROSS_HIT = 183;
119+
pub const RES_BLOOD1 = 184;
120+
pub const RES_BLOOD4 = 187;
121+
pub const RES_SOLIDFX = 188;
122+
pub const RES_SOLID_GREENFX = 189;
123+
pub const RES_ICEPICK = 190;
124+
pub const RES_ICESHATTER = 191;
125+
pub const RES_ICE = 192;
126+
pub const RES_HOLY_SWORD = 193;
127+
pub const RES_FIRE_SWORD = 194;
128+
pub const RES_ICE_SWORD = 195;
129+
pub const RES_GRASS_SWORD = 196;
130+
pub const RES_IRON_SWORD = 197;
131+
pub const RES_HOLY_SHIELD = 198;
132+
pub const RES_GOLDEN_CROSS_HIT = 199;
133+
pub const RES_SLIDER = 200;
134+
pub const RES_BAR_BLUE = 201;
135+
pub const RES_TITLE = 202;
136+
pub const RES_PURPLE_BALL = 203;
137+
pub const RES_PURPLE_EXP = 204;
138+
pub const RES_PURPLE_STAFF = 205;
139+
pub const RES_THUNDER_STAFF = 206;
140+
pub const RES_THUNDER_YELLOW = 207;
141+
pub const RES_ATTACK_UP = 208;
142+
pub const RES_POWERFUL_BOW = 209;
143+
pub const RES_PURPLE_FIRE_BALL = 210;
144+
145+
// pub const RES_HALO_EXPLOSION1 = 163;
146+
// pub const RES_HALO_EXPLOSION2 = 164;
147+
// pub const RES_FIREBALL = 165;
148+
// pub const RES_FLOOR_SPIKE_DISABLED = 166;
149+
// pub const RES_FLOOR_SPIKE_ENABLED = 167;
150+
// pub const RES_FLOOR_SPIKE_OUT_ANI = 168;
151+
// pub const RES_FLOOR_SPIKE_IN_ANI = 169;
152+
// pub const RES_FLOOR_EXIT = 170;
153+
// pub const RES_HP_MED = 171;
154+
// pub const RES_SwordFx = 172;
155+
// pub const RES_CLAWFX = 173;
156+
// pub const RES_Shine = 174;
157+
// pub const RES_Thunder = 175;
158+
// pub const RES_BLOOD_BOUND = 176;
159+
// pub const RES_ARROW = 177;
160+
// pub const RES_EXPOLSTION2 = 178;
161+
// pub const RES_CLAWFX2 = 179;
162+
// pub const RES_AXE = 180;
163+
// pub const RES_CROSS_HIT = 181;
164+
// pub const RES_BLOOD1 = 182;
165+
// pub const RES_BLOOD4 = 185;
166+
// pub const RES_SOLIDFX = 186;
167+
// pub const RES_SOLID_GREENFX = 187;
168+
// pub const RES_ICEPICK = 188;
169+
// pub const RES_ICESHATTER = 189;
170+
// pub const RES_ICE = 190;
171+
// pub const RES_HOLY_SWORD = 191;
172+
// pub const RES_FIRE_SWORD = 192;
173+
// pub const RES_ICE_SWORD = 193;
174+
// pub const RES_GRASS_SWORD = 194;
175+
// pub const RES_IRON_SWORD = 195;
176+
// pub const RES_HOLY_SHIELD = 196;
177+
// pub const RES_GOLDEN_CROSS_HIT = 197;
178+
// pub const RES_SLIDER = 198;
179+
// pub const RES_BAR_BLUE = 199;
180+
// pub const RES_TITLE = 200;
181+
// pub const RES_PURPLE_BALL = 201;
182+
// pub const RES_PURPLE_EXP = 202;
183+
// pub const RES_PURPLE_STAFF = 203;
184+
// pub const RES_THUNDER_STAFF = 204;
185+
// pub const RES_THUNDER_YELLOW = 205;
186+
// pub const RES_ATTACK_UP = 206;
187+
// pub const RES_POWERFUL_BOW = 207;
188+
// pub const RES_PURPLE_FIRE_BALL = 208;
143189

144190
// Effect
145191
pub const EFFECT_DEATH = 0;
@@ -169,6 +215,7 @@ pub const SPRITE_CHROT = 17;
169215
pub const SPRITE_BIG_ZOMBIE = 18;
170216
pub const SPRITE_ORGRE = 19;
171217
pub const SPRITE_BIG_DEMON = 20;
218+
pub const SPRITE_GREEN_HOOD_SKEL = 21;
172219

173220
// Audio
174221
pub const AUDIO_BGM_SIZE = 16;
@@ -769,6 +816,7 @@ fn initCommonSprites() void {
769816
initCommonSprite(&commonSprites[SPRITE_NECROMANCER], &wp.weapons[wp.WEAPON_PURPLE_BALL], RES_NECROMANCER, 120);
770817
initCommonSprite(&commonSprites[SPRITE_WOGOL], &wp.weapons[wp.WEAPON_MONSTER_CLAW2], RES_WOGOL, 150);
771818
initCommonSprite(&commonSprites[SPRITE_CHROT], &wp.weapons[wp.WEAPON_MONSTER_CLAW2], RES_CHORT, 150);
819+
initCommonSprite(&commonSprites[SPRITE_GREEN_HOOD_SKEL], &wp.weapons[wp.WEAPON_PURPLE_BALL], RES_GREEN_HOOD_SKEL, 150);
772820

773821
var now: *spr.Sprite = undefined;
774822

0 commit comments

Comments
 (0)