mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
70
data/Sword & Shield/Astral Radiance/118.ts
Normal file
70
data/Sword & Shield/Astral Radiance/118.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Regidrago",
|
||||
fr: "Regidrago",
|
||||
es: "Regidrago",
|
||||
it: "Regidrago",
|
||||
pt: "Regidrago",
|
||||
de: "Regidrago"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Dragon"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Dragon's Hoard",
|
||||
fr: "Butin du Dragon",
|
||||
es: "Tesoro del Dragón",
|
||||
it: "Gruzzolo del Drago",
|
||||
pt: "Tesouro do Dragão",
|
||||
de: "Drachenhort"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, if this Pokémon is in the Active Spot, you may draw cards until you have 4 cards in your hand. You can't use more than 1 Dragon's Hoard Ability each turn.",
|
||||
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez piocher des cartes jusqu'à en avoir 4 en main. Vous ne pouvez utiliser qu'un talent Butin du Dragon par tour.",
|
||||
es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes robar cartas hasta que tengas 4 cartas en tu mano. No puedes usar más de 1 habilidad Tesoro del Dragón en cada turno.",
|
||||
it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi pescare fino ad avere quattro carte in mano. Puoi usare l'abilità Gruzzolo del Drago solo una volta per turno.",
|
||||
pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá comprar cartas até ter 4 cartas na sua mão. Você não pode usar mais de 1 Habilidade Tesouro do Dragão por turno.",
|
||||
de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du so lange Karten ziehen, bis du 4 Karten auf deiner Hand hast. Du kannst die Fähigkeit Drachenhort nur einmal pro Zug einsetzen."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Giant Fangs",
|
||||
fr: "Crocs Géants",
|
||||
es: "Colmillos Gigantes",
|
||||
it: "Zanne Giganti",
|
||||
pt: "Presas Gigantes",
|
||||
de: "Riesenbeißer"
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user