1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/S7D/054.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S7D"
const card: Card = {
set: Set,
name: {
'zh-tw': "毛辮羊"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
'zh-tw': "要是身上的毛長得太長就會不能動彈。用毛辮羊的體毛織成的布結實得讓人吃驚。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "阻撓"
},
effect: {
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的特殊能量將其丟棄。"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "一同滾動"
},
effect: {
'zh-tw': "造成自己的備戰區的持有「一同滾動」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card