Skip to content

Commit 04bbe82

Browse files
committed
Merge branch 'master' of https://github.com/aedans/noir
2 parents e924644 + ba977aa commit 04bbe82

20 files changed

+20
-20
lines changed

cards/Arms Dealer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
44
type: "agent",
5-
text: "[3]: remove a card.",
5+
text: "Exhaust three agents: remove a card.",
66
cost: { money: 16 },
77
keywords: [["disloyal"], ["protected"]],
88
activateCost: { agents: 3 },

cards/Banker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
4-
text: "[A]: gain $2.",
4+
text: "Activate this, exhaust an agent: gain $2.",
55
type: "agent",
66
cost: { money: 10 },
77
keywords: [["disloyal"], ["protected"]],

cards/Bold Investor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
44
type: "agent",
5-
text: "[A]: gain $12 and remove this.",
5+
text: "Activate this, exhaust an agent: gain $12 and remove this.",
66
cost: { money: 8 },
77
colors: ["green"],
88
activate: function* () {

cards/Charismatic Industrialist.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
44
type: "agent",
5-
text: "[A]: steal an agent from your opponent, putting it onto your board. It gains Disloyal.",
5+
text: "Activate this, exhaust an agent: steal an agent from your opponent, putting it onto your board. It gains Disloyal.",
66
cost: { money: 30, agents: 1 },
77
colors: ["green"],
88
keywords: [["vip"]],

cards/Contraband Confiscator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
44
type: "agent",
5-
text: "[A][E]: remove an operation and gain $2.",
5+
text: "Activate this, exhaust two agents: remove an operation and gain $2.",
66
cost: { money: 10 },
77
colors: ["blue"],
88
keywords: [["protected"]],

cards/Daphril the Dauntless.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
44
type: "agent",
5-
text: "[A]: remove the highest cost card each in your opponent's deck and board.",
5+
text: "Activate this, exhaust an agent: remove the highest cost card each in your opponent's deck and board.",
66
cost: { money: 36 },
77
keywords: [["vip"], ["protected"]],
88
activate: function* () {

cards/Eager Employer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
4-
text: "[A][E]: gain $2.",
4+
text: "Activate this, exhaust two agents: gain $2.",
55
type: "agent",
66
cost: { money: 7 },
77
colors: [],

cards/Flaunting Aristocrat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
4-
text: "[A][E]: reveal a card from your opponent's deck. This doubles for each use.",
4+
text: "Activate this, exhaust two agents: reveal a card from your opponent's deck. This doubles for each use.",
55
type: "agent",
66
cost: { money: 12 },
77
colors: ["green"],

cards/Frazzled Secretary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
44
type: "agent",
5-
text: "[A]: your next agent costs $2 less and has Delay 1.",
5+
text: "Activate this, exhaust an agent: your next agent costs $2 less and has Delay 1.",
66
cost: { money: 6 },
77
colors: ["blue"],
88
turn: function* () {

cards/Gutterside Informer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { PartialCardInfoComputation } from "../common/card";
22

33
export const card: PartialCardInfoComputation = (util, cache, game, card) => ({
4-
text: "[A]: reveal your opponent's two lowest cost cards.",
4+
text: "Activate this, exhaust an agent: reveal your opponent's two lowest cost cards.",
55
type: "agent",
66
cost: { money: 7 },
77
colors: ["purple"],

0 commit comments

Comments
 (0)