1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

70 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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