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

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Shining Legends'
const card: Card = {
name: {
en: "Croconaw",
fr: "Crocrodil",
},
illustrator: "Naoki Saito",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
159,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Totodile",
fr: "Kaiminus",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Plunge",
fr: "Plongeon",
},
effect: {
en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may move all Energy from your Active Pokémon to this Pokémon. If you do, switch it with your Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez déplacer toute lÉnergie de votre Pokémon Actif vers ce Pokémon. Dans ce cas, échangez-le avec votre Pokémon Actif.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card