1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/S/S12/020.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "冰鬼護",
th: "โอนิโกริ",
ja: "オニゴーリ"
},
illustrator: "Scav",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "擁有火焰也無法融化的冰之軀體。能讓空氣中的 水分在一瞬間凍結。",
th: "ร่างน้ำแข็งที่ไม่ละลายแม้โดนไฟ สามารถทำให้น้ำในอากาศแข็งได้ในพริบตา",
ja: "炎でも 溶けない 氷の 体。 空気中の 水分を 一瞬で 凍らせてしまう。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "咬住",
th: "กัดติด",
ja: "かみつく"
},
damage: 60,
cost: ["Water", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "大嘴",
th: "บิ๊กเมาท์",
ja: "ビッグマウス"
},
effect: {
'zh-tw': "在這個回合若從手牌使出了「小菘」則增加130點傷害。",
th: "เทิร์นนี้ ถ้านำการ์ด [ซุซุนะ] จากบนมือออกมาใช้แล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 130",
ja: "この番、手札から「スズナ」を出して使っていたなら、130ダメージ追加。"
},
damage: "130",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Uncommon",
dexId: [362]
}
export default card