1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

66
data/Neo/Neo Destiny/5.ts Normal file
View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Dark Feraligatr",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Scare",
},
effect: {
en: "As long as Dark Feraligatr is your Active Pokémon, all of your opponent's Baby Pokémon Powers stop working and your opponent's Baby Pokémon can't attack. This power stops working while Dark Feraligatr is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Crushing Blow",
},
effect: {
en: "If the Defending Pokémon has any Energy cards attached to it, flip a coin. If heads, choose 1 of those cards and discard it.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card