mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 20:01:58 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
73
data/Sword & Shield/Brilliant Stars/033.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/033.ts
Normal file
@@ -0,0 +1,73 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Crawdaunt",
|
||||
fr: "Colhomard",
|
||||
es: "Crawdaunt",
|
||||
it: "Crawdaunt",
|
||||
pt: "Crawdaunt",
|
||||
de: "Krebutack"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Corphish",
|
||||
fr: "Écrapince",
|
||||
es: "Corphish",
|
||||
it: "Corphish",
|
||||
pt: "Corphish",
|
||||
de: "Krebscorps"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Corkscrew Punch",
|
||||
fr: "Poing Tire-Bouchon",
|
||||
es: "Puño Tirabuzón",
|
||||
it: "Pugno Rotante",
|
||||
pt: "Soco Saca-rolha",
|
||||
de: "Korkenzieherhieb"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Water", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Crab Impact",
|
||||
fr: "Crabe Impactant",
|
||||
es: "Impacto Cangrejo",
|
||||
it: "Granchimpatto",
|
||||
pt: "Impacto Caranguejo",
|
||||
de: "Krabbeinschlag"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard 2 Energy from this Pokémon.",
|
||||
fr: "Défaussez 2 Énergies de ce Pokémon.",
|
||||
es: "Descarta 2 Energías de este Pokémon.",
|
||||
it: "Scarta due Energie da questo Pokémon.",
|
||||
pt: "Descarte 2 Energias deste Pokémon.",
|
||||
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 150
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user