mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
73
data/Black & White/Plasma Blast/69.ts
Normal file
73
data/Black & White/Plasma Blast/69.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Plasma Blast'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Haxorus",
|
||||
fr: "Tranchodon",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
612,
|
||||
],
|
||||
hp: 140,
|
||||
types: [
|
||||
"Dragon",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Fraxure",
|
||||
fr: "Incisache",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Metal",
|
||||
],
|
||||
name: {
|
||||
en: "Dragonaxe",
|
||||
fr: "Hache Draconique",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 40 damage times the amount of Metal Energy attached to this Pokémon.",
|
||||
fr: "Inflige 40 dégâts multipliés par le nombre d'Énergies Metal attachées à ce Pokémon.",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Metal",
|
||||
],
|
||||
name: {
|
||||
en: "Strike of the Champion",
|
||||
fr: "Frappe de Maître",
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon is a Team Plasma Pokémon, it is Knocked Out. (If the Defending Pokémon is not a Team Plasma Pokémon, this attack does nothing.)",
|
||||
fr: "Si le Pokémon Défenseur est un Pokémon de la Team Plasma, il est mis K.O. (Si le Pokémon Défenseur n'est pas un Pokémon de la Team Plasma, cette attaque ne fait rien.)",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Dragon",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user