1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/SC1a/077.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "念力土偶"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "似乎是由2萬年前的古代人製作的泥偶蛻變而來的謎之寶可夢。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "幻象光線"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "大爆炸"
},
effect: {
'zh-tw': "這隻寶可夢也受到120點傷害。"
},
damage: 200,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card