mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
68
data/E-Card/Aquapolis/50.ts
Normal file
68
data/E-Card/Aquapolis/50.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Aquapolis'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Golduck",
|
||||
},
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
55,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Psyduck",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Slash",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Distortion Beam",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Confused.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user