1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

91 lines
2.0 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",
de: "Impergator"
},
illustrator: "Kent Kanetsuna",
rarity: "Rare PRIME",
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",
de: "Regentanz"
},
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.",
de: "Beliebig oft während deines Zuges (vor deinem Angriff) kannst du 1 -Energiekarte von deiner Hand an 1 deiner -Pokémon anlegen. Diese Poké-Power kann nicht benutzt werden, wenn Impergator von einem Speziellen Zustand betroffen ist."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Water",
"Water",
],
name: {
en: "Hydro Crunch",
fr: "Hydro-machouille",
de: "Hydroknirscher"
},
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.",
de: "Dieser Angriff fügt 60 Schadenspunkte plus 10 weitere Schadenspunkte für jede Schadensmarke auf dem Verteidigenden Pokémon zu."
},
damage: "60+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card