1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

57 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 "../SVDs"
const card: Card = {
set: Set,
name: {
th: "จูไนเปอร์ex",
id: "Decidueye ex"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 320,
types: ["Grass"],
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
th: "อิสรเสรี",
id: "Segala Arah"
},
effect: {
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา สลับโปเกมอนนี้ที่อยู่บนเบนช์ กับโปเกมอนบนตำแหน่งต่อสู้ หรือ สลับโปเกมอนนี้ที่อยู่บนตำแหน่งต่อสู้ กับโปเกมอนบนเบนช์",
id: "Dapat digunakan 1 kali pada giliran sendiri. Tukar Pokémon ini yang ada di Cadangan dengan Pokémon Bertarung. Atau tukar Pokémon ini yang ada di Arena Bertarung dengan Pokémon Cadangan."
}
}],
attacks: [{
name: {
th: "ฮันติงแอร์โรว์",
id: "Hunting Arrow"
},
effect: {
th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 30 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 130,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card