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:
59
data-asia/SV/SV8/079.ts
Normal file
59
data-asia/SV/SV8/079.ts
Normal 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
|
Reference in New Issue
Block a user