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

77
data/XY/BREAKpoint/80.ts Normal file
View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Ferrothorn",
fr: "Noacier",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
598,
],
hp: 100,
types: [
"Metal",
],
evolveFrom: {
en: "Ferroseed",
fr: "Grindur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Metal Claw",
fr: "Griffe Acier",
},
damage: 40,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Spike Lash",
fr: "Coup d'Fouet à Clous",
},
effect: {
en: "This attack does 10 damage to each of your opponent's Pokémon for each Colorless in that Pokémon's Retreat Cost. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire pour chaque Colorless dans son Coût de Retraite. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card