1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/S/S10b/036.ts Normal file
View File

@ -0,0 +1,55 @@
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