mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
40
data-asia/S/S8b/039.ts
Normal file
40
data-asia/S/S8b/039.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S8b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "雪吞蟲"
|
||||
},
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會吃地面上的積雪。吃得越多,背上的刺就會長得越挺拔。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "衝撞"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user