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

59 lines
1.8 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: "Vulpix"
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
dexId: [37],
hp: 70,
types: ["Fire"],
description: {
ja: "6本の しっぽは 育つごとに 毛並みが 良くなり 美しくなる。 抱きしめると ほんのり 温かい。",
'zh-tw': "隨著身體的成長,6根尾巴的毛髮也會變得更漂亮。 緊緊抱著牠時能感到微微的溫暖。",
th: "ทุกครั้งที่หางทั้ง 6 หางโตขึ้น เส้นขนจะเรียงสวยงาม พอกอดจะรู้สึกอบอุ่นเล็กน้อย",
id: "Seiring pertumbuhannya, keenam ekor Vulpix menjadi makin cantik dan bulunya makin lembut. Jika dipeluk, Pokémon ini terasa agak hangat."
},
stage: "Basic",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "ほのおでこがす",
'zh-tw': "火焰灼燒",
th: "ลนไฟ",
id: "Api Penghangus"
},
damage: 20,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをやけどにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【灼傷】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card