mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
55 lines
960 B
TypeScript
55 lines
960 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S10b"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "大岩蛇"
|
||
},
|
||
|
||
illustrator: "Mitsuhiro Arita",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
'zh-tw': "會一邊在地底挖掘前進,一邊吸收各種堅硬的物體,藉此讓身體變得更加結實。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "岩石封鎖"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "怒之橫掃"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×50點傷害。"
|
||
},
|
||
|
||
damage: "50×",
|
||
cost: ["Fighting", "Fighting", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 4,
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |