mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
47
data-asia/S/SI/078.ts
Normal file
47
data-asia/S/SI/078.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SI"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "大舌貝"
|
||||
},
|
||||
|
||||
illustrator: "kawayoo",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "堅硬的殼能反彈任何攻擊。 如果在殼張開時被攻擊到內部, 就會變得十分脆弱。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "舌擊"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "飛濺"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user