1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

67 lines
916 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Raticate",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
20,
],
types: [
"Colorless",
],
evolveFrom: {
en: "Rattata",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Recruit",
},
effect: {
en: "Look at your opponent's hand, choose a Supporter card you find there, and discard it. Then, use the effect of that card as the effect of this attack.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Extend Fang",
},
effect: {
en: "If Raticate has a Pokémon Tool card attached to it, this attack does 20 damage plus 40 more damage.",
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
}
export default card