mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 16:01:59 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
78
data/Sword & Shield/Astral Radiance/049.ts
Normal file
78
data/Sword & Shield/Astral Radiance/049.ts
Normal file
@@ -0,0 +1,78 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Galarian Mr. Rime V",
|
||||
fr: "M. Glaquette de Galar V",
|
||||
es: "Mr. Rime de Galar V",
|
||||
it: "Mr. Rime di Galar V",
|
||||
pt: "Mr. Rime de Galar V",
|
||||
de: "Galar-Pantifrost V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 210,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Surprising Hand",
|
||||
fr: "Main Surprise",
|
||||
es: "Mano Sorprendente",
|
||||
it: "Mano Furba",
|
||||
pt: "Mão Surpreendente",
|
||||
de: "Überraschungshand"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 3 Item cards, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 3 cartes Objet, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 3 cartas de Objeto, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a tre carte Strumento, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 3 cartas de Item no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 3 Itemkarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Water", "Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Customized Cane",
|
||||
fr: "Canne sur Mesure",
|
||||
es: "Bastón a Medida",
|
||||
it: "Bastone Personalizzato",
|
||||
pt: "Bengala Personalizada",
|
||||
de: "Maßgeschneiderter Stock"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has a Pokémon Tool attached, this attack does 90 more damage.",
|
||||
fr: "Si un Outil Pokémon est attaché à ce Pokémon, cette attaque inflige 90 dégâts supplémentaires.",
|
||||
es: "Si este Pokémon tiene 1 Herramienta Pokémon unida a él, este ataque hace 90 puntos de daño más.",
|
||||
it: "Se questo Pokémon ha una carta Oggetto Pokémon assegnata, questo attacco infligge 90 danni in più.",
|
||||
pt: "Se este Pokémon tiver uma Ferramenta Pokémon ligada a ele, este ataque causará 90 pontos de dano a mais.",
|
||||
de: "Wenn an dieses Pokémon eine Pokémon-Ausrüstung angelegt ist, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "90+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user