This commit is contained in:
Daniel Bulant 2021-02-23 13:13:10 +01:00
parent 163ed2d278
commit 88ff6a4fa9
8 changed files with 39 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

View file

@ -15,4 +15,12 @@ export const characters = [{
side_happy: "/sprite/uriel_side_happy.webp",
bat: "/sprite/uriel_bat.webp"
}
}, {
name: "Uziel",
art: "/sprite/uziel_normal.webp",
title: "the chief commissar",
poses: {
happy: "/sprite/uziel_happy.webp",
dead: "/sprite/uziel_dead.webp"
}
}];

View file

@ -23,6 +23,7 @@ export const dialog = [{
character: "Uriel",
text: "You picked the wrong gate fool.",
next: "uriel_entrance",
flags: ["failure"],
pose: "bat"
}, {
name: "uriel_success",
@ -50,12 +51,41 @@ export const dialog = [{
pose: "happy",
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"],
next: "uriel_entrance"
next: "uziel_start"
}, {
name: "michael_failure",
background: "/sprite/backg.webp",
character: "Michael",
text: "I also have something to offer: eat shit and die.",
pose: "wings",
flags: ["failure"],
next: "michael_heretic"
}, {
name: "uziel_start",
background: "/sprite/backg.webp",
character: "Uziel",
text: "Hello there",
buttons: [{
text: "Failure",
next: "uziel_failure"
}, {
text: "Success",
next: "uziel_success"
}]
}, {
name: "uziel_failure",
background: "/sprite/backg.webp",
character: "Uziel",
text: "You're dead",
next: "uziel_start",
flags: ["failure"],
pose: "dead"
}, {
name: "uziel_success",
background: "/sprite/backg.webp",
character: "Uziel",
pose: "happy",
text: "You got me",
next: "uriel_entrance",
flags: ["success"]
}];