mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
44 lines
695 B
TypeScript
44 lines
695 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Dubwool"
|
|
},
|
|
|
|
illustrator: "saino misaki",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Colorless"],
|
|
stage: "Stage1",
|
|
evolveFrom: {
|
|
en: "Wooloo"
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rolling Tackle"
|
|
},
|
|
|
|
damage: "80"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "Weave a carpet from its springy wool, and you end up with something closer to a trampoline. You'll start to bounce the moment you set foot on it.",
|
|
}
|
|
}
|
|
|
|
export default card
|