mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 02:59:18 +00:00
feat: Add sv10 - Destined Rivals (#751)
This commit is contained in:
53
data/Scarlet & Violet/Destined Rivals/017.ts
Normal file
53
data/Scarlet & Violet/Destined Rivals/017.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Destined Rivals"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dipplin",
|
||||
fr: "Pomdramour",
|
||||
de: "Sirapfel",
|
||||
it: "Dipplin",
|
||||
es: "Dipplin",
|
||||
pt: "Dipplin",
|
||||
'es-mx': "Dipplin"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Energy Loop",
|
||||
fr: "Boucle d'Énergie",
|
||||
de: "Energieschleife",
|
||||
it: "Circuito Energetico",
|
||||
es: "Bucle de Energía",
|
||||
pt: "Loop de Energia",
|
||||
'es-mx': "Circuito de Energía"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put an Energy attached to this Pokémon into your hand.",
|
||||
fr: "Ajoutez à votre main une Énergie attachée à ce Pokémon.",
|
||||
de: "Nimm 1 an dieses Pokémon angelegte Energie auf deine Hand.",
|
||||
it: "Prendi un'Energia assegnata a questo Pokémon e aggiungila alle carte che hai in mano.",
|
||||
es: "Pon 1 Energía unida a este Pokémon en tu mano.",
|
||||
pt: "Coloque uma Energia ligada a este Pokémon na sua mão.",
|
||||
'es-mx': "Pon 1 Energía unida a este Pokémon en tu mano."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user