1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

67
data-asia/SV/SV2D/016.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "イーユイex",
'zh-tw': "古玉魚ex",
th: "อวี้อวี๋ex",
id: "Chi-Yu ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 190,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fire"],
name: {
ja: "ねたみこがす",
'zh-tw': "嫉妒灼燒",
th: "เผาด้วยความอิจฉา",
id: "Kedengkian Menghanguskan"
},
effect: {
ja: "相手の山札を上から2枚トラッシュする。",
'zh-tw': "將對手的牌庫上方2張卡丟棄。",
th: "ทิ้งการ์ด 2 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด",
id: "Buang 2 kartu dari atas Deck lawan ke Trash."
}
}, {
cost: ["Fire", "Fire"],
name: {
ja: "フレイムサージ",
'zh-tw': "火焰巨浪",
th: "คลื่นเพลิง",
id: "Flame Surge"
},
damage: 100,
effect: {
ja: "自分のベンチポケモンを3匹まで選び、山札から「基本エネルギー」を1枚ずつつける。そして山札を切る。",
'zh-tw': "選擇最多3隻自己的備戰寶可夢從牌庫附給那些寶可夢各1張「基本【火】能量」卡。並且重洗牌庫。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายเราได้สูงสุด 3 ตัว นำการ์ด [พลังงานพื้นฐาน[ไฟ]] จากสำรับการ์ดมาติดตัวละ 1 ใบ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 3 Pokémon Cadangan sendiri, lalu kenakan Energi Dasar {Api} masing-masing 1 lembar dari Deck pada Pokémon tersebut. Kemudian, kocok Deck."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card