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

75
data/XY/Steam Siege/57.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Steam Siege'
const card: Card = {
name: {
en: "Armaldo",
fr: "Armaldo",
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
348,
],
hp: 150,
types: [
"Fightning",
],
evolveFrom: {
en: "Anorith",
fr: "Anorith",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Rushing Water",
fr: "Courant Fort",
},
effect: {
en: "Move an Energy from your opponent's Active Pokémon to 1 of his or her Benched Pokémon.",
fr: "Déplacez une Énergie attachée au Pokémon Actif de votre adversaire vers lun de ses Pokémon de Banc.",
},
damage: 40,
},
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Guard Claw",
fr: "Griffe de Garde",
},
effect: {
en: "During your opponent's next turn, any damage done to this Pokémon by attacks is reduced by 30 (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 30 (après application de la Faiblesse et de la Résistance).",
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card