1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

69 lines
2.1 KiB
TypeScript
Raw 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ウェーニバルex",
'zh-tw': "狂歡浪舞鴨ex",
th: "เวนิวัลex",
id: "Quaquaval ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Water"],
name: {
ja: "エキサイトサンバ",
'zh-tw': "激動森巴",
th: "เอ็กซ์ไซต์แซมบา",
id: "Excite Samba"
},
damage: 60,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。その後、相手は相手自身のバトルポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。",
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์ หลังจากนั้น ฝ่ายตรงข้ามสลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเองกับโปเกมอนบนเบนช์",
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': "螺旋射擊",
th: "สกรูชูต",
id: "Screw Shoot"
},
damage: 230,
effect: {
ja: "このポケモンについているエネルギーを2個選び、手札にもどす。",
'zh-tw': "選擇2個這隻寶可夢身上附加的能量放回手牌。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 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