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

70 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Raticate G",
fr: "Rattatac ",
},
illustrator: "Ryota Saito",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
20,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
suffix: "SP",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Find",
fr: "Trouver",
},
effect: {
en: "Search your discard pile for a Trainer card or a Supporter card, show it to your opponent, and put it into your hand.",
fr: "Choisissez dans votre pile de défausse une carte Dresseur ou une carte Supporter, montrez-la à votre adversaire et placez-la dans votre main.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Biting Fang",
fr: "Croc mordant",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card