1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

54 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 "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "強顎雞母蟲",
'zh-cn': "強顎雞母蟲",
ja: "アゴジムシ"
},
illustrator: "Jerky",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
'zh-tw': "會吐出黏糊糊的絲纏住樹枝 並猶如擺錘般地晃動身體, 藉此在樹木之間輕巧地移動。",
'zh-cn': "會吐出黏糊糊的絲纏住樹枝 並猶如擺錘般地晃動身體, 藉此在樹木之間輕巧地移動。",
ja: "ネバネバの 糸を 吐いて 枝に 巻きつけ 振り子の 動きで 木から 木へと 身軽に 飛び移る。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "伏擊",
'zh-cn': "伏擊",
ja: "おそいかかる"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加30點傷害。",
'zh-cn': "擲1次硬幣若為正面則增加30點傷害。",
ja: "コインを1回投げオモテなら、30ダメージ追加。"
},
damage: "10",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Common",
dexId: [736]
}
export default card