1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +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,79 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Forretress",
fr: "Foretress",
},
illustrator: "tetsuya koizumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
205,
],
hp: 110,
types: [
"Metal",
],
evolveFrom: {
en: "Pineco",
fr: "Pomdepik",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Thorny Eruption",
fr: "Éruption Épineuse",
},
effect: {
en: "Flip 3 coins. This attack does 10 damage for each heads to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts pour chaque côté face à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Lost Blast",
fr: "Explosion Perdue",
},
effect: {
en: "Put this Pokémon and all cards attached to it in the Lost Zone.",
fr: "Placez ce Pokémon et toutes les cartes qui lui sont attachées dans la Zone Perdue.",
},
damage: 190,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card