1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 23:52:11 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

70 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Yellow A Alternate'
const card: Card = {
dexId: [772],
name: {
en: "Type: Null",
fr: "Type:0",
},
illustrator: "Shin Nagasawa",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Armor Press",
fr: "Pression Cuirassée",
},
effect: {
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Claw",
fr: "Griffe Taillante",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card