1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

59
data-asia/SV/SV8/079.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ドータクン"
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
dexId: [437],
hp: 130,
types: ["Metal"],
description: {
ja: "別世界への 穴を 開けて そこから 雨を 降らしていた。 そのため 豊作の神 とされる。"
},
stage: "Stage1",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
ja: "かいてんアタック"
},
damage: 50
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "ダブルインパクト"
},
damage: "100×",
effect: {
ja: "コインを2回投げ、オモテの数×100ダメージ。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 3
}
export default card