1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +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

86 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Feraligatr",
fr: "Aligatueur",
},
illustrator: "Kent Kanetsuna",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
fr: "Crocodil",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Rain Dance",
fr: "Danse pluie",
},
effect: {
en: "As often as you like during your turn (before your attack), you may attach a Water Energy card from your hand to 1 of your Water Pokémon. This power cant be used if Feraligatr is affected by a Special Condition.",
fr: "Autant de fois que vous le souhaitez pendant votre tour (avant votre attaque), vous pouvez attacher une carte Énergie Water de votre main à lun de vos Pokémon Water. Ce pouvoir ne peut pas être utilisé si Aligatueur est affecté par un État spécial.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Water",
"Water",
],
name: {
en: "Hydro Crunch",
fr: "Hydro-machouille",
},
effect: {
en: "Does 60 damage plus 10 more damage for each damage counter on the Defending Pokémon.",
fr: "Inflige 60 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégâts sur le Pokémon Défenseur.",
},
damage: "60+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card