mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
42 lines
564 B
TypeScript
42 lines
564 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SI"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "水躍魚"
|
||
},
|
||
|
||
illustrator: "KIYOTAKA OSHIYAMA",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Water"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "擲泥"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "調皮踢"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Water", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |