mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 21:02:02 +00:00
feat: Add A4 Wisdom of Sea and Sky (#832)
This commit is contained in:
44
data/Pokémon TCG Pocket/Wisdom of Sea and Sky/044.ts
Normal file
44
data/Pokémon TCG Pocket/Wisdom of Sea and Sky/044.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Wisdom of Sea and Sky"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magikarp"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "An underpowered, pathetic Pokémon. It may\njump high on rare occasions but never more\nthan seven feet."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Splashing Dodge"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user