1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/143.ts

44 lines
662 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Ambipom"
},
illustrator: "Atsushi Furusawa",
rarity: "One Diamond",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
evolveFrom: {
en: "Aipom"
},
description: {
en: "It uses its tails for everything. If it wraps both\nof its tails around you and gives you a squeeze,\nthat's proof it really likes you."
},
stage: "Stage1",
attacks: [{
name: {
en: "Tail Jab"
},
damage: 40,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card