1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

65
data-asia/SV/SV5a/021.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "グレイシア",
'zh-tw': "冰伊布",
th: "กราเซีย"
},
illustrator: "rika",
rarity: "Uncommon",
category: "Pokemon",
dexId: [471],
hp: 120,
types: ["Water"],
description: {
ja: "体温を 下げることで 全身の 体毛を 凍らせて 鋭く 尖った 針のようにして 飛ばす。",
'zh-tw': "透過使體溫下降, 讓全身的體毛結凍, 並像尖銳的針一般發射。",
th: "ทำให้ตัวเย็นลงเพื่อให้ขนแข็งคมราวเข็มแล้วสะบัดออกไป"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "しみいるれいき",
'zh-tw': "滲透寒氣",
th: "ไอเย็นซึมลึก"
},
damage: 30,
effect: {
ja: "次の相手の番の終わりに、このワザを受けたポケモンにダメカンを9個のせる。",
'zh-tw': "在下個對手的回合結束時在受到這個招式的寶可夢身上放置9個傷害指示物。",
th: "เมื่อจบเทิร์นถัดไปของฝ่ายตรงข้าม วางตัวนับแดเมจ 9 ตัวบนโปเกมอนที่ได้รับท่าต่อสู้นี้"
}
}, {
cost: ["Water", "Colorless"],
name: {
ja: "つららミサイル",
'zh-tw': "冰柱飛彈",
th: "มิสไซล์แท่งน้ำแข็ง"
},
damage: 70
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card