mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +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:
63
data/Scarlet & Violet/151/021.ts
Normal file
63
data/Scarlet & Violet/151/021.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Piafabec",
|
||||
en: "Spearow",
|
||||
es: "Spearow",
|
||||
it: "Spearow",
|
||||
pt: "Spearow",
|
||||
de: "Habitak"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
fr: "Avantage Évolutif",
|
||||
en: "Evolutionary Advantage",
|
||||
es: "Ventaja Evolutiva",
|
||||
it: "Vantaggio Evolutivo",
|
||||
pt: "Vantagem Evolucionária",
|
||||
de: "Entwicklungsvorteil"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Si vous jouez en second, ce Pokémon peut évoluer pendant votre premier tour.",
|
||||
en: "If you go second, this Pokémon can evolve during your first turn.",
|
||||
es: "Si sales en segundo lugar, este Pokémon puede evolucionar durante tu primer turno.",
|
||||
it: "Se inizi per secondo, questo Pokémon può evolversi durante il tuo primo turno.",
|
||||
pt: "Se você for o segundo a jogar, este Pokémon poderá evoluir durante o seu primeiro turno.",
|
||||
de: "Wenn du als Zweiter am Zug bist, kann sich dieses Pokémon während deines ersten Zuges entwickeln."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Plongée Rapide",
|
||||
en: "Speed Dive",
|
||||
es: "Picado Rápido",
|
||||
it: "Immersione Rapida",
|
||||
pt: "Mergulho Veloz",
|
||||
de: "Tempohechtsprung"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user