mirror of
https://github.com/danbulant/heaventaker
synced 2026-06-23 16:52:21 +00:00
Uziel
This commit is contained in:
parent
163ed2d278
commit
88ff6a4fa9
8 changed files with 39 additions and 1 deletions
BIN
public/sprite/png/uziel_dead.png
Normal file
BIN
public/sprite/png/uziel_dead.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 MiB |
BIN
public/sprite/png/uziel_happy.png
Normal file
BIN
public/sprite/png/uziel_happy.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 MiB |
BIN
public/sprite/png/uziel_idle.png
Normal file
BIN
public/sprite/png/uziel_idle.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 MiB |
BIN
public/sprite/uziel_dead.webp
Normal file
BIN
public/sprite/uziel_dead.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 315 KiB |
BIN
public/sprite/uziel_happy.webp
Normal file
BIN
public/sprite/uziel_happy.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 145 KiB |
BIN
public/sprite/uziel_normal.webp
Normal file
BIN
public/sprite/uziel_normal.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 148 KiB |
|
|
@ -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"
|
||||
}
|
||||
}];
|
||||
|
|
@ -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"]
|
||||
}];
|
||||
Loading…
Reference in a new issue