1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: add the Japanese SV8 (#559)

This commit is contained in:
2024-11-06 00:58:08 +01:00
committed by GitHub
parent c1d83caca0
commit e30d54469d
107 changed files with 5124 additions and 0 deletions

56
data-asia/SV/SV8/074.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "タギングル"
},
illustrator: "NC Empire",
rarity: "Uncommon",
category: "Pokemon",
dexId: [945],
hp: 100,
types: ["Darkness"],
description: {
ja: "タギングルが 描く 模様は 個体によって 異なり 生涯 同じ 模様を 描き続ける。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "いたずらペイント"
},
effect: {
ja: "相手のトラッシュからエネルギーを3枚まで選び、相手のポケモンに好きなようにつける。"
}
}, {
cost: ["Darkness", "Darkness"],
name: {
ja: "エナジーグラフィティ"
},
damage: "40×",
effect: {
ja: "相手のポケモン全員についているエネルギーの数×40ダメージ。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card