1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

87 lines
1.3 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 '../Undaunted'
const card: Card = {
name: {
en: "Raticate",
fr: "Rattatac",
},
illustrator: "Sachiko Adachi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
20,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Rattata",
fr: "Rattata",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Razor-Sharp Incisors",
fr: "Incisives aiguisées",
},
effect: {
en: "Does 10 damage times the number of damage counters on the Defending Pokémon.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur le Pokémon Défenseur.",
},
damage: "10×",
},
{
cost: [
"Colorless",
],
name: {
en: "Gnaw Up",
fr: "Rongetout",
},
effect: {
en: "Discard a Special Energy card attached to the Defending Pokémon.",
fr: "Défaussez une carte Énergie spéciale attachée au Pokémon Défenseur.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 0,
description: {
en: "Its whiskers help it to maintain balance. Its fangs never stop growing, so it gnaws to pare them down."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card