Skip to content

Commit

Permalink
chore: add save icon
Browse files Browse the repository at this point in the history
  • Loading branch information
lajbel committed Sep 22, 2024
1 parent a987229 commit b4b69ab
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1 deletion.
Binary file added assets/icons/save-o.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/src/save.aseprite
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kaplayjs/crew",
"description": "The home of the KAPLAY assets.",
"version": "1.5.3",
"version": "1.6.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
Expand Down
13 changes: 13 additions & 0 deletions src/icons/save.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import saveSpriteO from "../../assets/icons/save-o.png";
import saveSprite from "../../assets/icons/save.png";
import type { SpriteCrewItem } from "../types/crew";

export const saveData: SpriteCrewItem = {
name: "save",
description: "A chill diskette",
author: "lajbel",
secret: "Saving Kaboom memories",
type: "icons",
sprite: saveSprite,
outlined: saveSpriteO,
};
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ import { playData } from "./icons/play";
import { plusData } from "./icons/plus";
import { question_markData } from "./icons/question_mark";
import { ruleData } from "./icons/rule";
import { saveData } from "./icons/save";
import { soundsData } from "./icons/sounds";
import { strangerData } from "./icons/stranger";
import { toolboxData } from "./icons/toolbox";
Expand Down Expand Up @@ -140,6 +141,7 @@ export const assets = {
"trash": trashData,
"paper": paperData,
"plus": plusData,
"save": saveData,

// books
"marks_legend": marks_legendData,
Expand Down

0 comments on commit b4b69ab

Please sign in to comment.