Add thrall art
This commit is contained in:
parent
3a6590a942
commit
76053826e0
BIN
src/art/thralls/thrall_bat.png
Normal file
BIN
src/art/thralls/thrall_bat.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 468 B |
BIN
src/art/thralls/thrall_charm.png
Normal file
BIN
src/art/thralls/thrall_charm.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 535 B |
BIN
src/art/thralls/thrall_lore.png
Normal file
BIN
src/art/thralls/thrall_lore.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 536 B |
BIN
src/art/thralls/thrall_party.png
Normal file
BIN
src/art/thralls/thrall_party.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 503 B |
BIN
src/art/thralls/thrall_stare.png
Normal file
BIN
src/art/thralls/thrall_stare.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 523 B |
BIN
src/art/thralls/thrall_stealth.png
Normal file
BIN
src/art/thralls/thrall_stealth.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 503 B |
@ -1,8 +1,8 @@
|
|||||||
import {Color, Point, Rect, Size} from "./engine/datatypes.ts";
|
import {Color, Point, Rect, Size} from "./engine/datatypes.ts";
|
||||||
import {D} from "./engine/public.ts";
|
import {D} from "./engine/public.ts";
|
||||||
|
|
||||||
export const FLOOR_CELL_SIZE: Size = new Size(40, 40)
|
export const FLOOR_CELL_SIZE: Size = new Size(48, 48)
|
||||||
export const CEILING_CELL_SIZE: Size = new Size(52, 52)
|
export const CEILING_CELL_SIZE: Size = new Size(56, 56)
|
||||||
export const HEIGHT_IN_FEET = 12;
|
export const HEIGHT_IN_FEET = 12;
|
||||||
export const CENTER = new Point(192, 192);
|
export const CENTER = new Point(192, 192);
|
||||||
export const MOULDING_SZ = new Size(1, 1);
|
export const MOULDING_SZ = new Size(1, 1);
|
||||||
@ -126,6 +126,7 @@ export class GridArt {
|
|||||||
|
|
||||||
drawCeiling(color: Color) {
|
drawCeiling(color: Color) {
|
||||||
D.fillRect(this.#ceilingTl, this.#ceilingBr.subtract(this.#ceilingTl), color);
|
D.fillRect(this.#ceilingTl, this.#ceilingBr.subtract(this.#ceilingTl), color);
|
||||||
|
// D.drawRect(this.#ceilingTl, this.#ceilingBr.subtract(this.#ceilingTl), FG_BOLD);
|
||||||
}
|
}
|
||||||
|
|
||||||
project(z: number): Point {
|
project(z: number): Point {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import {D} from "./engine/public.ts";
|
import {D} from "./engine/public.ts";
|
||||||
import {Point, Size} from "./engine/datatypes.ts";
|
import {Point, Size} from "./engine/datatypes.ts";
|
||||||
import {FG_BOLD, FG_TEXT} from "./colors.ts";
|
import {BG_OUTER, FG_BOLD, FG_TEXT} from "./colors.ts";
|
||||||
import {ALL_STATS} from "./datatypes.ts";
|
import {ALL_STATS} from "./datatypes.ts";
|
||||||
import {getPlayerProgress} from "./playerprogress.ts";
|
import {getPlayerProgress} from "./playerprogress.ts";
|
||||||
import {getHuntMode} from "./huntmode.ts";
|
import {getHuntMode} from "./huntmode.ts";
|
||||||
@ -14,7 +14,7 @@ export class Hud {
|
|||||||
update() { }
|
update() { }
|
||||||
|
|
||||||
draw() {
|
draw() {
|
||||||
// D.fillRect(new Point(-4, -4), this.size.add(new Size(8, 8)), BG_INSET)
|
D.fillRect(new Point(-4, -4), this.size.add(new Size(8, 8)), BG_OUTER)
|
||||||
D.drawText(getPlayerProgress().name, new Point(0, 0), FG_BOLD)
|
D.drawText(getPlayerProgress().name, new Point(0, 0), FG_BOLD)
|
||||||
D.drawText(`Level ${getHuntMode().getDepth()}`, new Point(0, 16), FG_TEXT)
|
D.drawText(`Level ${getHuntMode().getDepth()}`, new Point(0, 16), FG_TEXT)
|
||||||
D.drawText(`Turn ${getStateManager().getTurn()}/${getStateManager().getMaxTurns()}`, new Point(0, 32), FG_TEXT)
|
D.drawText(`Turn ${getStateManager().getTurn()}/${getStateManager().getMaxTurns()}`, new Point(0, 32), FG_TEXT)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import {Point} from "./engine/datatypes.ts";
|
import {Point} from "./engine/datatypes.ts";
|
||||||
import {DrawPile} from "./drawpile.ts";
|
import {DrawPile} from "./drawpile.ts";
|
||||||
import {D} from "./engine/public.ts";
|
import {D} from "./engine/public.ts";
|
||||||
import {sprRaccoonWalking} from "./sprites.ts";
|
import {sprThrallLore} from "./sprites.ts";
|
||||||
import {
|
import {
|
||||||
BG_INSET,
|
BG_INSET,
|
||||||
BG_WALL_OR_UNREVEALED,
|
BG_WALL_OR_UNREVEALED,
|
||||||
@ -19,6 +19,7 @@ import {getCheckModal} from "./checkmodal.ts";
|
|||||||
export class HuntMode {
|
export class HuntMode {
|
||||||
map: LoadedNewMap
|
map: LoadedNewMap
|
||||||
player: Point
|
player: Point
|
||||||
|
faceLeft: boolean
|
||||||
|
|
||||||
drawpile: DrawPile
|
drawpile: DrawPile
|
||||||
frame: number
|
frame: number
|
||||||
@ -27,6 +28,7 @@ export class HuntMode {
|
|||||||
constructor(depth: number, map: LoadedNewMap) {
|
constructor(depth: number, map: LoadedNewMap) {
|
||||||
this.map = map;
|
this.map = map;
|
||||||
this.player = map.entrance;
|
this.player = map.entrance;
|
||||||
|
this.faceLeft = false
|
||||||
|
|
||||||
this.drawpile = new DrawPile();
|
this.drawpile = new DrawPile();
|
||||||
this.frame = 0;
|
this.frame = 0;
|
||||||
@ -67,7 +69,11 @@ export class HuntMode {
|
|||||||
}
|
}
|
||||||
|
|
||||||
movePlayerTo(newPosition: Point) {
|
movePlayerTo(newPosition: Point) {
|
||||||
|
let oldX = this.player.x;
|
||||||
|
let newX = newPosition.x;
|
||||||
this.player = newPosition;
|
this.player = newPosition;
|
||||||
|
if (newX < oldX) { this.faceLeft = true; }
|
||||||
|
if (oldX < newX) { this.faceLeft = false; }
|
||||||
this.#collectResources();
|
this.#collectResources();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -227,10 +233,10 @@ export class HuntMode {
|
|||||||
).offset(globalOffset.negate())
|
).offset(globalOffset.negate())
|
||||||
this.drawpile.add(this.player.y, () => {
|
this.drawpile.add(this.player.y, () => {
|
||||||
D.drawSprite(
|
D.drawSprite(
|
||||||
sprRaccoonWalking,
|
sprThrallLore,
|
||||||
cellOffset.offset(new Point(0, 22)),
|
cellOffset,
|
||||||
0, {
|
1, {
|
||||||
xScale: 2,
|
xScale: this.faceLeft ? -2 : 2,
|
||||||
yScale: 2
|
yScale: 2
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -5,7 +5,7 @@ import {getHuntMode, HuntMode, initHuntMode} from "./huntmode.ts";
|
|||||||
import {generateMap} from "./mapgen.ts";
|
import {generateMap} from "./mapgen.ts";
|
||||||
import {ALL_STATS, Stat} from "./datatypes.ts";
|
import {ALL_STATS, Stat} from "./datatypes.ts";
|
||||||
import {D} from "./engine/public.ts";
|
import {D} from "./engine/public.ts";
|
||||||
import {sprLadder, sprLock, sprRaccoonWalking, sprResourcePickup, sprStatPickup} from "./sprites.ts";
|
import {sprLadder, sprLock, sprResourcePickup, sprStatPickup} from "./sprites.ts";
|
||||||
import {GridArt} from "./gridart.ts";
|
import {GridArt} from "./gridart.ts";
|
||||||
import {getCheckModal} from "./checkmodal.ts";
|
import {getCheckModal} from "./checkmodal.ts";
|
||||||
import {Point} from "./engine/datatypes.ts";
|
import {Point} from "./engine/datatypes.ts";
|
||||||
@ -136,7 +136,8 @@ export class ThrallPickup {
|
|||||||
|
|
||||||
drawFloor() { }
|
drawFloor() { }
|
||||||
drawInAir(gridArt: GridArt) {
|
drawInAir(gridArt: GridArt) {
|
||||||
D.drawSprite(sprRaccoonWalking, gridArt.project(0.0), 0, {
|
let data = getThralls().get(this.thrall);
|
||||||
|
D.drawSprite(data.sprite, gridArt.project(0.0), 0, {
|
||||||
xScale: 2.0,
|
xScale: 2.0,
|
||||||
yScale: 2.0,
|
yScale: 2.0,
|
||||||
})
|
})
|
||||||
|
@ -1,36 +1,25 @@
|
|||||||
import {Sprite} from "./engine/internal/sprite.ts";
|
import {Sprite} from "./engine/internal/sprite.ts";
|
||||||
/*
|
|
||||||
import imgBat from "./art/characters/bat.png";
|
|
||||||
import imgKobold from "./art/characters/kobold.png";
|
|
||||||
import imgRobot from "./art/characters/robot.png";
|
|
||||||
import imgSnake from "./art/characters/snake.png";
|
|
||||||
*/
|
|
||||||
import imgRaccoon from "./art/characters/raccoon.png";
|
import imgRaccoon from "./art/characters/raccoon.png";
|
||||||
import imgRaccoonWalking from "./art/characters/raccoon_walking.png";
|
|
||||||
import imgResourcePickup from "./art/pickups/resources.png";
|
import imgResourcePickup from "./art/pickups/resources.png";
|
||||||
import imgStatPickup from "./art/pickups/stats.png";
|
import imgStatPickup from "./art/pickups/stats.png";
|
||||||
import imgLadder from "./art/pickups/ladder.png";
|
import imgLadder from "./art/pickups/ladder.png";
|
||||||
import imgLock from "./art/pickups/lock.png";
|
import imgLock from "./art/pickups/lock.png";
|
||||||
import imgDrips from "./art/tilesets/drips.png";
|
|
||||||
import {Point, Size} from "./engine/datatypes.ts";
|
import {Point, Size} from "./engine/datatypes.ts";
|
||||||
|
|
||||||
/*
|
import imgThrallBat from "./art/thralls/thrall_bat.png";
|
||||||
export let sprBat = new Sprite(imgBat, 64, 64, 32, 32, 1, 1, 1);
|
import imgThrallCharm from "./art/thralls/thrall_charm.png";
|
||||||
export let sprKobold = new Sprite(imgKobold, 64, 64, 32, 32, 1, 1, 1);
|
import imgThrallLore from "./art/thralls/thrall_lore.png";
|
||||||
export let sprRobot = new Sprite(imgRobot, 64, 64, 32, 32, 1, 1, 1);
|
import imgThrallParty from "./art/thralls/thrall_party.png";
|
||||||
export let sprSnake = new Sprite(imgSnake, 64, 64, 32, 32, 1, 1, 1);
|
import imgThrallStare from "./art/thralls/thrall_stare.png";
|
||||||
*/
|
import imgThrallStealth from "./art/thralls/thrall_stealth.png";
|
||||||
|
|
||||||
|
|
||||||
export let sprRaccoon = new Sprite(
|
export let sprRaccoon = new Sprite(
|
||||||
imgRaccoon,
|
imgRaccoon,
|
||||||
new Size(64, 64), new Point(32, 32), new Size(1, 1),
|
new Size(64, 64), new Point(32, 32), new Size(1, 1),
|
||||||
1
|
1
|
||||||
);
|
);
|
||||||
export let sprRaccoonWalking = new Sprite(
|
|
||||||
imgRaccoonWalking,
|
|
||||||
new Size(64, 64), new Point(32, 32), new Size(8, 1),
|
|
||||||
8
|
|
||||||
);
|
|
||||||
export let sprResourcePickup = new Sprite(
|
export let sprResourcePickup = new Sprite(
|
||||||
imgResourcePickup, new Size(32, 32), new Point(16, 16),
|
imgResourcePickup, new Size(32, 32), new Point(16, 16),
|
||||||
new Size(1, 1), 1
|
new Size(1, 1), 1
|
||||||
@ -41,11 +30,6 @@ export let sprStatPickup = new Sprite(
|
|||||||
new Size(4, 1), 4
|
new Size(4, 1), 4
|
||||||
);
|
);
|
||||||
|
|
||||||
export let sprDrips = new Sprite(
|
|
||||||
imgDrips, new Size(32, 16), new Point(16, 0),
|
|
||||||
new Size(2, 1), 2
|
|
||||||
);
|
|
||||||
|
|
||||||
export let sprLadder = new Sprite(
|
export let sprLadder = new Sprite(
|
||||||
imgLadder, new Size(16, 16), new Point(8, 8),
|
imgLadder, new Size(16, 16), new Point(8, 8),
|
||||||
new Size(1, 1), 1
|
new Size(1, 1), 1
|
||||||
@ -55,3 +39,11 @@ export let sprLock = new Sprite(
|
|||||||
imgLock, new Size(16, 16), new Point(8, 8),
|
imgLock, new Size(16, 16), new Point(8, 8),
|
||||||
new Size(1, 1), 1
|
new Size(1, 1), 1
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
export let sprThrallBat = new Sprite(imgThrallBat, new Size(24, 24), new Point(12, 12), new Size(2, 1), 2);
|
||||||
|
export let sprThrallCharm = new Sprite(imgThrallCharm, new Size(24, 24), new Point(12, 12), new Size(2, 1), 2);
|
||||||
|
export let sprThrallLore = new Sprite(imgThrallLore, new Size(24, 24), new Point(12, 12), new Size(2, 1), 2);
|
||||||
|
export let sprThrallParty = new Sprite(imgThrallParty, new Size(24, 24), new Point(12, 12), new Size(2, 1), 2);
|
||||||
|
export let sprThrallStare = new Sprite(imgThrallStare, new Size(24, 24), new Point(12, 12), new Size(2, 1), 2);
|
||||||
|
export let sprThrallStealth = new Sprite(imgThrallStealth, new Size(24, 24), new Point(12, 12), new Size(2, 1), 2);
|
||||||
|
@ -13,6 +13,15 @@ import {
|
|||||||
stealth0,
|
stealth0,
|
||||||
stealth1
|
stealth1
|
||||||
} from "./skills.ts";
|
} from "./skills.ts";
|
||||||
|
import {
|
||||||
|
sprThrallBat,
|
||||||
|
sprThrallCharm,
|
||||||
|
sprThrallLore,
|
||||||
|
sprThrallParty,
|
||||||
|
sprThrallStare,
|
||||||
|
sprThrallStealth
|
||||||
|
} from "./sprites.ts";
|
||||||
|
import {Sprite} from "./engine/internal/sprite.ts";
|
||||||
|
|
||||||
export type Thrall = {
|
export type Thrall = {
|
||||||
id: number
|
id: number
|
||||||
@ -36,8 +45,9 @@ class ThrallsTable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
export type ThrallData = {
|
export type ThrallData = {
|
||||||
label: string
|
label: string,
|
||||||
initialCheck: CheckData
|
sprite: Sprite,
|
||||||
|
initialCheck: CheckData,
|
||||||
}
|
}
|
||||||
|
|
||||||
let table = new ThrallsTable();
|
let table = new ThrallsTable();
|
||||||
@ -52,6 +62,7 @@ export function getThralls() {
|
|||||||
// or Lore)
|
// or Lore)
|
||||||
export let thrallParty = table.add({
|
export let thrallParty = table.add({
|
||||||
label: "Garrett",
|
label: "Garrett",
|
||||||
|
sprite: sprThrallParty,
|
||||||
initialCheck: {
|
initialCheck: {
|
||||||
label: "That's Garrett. He plays poker, but he goes to the zoo to cool down after he's lost a lot of chips. His ice cream cone has melted.",
|
label: "That's Garrett. He plays poker, but he goes to the zoo to cool down after he's lost a lot of chips. His ice cream cone has melted.",
|
||||||
options: [
|
options: [
|
||||||
@ -75,8 +86,9 @@ export let thrallParty = table.add({
|
|||||||
|
|
||||||
export let thrallLore = table.add({
|
export let thrallLore = table.add({
|
||||||
label: "Lupin",
|
label: "Lupin",
|
||||||
|
sprite: sprThrallLore,
|
||||||
initialCheck: {
|
initialCheck: {
|
||||||
label: "That's Lupin. He's a Wolf Scout, but hardcore about it. He's a packleader.",
|
label: "That's Lupin. He's a Wolf Scout, but hardcore about it. I'm not sure he knows he's a raccoon.",
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
skill: () => stare1, // Hypnotize
|
skill: () => stare1, // Hypnotize
|
||||||
@ -98,6 +110,7 @@ export let thrallLore = table.add({
|
|||||||
|
|
||||||
export let thrallBat = table.add({
|
export let thrallBat = table.add({
|
||||||
label: "Monica",
|
label: "Monica",
|
||||||
|
sprite: sprThrallBat,
|
||||||
initialCheck: {
|
initialCheck: {
|
||||||
label: "That's Monica. You've seen her cook on TV! Looks like she's enjoying a kiwi flan.",
|
label: "That's Monica. You've seen her cook on TV! Looks like she's enjoying a kiwi flan.",
|
||||||
options: [
|
options: [
|
||||||
@ -121,6 +134,7 @@ export let thrallBat = table.add({
|
|||||||
|
|
||||||
export let thrallCharm = table.add({
|
export let thrallCharm = table.add({
|
||||||
label: "Renfield",
|
label: "Renfield",
|
||||||
|
sprite: sprThrallCharm,
|
||||||
initialCheck: {
|
initialCheck: {
|
||||||
label: "Doesn't this guy seem a little creepy? His nametag says Renfield. Not sure you should trust him...",
|
label: "Doesn't this guy seem a little creepy? His nametag says Renfield. Not sure you should trust him...",
|
||||||
options: [
|
options: [
|
||||||
@ -144,6 +158,7 @@ export let thrallCharm = table.add({
|
|||||||
|
|
||||||
export let thrallStealth = table.add({
|
export let thrallStealth = table.add({
|
||||||
label: "Narthyss",
|
label: "Narthyss",
|
||||||
|
sprite: sprThrallStealth,
|
||||||
initialCheck: {
|
initialCheck: {
|
||||||
label: "Narthyss (dragon, heiress) actually owns the club, so she probably wouldn't talk to you... Would she?",
|
label: "Narthyss (dragon, heiress) actually owns the club, so she probably wouldn't talk to you... Would she?",
|
||||||
options: [
|
options: [
|
||||||
@ -167,6 +182,7 @@ export let thrallStealth = table.add({
|
|||||||
|
|
||||||
export let thrallStare = table.add({
|
export let thrallStare = table.add({
|
||||||
label: "Ridley",
|
label: "Ridley",
|
||||||
|
sprite: sprThrallStare,
|
||||||
initialCheck: {
|
initialCheck: {
|
||||||
label: "Ridley is the library's catalogue system. It can give you an incorrect answer to any question. (It has a couple gears loose.)",
|
label: "Ridley is the library's catalogue system. It can give you an incorrect answer to any question. (It has a couple gears loose.)",
|
||||||
options: [
|
options: [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user