1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

65 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 "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "カスミのギャラドス",
'zh-tw': "<小霞的>暴鯉龍",
'zh-cn': "<小霞的>暴鯉龍"
},
illustrator: "GOSSAN",
rarity: "Rare",
category: "Pokemon",
dexId: [130],
hp: 180,
types: ["Water"],
description: {
ja: "一度 姿を 現すと まわりを すべて 焼き尽くさないと 怒りが 鎮まらない という。",
'zh-tw': "據說暴鯉龍一旦現身, 如果不把周圍的一切都 燃燒殆盡,怒火就不會平息。",
'zh-cn': "據說暴鯉龍一旦現身, 如果不把周圍的一切都 燃燒殆盡,怒火就不會平息。"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "ザブザブパニック",
'zh-tw': "嘩啦嘩啦恐慌",
'zh-cn': "嘩啦嘩啦恐慌"
},
damage: "70×",
effect: {
ja: "自分の山札を上から7枚トラッシュし、その中にある「カスミのポケモン」の枚数×70ダメージ。",
'zh-tw': "將自己的牌庫上方7張卡丟棄造成其中「小霞的寶可夢」的張數×70點傷害。",
'zh-cn': "將自己的牌庫上方7張卡丟棄造成其中「小霞的寶可夢」的張數×70點傷害。"
}
}, {
cost: ["Water", "Water", "Colorless"],
name: {
ja: "たきのぼり",
'zh-tw': "攀瀑",
'zh-cn': "攀瀑"
},
damage: 120
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "I"
}
export default card