Skip to content

Commit

Permalink
略称を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
Yayoi2078 committed Oct 19, 2024
1 parent 1c7d222 commit 4e6f8e1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion common/data/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,73 +2,84 @@ import { IncludedIn, type WithId } from "../lib/typeguard";
import { type Item, ItemEntity } from "../models/item";

type RawItemSource = {
[keymap: string]: Omit<WithId<Item>, "assignee">;
[keymap: string]: Omit<WithId<Item>, "assignee"> & {abbr: string};
};

export const ITEM_MASTER = {
q: {
id: "01_beppin_brend",
name: "べっぴんブレンド",
abbr: "べっぴん",
price: 500,
type: "hot",
},
w: {
id: "02_cafeore_brend",
name: "珈琲・俺ブレンド",
abbr: "俺ブレ",
price: 400,
type: "hot",
},
e: {
id: "03_special",
name: "限定",
abbr: "限定",
price: 1000,
type: "hot",
},
a: {
id: "04_mandheling",
name: "マンデリン",
abbr: "マンデ",
price: 400,
type: "hot",
},
s: {
id: "05_pink_bourbon",
name: "ピンクブルボン",
abbr: "ピンク",
price: 400,
type: "hot",
},
d: {
id: "06_costa_rica_red_honey",
name: "コスタリカ レッドハニー",
abbr: "コスタ",
price: 400,
type: "hot",
},
z: {
id: "10_ice_coffee",
name: "アイスコーヒー",
abbr: "氷",
price: 400,
type: "ice",
},
x: {
id: "20_hot_ore",
name: "ホットオレ",
abbr: "Hotオレ",
price: 500,
type: "hotOre",
},
c: {
id: "30_ice_ore",
name: "アイスオレ",
abbr: "Iceオレ",
price: 500,
type: "iceOre",
},
v: {
id: "40_ice_milk",
name: "アイスミルク",
abbr: "ミルク",
price: 100,
type: "milk",
},
b: {
id: "50_coaster",
name: "コースター",
abbr: "コースター",
price: 100,
type: "others",
},
Expand Down

0 comments on commit 4e6f8e1

Please sign in to comment.