mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
70
data/Scarlet & Violet/151/080.ts
Normal file
70
data/Scarlet & Violet/151/080.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Flagadoss",
|
||||
en: "Slowbro",
|
||||
es: "Slowbro",
|
||||
it: "Slowbro",
|
||||
pt: "Slowbro",
|
||||
de: "Lahmus"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
fr: "Gros Bâillement",
|
||||
en: "Big Yawn",
|
||||
es: "Gran Bostezo",
|
||||
it: "Gransbadiglio",
|
||||
pt: "Grande Bocejo",
|
||||
de: "Großer Gähner"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Les deux Pokémon Actifs sont maintenant Endormis.",
|
||||
en: "Both Active Pokémon are now Asleep.",
|
||||
es: "Ambos Pokémon Activos pasan a estar Dormidos.",
|
||||
it: "Entrambi i Pokémon attivi vengono addormentati.",
|
||||
pt: "Ambos os Pokémon Ativos agora estão Adormecidos.",
|
||||
de: "Beide Aktiven Pokémon schlafen jetzt."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Charge Relaxe",
|
||||
en: "Laid-Back Tackle",
|
||||
es: "Placaje Relajado",
|
||||
it: "Azione Rilassata",
|
||||
pt: "Investida Relaxada",
|
||||
de: "Träger Tackle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Si ce Pokémon a évolué pendant ce tour, cette attaque ne fait rien.",
|
||||
en: "If this Pokémon evolved during this turn, this attack does nothing.",
|
||||
es: "Si este Pokémon ha evolucionado durante este turno, este ataque no hace nada.",
|
||||
it: "Se questo Pokémon si è evoluto durante questo turno, questo attacco non ha effetto.",
|
||||
pt: "Se este Pokémon evoluiu durante este turno, este ataque não fará nada.",
|
||||
de: "Wenn sich dieses Pokémon während dieses Zuges entwickelt hat, hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user