1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

63 lines
1.3 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "コフーライ",
'zh-tw': "粉蝶蛹",
'zh-cn': "粉蝶蛹"
},
illustrator: "tono",
rarity: "Common",
category: "Pokemon",
dexId: [665],
hp: 80,
types: ["Grass"],
description: {
ja: "決まった 棲み処を 持たない。 気の向くまま 野山を 歩きまわり 進化の エネルギーを 蓄える。",
'zh-tw': "沒有固定的住處。 會隨心所欲地在山野走來走去, 蓄積進化時所需的能量。",
'zh-cn': "沒有固定的住處。 會隨心所欲地在山野走來走去, 蓄積進化時所需的能量。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "あるきまわる",
'zh-tw': "走來走去",
'zh-cn': "走來走去"
},
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
'zh-cn': "將這隻寶可夢與備戰寶可夢互換。"
}
}, {
cost: ["Grass"],
name: {
ja: "たいあたり",
'zh-tw': "撞擊",
'zh-cn': "撞擊"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card