mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Mythical Island set (#624)
* feat: Add A1a Signed-off-by: Avior <git@avior.me> * fix: test failing Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
This commit is contained in:
45
data/Pokémon TCG Pocket/Mythical Island/076.ts
Normal file
45
data/Pokémon TCG Pocket/Mythical Island/076.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gyarados ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Magikarp"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rampaging Whirlpool"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
cost: ["Water", "Water", "Water", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's)."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user