1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-13 09:11:59 +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,70 @@
import { Card } from '../../../interfaces'
import Set from '../Noble Victories'
const card: Card = {
name: {
en: "Terrakion",
fr: "Terrakium",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
639,
],
hp: 130,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Retaliate",
fr: "Vengeance",
},
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, this attack does 60 more damage.",
fr: "Si l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque de votre adversaire pendant son dernier tour, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Land Crush",
fr: "Écras'Terre",
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card