1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

63
data-asia/SV/SV4a/325.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ウェーニバルex",
'zh-tw': "狂歡浪舞鴨ex",
id: "Quaquaval ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Water"],
name: {
ja: "エキサイトサンバ",
'zh-tw': "激動森巴",
id: "Excite Samba"
},
damage: 60,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。その後、相手は相手自身のバトルポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。",
id: "Tukar Pokémon ini dengan Pokémon Cadangan. Setelah itu, lawan menukar Pokémon Bertarungnya dengan Pokémon Cadangan."
}
}, {
cost: ["Water", "Colorless"],
name: {
ja: "スクリューシュート",
'zh-tw': "螺旋射擊",
id: "Screw Shoot"
},
damage: 230,
effect: {
ja: "このポケモンについているエネルギーを2個選び、手札にもどす。",
'zh-tw': "選擇2個這隻寶可夢身上附加的能量放回手牌。",
id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu kembalikan ke Kartu Pegangan."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card