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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Unleashed'
const card: Card = {
name: {
en: "Crobat",
fr: "Nostenfer",
},
illustrator: "Hideaki Hakozaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
169,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Golbat",
fr: "Nosferalto",
},
stage: "Stage2",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Severe Poison",
fr: "Poison violent",
},
effect: {
en: "The Defending Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné. Placez 4 marqueurs de dégât au lieu d'un seul sur ce Pokémon entre deux tours.",
},
},
{
cost: [
"Psychic",
],
name: {
en: "Skill Dive",
fr: "Plongeon contrôlé",
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez l'un des Pokémon de votre adversaire. Cette attaque inflige 30 dégâts à ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
}
export default card