1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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,72 @@
import { Card } from '../../../interfaces'
import Set from '../Furious Fists'
const card: Card = {
name: {
en: "Hawlucha",
fr: "Brutalibré",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
701,
],
hp: 70,
types: [
"Fightning",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Shining Spirit",
fr: "Esprit Rayonnant",
},
effect: {
en: "Damage from this Pokémon's attacks isn't affected by Weakness or Resistance.",
fr: "Les dégâts des attaques de ce Pokémon ne sont pas affectés par la Faiblesse ou la Résistance.",
},
},
],
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Flying Press",
fr: "Flying Press",
},
effect: {
en: "If your opponent's Active Pokémon isn't a Pokémon-EX, this attack does nothing.",
fr: "Si le Pokémon Actif de votre adversaire n'est pas un Pokémon-EX, cette attaque ne fait rien.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
}
export default card