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

70
data-asia/SV/SV3a/032.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "カラミンゴ",
'zh-tw': "纏紅鶴",
th: "คลามิงโก้"
},
illustrator: "Anesaki Dynamic",
rarity: "Common",
category: "Pokemon",
dexId: [973],
hp: 110,
types: ["Fighting"],
description: {
ja: "お腹に 溜めた エネルギーが くちばしから 漏れないように 首を 根元で 結んでいるらしい。",
'zh-tw': "為了避免積蓄在肚子裡的能量外流,似乎會把 自己的脖子繫在頸根部上。",
th: "ดูเหมือนว่าจะผูกคอไว้ที่ต้นคอเพื่อไม่ให้พลังงานที่เก็บสะสมไว้ในท้องรั่วไหลออกจากจะงอยปาก"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "つつく",
'zh-tw': "啄",
th: "จิก"
},
damage: 30
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "コンバットビーク",
'zh-tw': "鬥戰喙",
th: "จะงอยปากออกรบ"
},
damage: "20+",
effect: {
ja: "相手のベンチポケモンの数×20ダメージ追加。",
'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม x20"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card