1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

59 lines
1.3 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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "ยันยันมา",
id: "Yanma"
},
illustrator: "Ayako Ozaki",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
th: "กระพือปีกด้วยความเร็วสูง บินอยู่กับที่พลางตรวจตราอาณาเขตของตน"
},
stage: "Basic",
attacks: [{
name: {
th: "เป่ากระเด็น",
id: "Angin Penghempas"
},
effect: {
th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามกับโปเกมอนบนเบนช์ {ฝ่ายตรงข้าม เลือกโปเกมอนที่จะวางบนตำแหน่งต่อสู้}",
id: "Tukar Pokémon Bertarung lawan dengan Pokémon Cadangan. [Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.]"
},
cost: ["Colorless"]
}, {
name: {
th: "ขนปีกแหลมคม",
id: "Bulu Tajam"
},
damage: 30,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card