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

47
data-asia/SV/SV3/121.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "コオリッポex",
'zh-tw': "冰砌鵝ex",
th: "โคโอริปโปะex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 210,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Water", "Water", "Water"],
name: {
ja: "アツアツブロック",
'zh-tw': "熱熱冰塊",
th: "บล็อกร้อน ๆ"
},
damage: 160,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。次の相手の番、このワザを受けたポケモンは、ワザが使えない。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。在下個對手的回合受到這個招式的寶可夢無法使用招式。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะใช้ท่าต่อสู้ไม่ได้"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card