Skip to content

Commit

Permalink
Support for "Unity" monsters has been fully integrated.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yemachu committed Apr 24, 2018
1 parent 1abd59c commit b1db58c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file added res/tcg/ygo/border/Unity.pendulum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/tcg/ygo/layout/All.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ define([
Synchro: { value: "Synchro", fn:Synchro },
DarkSynchro: { value: "DarkSynchro", name: "Dark Synchro", fn: DarkSynchro },
Xyz: { value: "Xyz", fn: Xyz },
// Unity: { value: "Unity", fn: Unity },
Unity: { value: "Unity", fn: Unity },
Link: { value: "Link", fn: Link },
Token: { value: "Token", fn: Token },
Spell: { value: "Spell", fn: Spell },
Expand Down
6 changes: 3 additions & 3 deletions src/tcg/ygo/layout/Unity.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ define(["react", "react-class", "draw/Group", "./component/All"], function Ritua
return React.createElement(
Group,
this.props,
React.createElement(C.Image, { value: this.props.image, pendulum: true }),
React.createElement(C.Border, { value: "Unity" }),
React.createElement(C.CardName, { value: this.props.name }),
React.createElement(C.Image, { value: this.props.image, pendulum: true, rarity: this.props.rarity }),
React.createElement(C.Border, { value: "Unity", pendulum: true}),
React.createElement(C.CardName, { value: this.props.name, rarity: this.props.rarity }),
React.createElement(C.Attribute, { value: this.props.attribute }),
React.createElement(C.Level, { value: this.props.level, star: "Normal" }),

Expand Down

0 comments on commit b1db58c

Please sign in to comment.