mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 02:59: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:
48
data/Pokémon TCG Pocket/Mythical Island/023.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/023.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Drednaw"
|
||||
},
|
||||
|
||||
illustrator: "nisimono",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Chewtle"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its massive, jagged teeth can crush a<br />boulder in a single bite. This Pokémon<br />has an extremely vicious disposition."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Crunch"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Water", "Water", "Water"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user