1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01: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,83 @@
import { Card } from '../../../interfaces'
import Set from '../Triumphant'
const card: Card = {
name: {
en: "Aggron",
fr: "Galeking",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
306,
],
hp: 140,
types: [
"Metal",
],
evolveFrom: {
en: "Lairon",
fr: "Galegon",
},
stage: "Stage2",
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Second Strike",
fr: "Deuxième coup",
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 40 damage plus 40 more damage.",
fr: "Si le Pokémon Défenseur a déjà des marqueurs de dégât, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires.",
},
damage: 40,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Guard Claw",
fr: "Griffe de garde",
},
effect: {
en: "During your opponent's next turn, any damage done to Aggron by attacks is reduced by 20 (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à Galeking par des attaques sont réduits de 20 (après application de la Faiblesse et de la Résistance).",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card