1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

56
data-asia/S/SC2D/132.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "藍鴉"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
description: {
'zh-tw': "頭腦聰明,懂得使用工具。會用爪子抓起小石頭投向敵人,或是用繩子把敵人綑住。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "啄"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "亂擊"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×40點傷害。"
},
damage: "40×",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card