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

51 lines
782 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 "../S6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨翅飛魚"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "悠然地暢游在大海中。就算有覬覦食物殘渣的鐵炮魚吸附在自己身上也毫不在意。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "彈跳"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與備戰寶可夢互換。"
},
damage: 20,
cost: ["Water"]
}, {
name: {
'zh-tw': "飛濺"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card