1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

40 lines
564 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Snivy"
},
illustrator: "Yoriyuki Ikegami",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "Being exposed to sunlight makes its movements<br />swifter. It uses vines more adeptly than its hands."
},
stage: "Basic",
attacks: [{
name: {
en: "Tackle"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card