mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
* 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>
44 lines
671 B
TypeScript
44 lines
671 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Ponyta"
|
|
},
|
|
|
|
illustrator: "Tomokazu Komiya",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fire"],
|
|
|
|
description: {
|
|
en: "It can't run properly when it's newly born.<br />As it races around with others of its kind,<br />its legs grow stronger."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Stomp"
|
|
},
|
|
|
|
damage: 10,
|
|
cost: ["Fire"],
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 30 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Water",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card |