1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

57 lines
876 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Caterpie",
fr: "Chenipan",
es: "Caterpie",
it: "Caterpie",
pt: "Caterpie",
de: "Raupy"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Mitsuhiro Arita",
description: {
en: "Its short feet are tipped with suction pads that enable it to tirelessly climb slopes and walls."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Flock"
},
effect: {
en: "Search your deck for a Caterpie and put it onto your Bench. Then, shuffle your deck."
}
}, {
cost: ["Grass"],
name: {
en: "Bug Bite"
},
damage: 10
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card