mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
29 lines
841 B
TypeScript
29 lines
841 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV2a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "安全ゴーグル",
|
|
'zh-tw': "安全護目鏡",
|
|
th: "แว่นนิรภัย",
|
|
id: "Kacamata Keselamatan"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "このカードをつけているたねポケモンの弱点は、すべてなくなる。",
|
|
'zh-tw': "附有這張卡的【基礎】寶可夢的弱點全部消除。",
|
|
th: "จุดอ่อนของโปเกมอน[พื้นฐาน]ที่ติดการ์ดนี้อยู่ ทั้งหมดจะหายไป",
|
|
id: "Pokémon Basic yang mengenakan kartu ini menjadi tidak memiliki Kelemahan."
|
|
},
|
|
|
|
trainerType: "Tool",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |