mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV7s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "ฟูวันเต",
|
||
id: "Drifloon"
|
||
},
|
||
|
||
illustrator: "Miki Tanaka",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
th: "เนื่องจากมันดูล่องลอยอย่างไร้จุดหมาย จึงถูกเรียกขานในนิทานเก่าแก่ว่าเป็นเครื่องหมายบอกทางวิญญาณที่หลงทาง",
|
||
id: "Karena Drifloon terbang dan melayang tanpa tujuan, ada dongeng yang menceritakan Pokémon ini sebagai pemandu arah roh yang tersesat."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "พอง",
|
||
id: "Membesar"
|
||
},
|
||
|
||
effect: {
|
||
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-10]",
|
||
id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 10."
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Psychic"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |