mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
47 lines
671 B
TypeScript
47 lines
671 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Galarian Yamask",
|
||
fr: "Tutafeh de Galar"
|
||
},
|
||
|
||
illustrator: "Akira Komayama",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Reckless Charge",
|
||
fr: "Attaque Imprudente"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon also does 30 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige aussi 30 dégâts."
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
hp: 70,
|
||
types: ["Fighting"]
|
||
}
|
||
|
||
export default card
|