1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

68 lines
2.0 KiB
TypeScript
Raw Permalink 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "カメール",
'zh-tw': "卡咪龜",
th: "คาเมล",
id: "Wartortle"
},
illustrator: "kantaro",
rarity: "Uncommon",
category: "Pokemon",
dexId: [8],
hp: 100,
types: ["Water"],
description: {
ja: "ふさふさの 耳と しっぽを たくみに 操って 水中での バランスを たもつ。",
'zh-tw': "會靈巧地擺動自己毛茸茸的耳朵和尾巴, 藉此在水中保持平衡。",
th: "ใช้หูและหางได้อย่างคล่องแคล่วเพื่อรักษาสมดุลขณะอยู่ในน้ำ",
id: "Wartortle mengendalikan telinga dan ekornya yang berbulu lebat untuk menjaga keseimbangan di dalam air."
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "すもぐり",
'zh-tw': "自由潛水",
th: "มุดเข้ารัง",
id: "Berbenam Diri"
},
effect: {
ja: "自分のトラッシュから「基本エネルギー」を3枚まで選び、相手に見せて、手札に加える。",
'zh-tw': "從自己的棄牌區選擇最多3張「基本【水】能量」卡在給對手看過後加入手牌。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[น้ำ]] ได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ",
id: "Pilih paling banyak 3 lembar Energi Dasar {Air} dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan."
}
}, {
cost: ["Water", "Water"],
name: {
ja: "かいてんアタック",
'zh-tw': "迴轉攻擊",
th: "โจมตีหมุนวน",
id: "Serangan Berputar"
},
damage: 50
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card