1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

55 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "ポニータ",
'zh-tw': "小火馬",
'zh-cn': "小火馬"
},
illustrator: "Ayako Ozaki",
rarity: "Common",
category: "Pokemon",
dexId: [77],
hp: 70,
types: ["Fire"],
description: {
ja: "ポニータに 認められると 燃える たてがみに 触っても 不思議と 熱くなくなるのだ。",
'zh-tw': "得到了小火馬認可的人, 在觸摸牠燃燒著的鬃毛時 不會覺得燙手,真是不可思議。",
'zh-cn': "得到了小火馬認可的人, 在觸摸牠燃燒著的鬃毛時 不會覺得燙手,真是不可思議。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "にどずつき",
'zh-tw': "二連頭錘",
'zh-cn': "二連頭錘"
},
damage: "10×",
effect: {
ja: "コインを2回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
'zh-cn': "擲2次硬幣造成正面出現的次數×10點傷害。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card