1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

feat: Add SV9s (#746)

This commit is contained in:
2025-05-24 20:57:29 +02:00
committed by GitHub
parent db5863caee
commit 651313ce70
186 changed files with 9356 additions and 0 deletions

59
data-asia/SV/SV9s/140.ts Normal file
View File

@ -0,0 +1,59 @@
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