1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

55 lines
1.7 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 "../SV7s"
const card: Card = {
set: Set,
name: {
th: "วาตะชิรากะ",
id: "Eldegoss"
},
illustrator: "Yuka Tanaka",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
th: "เมล็ดขนนุ่นมีสารอาหารเต็มเปี่ยม จะปล่อยนุ่นให้ลอยไปตามลมเพื่อทำให้ต้นไม้ใบหญ้าและเหล่าโปเกมอนร่าเริง",
id: "Biji di bulu kapas Eldegoss mengandung banyak nutrisi. Biji ini diterbangkan menggunakan angin untuk menyehatkan tanaman dan Pokémon lainnya."
},
stage: "Stage1",
attacks: [{
name: {
th: "ของขวัญจากสายลมอ่อน",
id: "Hadiah Angin Semilir"
},
effect: {
th: "นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายเรา หลังจากนั้น เลือกการ์ดที่ชอบได้สูงสุด 3 ใบจากสำรับการ์ด นำขึ้นมือ แล้วสับสำรับการ์ด",
id: "Kembalikan Pokémon ini dan semua kartu yang dikenakannya ke Deck sendiri. Setelah itu, pilih paling banyak 3 kartu sesukanya dari Deck, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
},
cost: ["Colorless"]
}, {
name: {
th: "ใบไม้",
id: "Dedaunan"
},
damage: 50,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card