mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
35 lines
453 B
TypeScript
35 lines
453 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SCD"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "蓮帽小童"
|
||
},
|
||
|
||
illustrator: "miki kudo",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Water"],
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "飛濺"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Water", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |