1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +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
895 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Rattata",
fr: "Rattata",
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
19,
],
hp: 30,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tail Whip",
fr: "Mouvemend'keu",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer lors du prochain tour de votre adversaire.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
}
export default card