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

69 lines
1.8 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: "ウインディex",
'zh-tw': "風速狗ex",
th: "วินดีex",
id: "Arcanine ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 280,
types: ["Fire"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "いかりのツメ",
'zh-tw': "憤怒之爪",
th: "กรงเล็บเกรี้ยวกราด",
id: "Cakar Kemarahan"
},
damage: "30+",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージ追加。",
'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10",
id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
}
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "ぐれんのほのお",
'zh-tw': "紅蓮火焰",
th: "เพลิงสีเลือด",
id: "Kobaran Api Merah"
},
damage: 250,
effect: {
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。",
'zh-tw': "選擇2個這隻寶可夢身上附加的【火】能量將其丟棄。",
th: "เลือกพลังงาน[ไฟ]ที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
id: "Pilih 2 Energi {Api} yang dikenakan pada Pokémon ini, lalu buang ke Trash."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card