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

50 lines
1.5 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "烈咬陸鯊V",
th: "กาเบรียสV",
ja: "ガブリアスV"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 200,
types: ["Dragon"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "龍爪",
th: "ดรากอนคลอว์",
ja: "ドラゴンクロー"
},
damage: 120,
cost: ["Water", "Fighting", "Colorless"]
}, {
name: {
'zh-tw': "音波強襲",
th: "โซนิคสไตรค์",
ja: "ソニックストライク"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的3個能量丟棄對手的1隻寶可夢受到220點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ 3 ลูกที่ตำแหน่งทิ้งการ์ด แล้วทำแดเมจ 220 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
ja: "このポケモンについているエネルギーを3個トラッシュし、相手のポケモン1匹に、220ダメージ。ベンチは弱点・抵抗力を計算しない。"
},
cost: ["Water", "Fighting", "Fighting", "Colorless"]
}],
retreat: 0,
regulationMark: "F",
rarity: "Double rare"
}
export default card