mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
47
data/Scarlet & Violet/Temporal Forces/074.ts
Normal file
47
data/Scarlet & Violet/Temporal Forces/074.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Beheeyem",
|
||||
fr: "Neitram",
|
||||
es: "Beheeyem",
|
||||
it: "Beheeyem",
|
||||
pt: "Beheeyem"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Cosmic Beatdown",
|
||||
fr: "Dérouillée Cosmique",
|
||||
es: "Porrazo Cósmico",
|
||||
it: "Cosmobatosta",
|
||||
pt: "Abater Cósmico"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 damage for each of your Pokémon in play.",
|
||||
fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon en jeu.",
|
||||
es: "Este ataque hace 20 puntos de daño por cada uno de tus Pokémon en juego.",
|
||||
it: "Questo attacco infligge 20 danni per ogni tuo Pokémon in gioco.",
|
||||
pt: "Este ataque causa 20 pontos de dano para cada um dos seus Pokémon em jogo."
|
||||
},
|
||||
|
||||
damage: "20×"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user