mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01: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:
61
data/Scarlet & Violet/151/055.ts
Normal file
61
data/Scarlet & Violet/151/055.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Akwakwak",
|
||||
en: "Golduck",
|
||||
es: "Golduck",
|
||||
it: "Golduck",
|
||||
pt: "Golduck",
|
||||
de: "Entoron"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Water"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Sauvetage Aquatique",
|
||||
en: "Aquatic Rescue",
|
||||
es: "Rescate Acuático",
|
||||
it: "Idrosalvataggio",
|
||||
pt: "Resgate Aquático",
|
||||
de: "Wasserrettung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Ajoutez jusqu'à 4 Pokémon de votre pile de défausse à votre main.",
|
||||
en: "Put up to 4 Pokémon from your discard pile into your hand.",
|
||||
es: "Pon hasta 4 Pokémon de tu pila de descartes en tu mano.",
|
||||
it: "Prendi fino a quattro Pokémon dalla tua pila degli scarti e aggiungili alle carte che hai in mano.",
|
||||
pt: "Coloque até 4 Pokémon da sua pilha de descarte na sua mão.",
|
||||
de: "Nimm bis zu 4 Pokémon aus deinem Ablagestapel auf deine Hand."
|
||||
}
|
||||
}, {
|
||||
cost: ["Water", "Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Super Éclaboussure",
|
||||
en: "Super Splash",
|
||||
es: "Supersalpicadura",
|
||||
it: "Super Splash",
|
||||
pt: "Superborrifada",
|
||||
de: "Superplatscher"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user