mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: Add A4 Wisdom of Sea and Sky (#832)
This commit is contained in:
48
data/Pokémon TCG Pocket/Wisdom of Sea and Sky/222.ts
Normal file
48
data/Pokémon TCG Pocket/Wisdom of Sea and Sky/222.ts
Normal file
@@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Wisdom of Sea and Sky"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Primeape"
|
||||
},
|
||||
|
||||
illustrator: "MAHOU",
|
||||
rarity: "One Shiny",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mankey"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It becomes wildly furious if it even senses\nsomeone looking at it. It chases anyone\nthat meets its glare."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fight Back"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has damage on it, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user