1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +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

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Feraligatr",
},
illustrator: "Kazuyuki Kano",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Energy Cyclone",
},
effect: {
en: "Choose as many Energy cards from your hand as you like and show them to your opponent. This attack does 20 damage times the number of Energy cards you chose. Put those Energy cards on top of your deck. Shuffle your deck afterward.",
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Breaking Tail",
},
effect: {
en: "Choose 1 card from your opponent's hand without looking and discard it.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "+30"
},
],
}
export default card