mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
55 lines
936 B
TypeScript
55 lines
936 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV2D"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "タギングル"
|
||
},
|
||
|
||
illustrator: "Oswaldo KATO",
|
||
category: "Pokemon",
|
||
dexId: [945],
|
||
hp: 90,
|
||
types: ["Darkness"],
|
||
|
||
description: {
|
||
ja: "エサによって 色が 変化する 毒の 唾液を 指に 塗して 森の 木々に 模様を 描く。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
cost: ["Darkness"],
|
||
|
||
name: {
|
||
ja: "どくえき"
|
||
},
|
||
|
||
effect: {
|
||
ja: "相手のバトルポケモンをどくにする。"
|
||
}
|
||
}, {
|
||
cost: ["Darkness"],
|
||
|
||
name: {
|
||
ja: "カラフルグラフィティ"
|
||
},
|
||
|
||
damage: "40×",
|
||
|
||
effect: {
|
||
ja: "自分の手札から基本エネルギーを好きなだけトラッシュし、トラッシュした基本エネルギーのタイプの数×40ダメージ。"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1
|
||
}
|
||
|
||
export default card |