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

68 lines
2.0 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ガーディ",
'zh-tw': "卡蒂狗",
th: "การ์ดี",
id: "Growlithe"
},
illustrator: "Tika Matsuno",
rarity: "Common",
category: "Pokemon",
dexId: [58],
hp: 90,
types: ["Fire"],
description: {
ja: "人懐こく 誠実な 性格。 敵には ほえて かみつき 追い払おうとする。",
'zh-tw': "性格誠實,容易和人親近。遇到敵人時牠會吼叫追咬, 試著把敵人趕走。",
th: "เป็นมิตรและซื่อสัตย์ จะพยายามไล่ศัตรูออกไปด้วยการเห่าและไล่กัดอีกฝ่าย",
id: "Growlithe jinak dan berkepribadian jujur. Pokémon ini mengusir lawan dengan menggonggong dan menggigit mereka."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "もえあがる",
'zh-tw': "燃起",
th: "ลุกโชน",
id: "Membara"
},
effect: {
ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張「基本【火】能量」卡附於這隻寶可夢身上。並且重洗牌庫。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 2 lembar Energi Dasar {Api} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck."
}
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "ほのおのツメ",
'zh-tw': "火之爪",
th: "กรงเล็บไฟ",
id: "Cakar Api"
},
damage: 70
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card