mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
26 lines
354 B
TypeScript
26 lines
354 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVEL"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "厲害釣竿"
|
||
},
|
||
|
||
illustrator: "Toyste Beach",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Darkness"],
|
||
stage: "Basic",
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |