1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

52 lines
1.4 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 "../SVAL"
const card: Card = {
set: Set,
name: {
'zh-tw': "卡蒂狗",
th: "การ์ดี",
id: "Growlithe"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
'zh-tw': "性格誠實,容易和人親近。遇到敵人時牠會吼叫追咬, 試著把敵人趕走。",
th: "เป็นมิตรและซื่อสัตย์ จะพยายามไล่ศัตรูออกไปด้วยการเห่าและไล่กัดอีกฝ่าย",
id: "Growlithe jinak dan berkepribadian jujur. Pokémon ini mengusir lawan dengan menggonggong dan menggigit mereka."
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "連續火焰",
th: "เพลิงไฟต่อเนื่อง",
id: "Api Beruntun"
},
effect: {
'zh-tw': "擲硬幣直到出現反面造成正面出現的次數×30點傷害。",
th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x30",
id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap lemparan dengan hasil sisi depan."
},
damage: "30×",
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card