1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

52
data-asia/S/SC1b/124.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "咕咕鴿"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
description: {
'zh-tw': "飛行速度不可小覷。無論飛到多遠的地方,都會記得自己的主人和巢。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "銳利羽"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "起風"
},
damage: 60,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card