mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
61
data/Scarlet & Violet/Twilight Masquerade/139.ts
Normal file
61
data/Scarlet & Violet/Twilight Masquerade/139.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ducklett",
|
||||
fr: "Couaneton",
|
||||
es: "Ducklett",
|
||||
it: "Ducklett",
|
||||
pt: "Ducklett",
|
||||
de: "Piccolente"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Double Draw",
|
||||
fr: "Double Pioche",
|
||||
es: "Roba Doble",
|
||||
it: "Pescata Doppia",
|
||||
pt: "Compra Dupla",
|
||||
de: "Zweifachzug"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw 2 cards.",
|
||||
fr: "Piochez 2 cartes.",
|
||||
es: "Roba 2 cartas.",
|
||||
it: "Pesca due carte.",
|
||||
pt: "Compre 2 cartas.",
|
||||
de: "Ziehe 2 Karten."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Razor Wing",
|
||||
fr: "Aile Tranchante",
|
||||
es: "Ala Cortante",
|
||||
it: "Ala Tagliente",
|
||||
pt: "Asa Cortante",
|
||||
de: "Rasierflügel"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user