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

52 lines
778 B
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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "暴鯉龍"
},
illustrator: "hatachu",
category: "Pokemon",
hp: 180,
types: ["Water"],
description: {
'zh-tw': "性情非常凶暴。從嘴裡發出的破壞光線能夠將一切燃燒殆盡。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "砸碎"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "大風暴"
},
effect: {
'zh-tw': "將場上的競技場卡丟棄。"
},
damage: 200,
cost: ["Water", "Water", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card