mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
59
data/Scarlet & Violet/Paldean Fates/101.ts
Normal file
59
data/Scarlet & Violet/Paldean Fates/101.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Abomasnow",
|
||||
fr: "Blizzaroi",
|
||||
es: "Abomasnow",
|
||||
it: "Abomasnow",
|
||||
pt: "Abomasnow"
|
||||
},
|
||||
|
||||
rarity: "Shiny rare",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Freezing Disaster",
|
||||
fr: "Désastre Glaçant",
|
||||
es: "Desastre Gélido",
|
||||
it: "Disastro Congelante",
|
||||
pt: "Desastre Congelante"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Pokémon (both yours and your opponent's) can't be healed.",
|
||||
fr: "Les Pokémon (les vôtres et ceux de votre adversaire) ne peuvent pas être soignés.",
|
||||
es: "Los Pokémon (tanto tuyos como de tu rival) no pueden ser curados.",
|
||||
it: "I Pokémon, sia tuoi che del tuo avversario, non possono essere curati.",
|
||||
pt: "Os Pokémon (seus e do seu oponente) não podem ser curados."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Magnum Punch",
|
||||
fr: "Poing Magnum",
|
||||
es: "Puño Mágnum",
|
||||
it: "Superpugno",
|
||||
pt: "Soco Magnum"
|
||||
},
|
||||
|
||||
damage: 110
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user