mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
76
data/Sword & Shield/Lost Origin/007.ts
Normal file
76
data/Sword & Shield/Lost Origin/007.ts
Normal file
@ -0,0 +1,76 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Silcoon",
|
||||
fr: "Armulys",
|
||||
es: "Silcoon",
|
||||
it: "Silcoon",
|
||||
pt: "Silcoon",
|
||||
de: "Schaloko"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Wurmple",
|
||||
fr: "Chenipotte",
|
||||
es: "Wurmple",
|
||||
it: "Wurmple",
|
||||
pt: "Wurmple",
|
||||
de: "Waumpel"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Entangling String",
|
||||
fr: "Fil Emmêlant",
|
||||
es: "Cuerda Estranguladora",
|
||||
it: "Legacci Intralcianti",
|
||||
pt: "Fios Emaranhadores",
|
||||
de: "Einschnürender Faden"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, the Defending Pokémon can't attack.",
|
||||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas attaquer.",
|
||||
es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, el Pokémon Defensor no puede atacar.",
|
||||
it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare.",
|
||||
pt: "Jogue 1 moeda. Se sair cara, durante o próximo turno do seu oponente, o Pokémon Defensor não poderá atacar.",
|
||||
de: "Wirf 1 Münze. Bei Kopf kann das Verteidigende Pokémon während des nächsten Zuges deines Gegners nicht angreifen."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
de: "Ramme"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F",
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user