Move images
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
A fan-made game inspired by Helltaker. Art by u/hohodo.
|
A fan-made game inspired by Helltaker. Art by u/hohodo.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Play it
|
## Play it
|
||||||
|
|
||||||
|
|
|
||||||
BIN
images/backg.png
Normal file
|
After Width: | Height: | Size: 322 KiB |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
|
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 153 KiB |
BIN
images/michael_wings.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 360 KiB After Width: | Height: | Size: 370 KiB |
|
Before Width: | Height: | Size: 835 KiB After Width: | Height: | Size: 835 KiB |
|
Before Width: | Height: | Size: 849 KiB After Width: | Height: | Size: 849 KiB |
|
Before Width: | Height: | Size: 322 KiB After Width: | Height: | Size: 316 KiB |
|
Before Width: | Height: | Size: 316 KiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 370 KiB After Width: | Height: | Size: 360 KiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 387 KiB |
|
|
@ -43,7 +43,7 @@
|
||||||
if(d.buttons && activeButton > d.buttons.length - 1) activeButton = d.buttons.length - 1;
|
if(d.buttons && activeButton > d.buttons.length - 1) activeButton = d.buttons.length - 1;
|
||||||
break;
|
break;
|
||||||
case "Enter":
|
case "Enter":
|
||||||
case "Space":
|
case " ":
|
||||||
select(activeButton);
|
select(activeButton);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
export const characters = [{
|
export const characters = [{
|
||||||
name: "Michael",
|
name: "Michael",
|
||||||
art: "/sprite/fin_michael_normal.png",
|
art: "/sprite/michael_normal.png",
|
||||||
title: "the high marshal",
|
title: "the high marshal",
|
||||||
poses: {
|
poses: {
|
||||||
wings: "/sprite/fin_michael_wings.png"
|
wings: "/sprite/michael_wings.png"
|
||||||
}
|
}
|
||||||
}];
|
}];
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
export const dialog = [{
|
export const dialog = [{
|
||||||
name: "michael_heretic",
|
name: "michael_heretic",
|
||||||
background: "/sprite/fin_backg.png",
|
background: "/sprite/backg.png",
|
||||||
character: "Michael",
|
character: "Michael",
|
||||||
text: "How did you... You know what I don't even care. Heretic like you needs to be punished.",
|
text: "How did you... You know what I don't even care. Heretic like you needs to be punished.",
|
||||||
buttons: [{
|
buttons: [{
|
||||||
|
|
@ -12,14 +12,14 @@ export const dialog = [{
|
||||||
}]
|
}]
|
||||||
}, {
|
}, {
|
||||||
name: "michael_success",
|
name: "michael_success",
|
||||||
background: "/sprite/fin_backg.png",
|
background: "/sprite/backg.png",
|
||||||
character: "Michael",
|
character: "Michael",
|
||||||
text: "Really? Well, big man: if you survive this whole ordeal, prepare a room and we shall see how into this shit you really are",
|
text: "Really? Well, big man: if you survive this whole ordeal, prepare a room and we shall see how into this shit you really are",
|
||||||
flags: ["success"],
|
flags: ["success"],
|
||||||
next: "michael_heretic"
|
next: "michael_heretic"
|
||||||
}, {
|
}, {
|
||||||
name: "michael_failure",
|
name: "michael_failure",
|
||||||
background: "/sprite/fin_backg.png",
|
background: "/sprite/backg.png",
|
||||||
character: "Michael",
|
character: "Michael",
|
||||||
text: "I also have something to offer: eat shit and die.",
|
text: "I also have something to offer: eat shit and die.",
|
||||||
pose: "wings",
|
pose: "wings",
|
||||||
|
|
|
||||||