mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-22 03:49: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:
63
data/Scarlet & Violet/Obsidian Flames/142.ts
Normal file
63
data/Scarlet & Violet/Obsidian Flames/142.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Airmure",
|
||||
en: "Skarmory",
|
||||
es: "Skarmory",
|
||||
it: "Skarmory",
|
||||
pt: "Skarmory",
|
||||
de: "Panzaeron"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Picpic",
|
||||
en: "Peck",
|
||||
es: "Picotazo",
|
||||
it: "Beccata",
|
||||
pt: "Bicada",
|
||||
de: "Pikser"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Acier Déchirant",
|
||||
en: "Slashing Steel",
|
||||
es: "Acero Cortante",
|
||||
it: "Acciaio Lacerante",
|
||||
pt: "Aço Cortante",
|
||||
de: "Schlitzender Stahl"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Acier Déchirant.",
|
||||
en: "During your next turn, this Pokémon can't use Slashing Steel.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede usar Acero Cortante.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Acciaio Lacerante.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Aço Cortante.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon Schlitzender Stahl nicht einsetzen."
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user