1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01: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,67 @@
import { Card } from '../../../interfaces'
import Set from '../Unbroken Bonds'
const card: Card = {
name: {
en: "Hitmontop",
fr: "Kapoera",
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
237,
],
hp: 90,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Finishing Combo",
fr: "Combo Finale",
},
effect: {
en: "You can use this attack only if your Hitmonlee used Special Combo during your last turn. This attack does 60 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Vous ne pouvez utiliser cette attaque que si votre Kicklee a utilisé Combo Spéciale lors de votre dernier tour. Cette attaque inflige 60 dégâts à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Spinning Attack",
fr: "Attaque Tournante",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card